/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2563eb;
    text-decoration: underline;
}

a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #6b46c1 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1::before {
    content: "🎰";
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: slotSpin 3s ease-in-out infinite;
}

@keyframes slotSpin {
    0%, 90%, 100% { transform: rotate(0deg); }
    45% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .logo h1::before {
        animation: none;
    }
}

.logo-tagline {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 300;
    margin-left: 2.3rem;
    margin-top: -0.5rem;
    display: block;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.main-nav a:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Content */
main {
    flex: 1;
    padding-bottom: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
}

.cta-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.coming-soon-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

/* Disclosure Section */
.disclosure-section {
    padding: 3rem 0;
    background-color: #f1f5f9;
}

.disclosure-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclosure-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.disclosure-box h3 {
    color: #92400e;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.global-disclosure {
    color: #92400e;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.availability-notice {
    background: white;
    border: 2px solid #3b82f6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.availability-notice h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.availability-notice p {
    color: #1e40af;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.responsible-teaser {
    text-align: center;
    padding: 1rem;
}

.responsible-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.responsible-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    text-decoration: none;
    color: white;
}

/* Footer Styles */
.site-footer {
    background-color: #1f2937;
    color: white;
}

.responsible-bar {
    background-color: #111827;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-top: 2px solid #374151;
}

.responsible-content {
    text-align: center;
    color: #d1d5db;
}

.responsible-content a {
    color: #fbbf24;
    font-weight: 500;
}

.responsible-content a:hover {
    color: #f59e0b;
}

.footer-main {
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: #d1d5db;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #3b82f6;
}

.footer-contact button {
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: color 0.2s ease;
}

.footer-contact button:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Age Gate Modal */
.age-gate-modal .modal-content {
    text-align: center;
}

.age-gate-notice {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    color: #92400e;
    font-size: 0.875rem;
}

/* Cookie Consent Modal */
.cookie-consent-modal .modal-content {
    max-width: 600px;
}

.cookie-categories {
    margin: 1.5rem 0;
}

.cookie-category {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-header h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.always-active {
    background-color: #e5e7eb;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.cookie-category p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3b82f6;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.btn-tertiary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-tertiary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* Policy Pages */
.breadcrumb {
    padding: 1rem 0;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    color: #6b7280;
    margin-left: 0.5rem;
}

.breadcrumb a {
    color: #3b82f6;
    font-size: 0.875rem;
}

.breadcrumb li[aria-current="page"] {
    color: #6b7280;
    font-size: 0.875rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.policy-content header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.last-updated {
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
}

.page-intro {
    font-size: 1.125rem;
    color: #4b5563;
    margin-top: 1rem;
}

.policy-content section {
    margin-bottom: 2.5rem;
}

.policy-content ul,
.policy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.important-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.important-notice h3 {
    color: #92400e;
    margin-bottom: 1rem;
}

.important-notice p,
.important-notice ul,
.important-notice li {
    color: #92400e;
}

.warning-box {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    border: 2px solid #ef4444;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.warning-box p,
.warning-box ul,
.warning-box li {
    color: #dc2626;
}

.policy-footer {
    border-top: 2px solid #e5e7eb;
    padding-top: 2rem;
    margin-top: 3rem;
    font-style: italic;
    color: #6b7280;
}

/* Contact Page Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-bottom: 1.5rem;
    color: #1f2937;
}

/* Form Styles */
.contact-form {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 14px;
    top: -2px;
    left: 2px;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.success-message {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 2rem;
}

.success-message h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

.success-message p {
    color: #065f46;
    margin-bottom: 0.5rem;
}

.submit-button {
    width: 100%;
    position: relative;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Contact Info Section */
.contact-method {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-method h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.contact-method ul {
    margin-left: 1rem;
}

.contact-method li {
    margin-bottom: 0.5rem;
}

address {
    font-style: normal;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: #6b7280;
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Cookies Page Specific Styles */
.manage-cookies-section {
    background: #f0f9ff;
    border: 2px solid #0ea5e9;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #374151;
}

.cookie-table tbody tr:hover {
    background-color: #f8fafc;
}

.footer-cookie-actions {
    text-align: center;
    margin-top: 1.5rem;
}

/* Disclaimer Page Specific Styles */
.geographic-notice {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid #3b82f6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.geographic-notice h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.geographic-notice p,
.geographic-notice ul,
.geographic-notice li {
    color: #1e40af;
}

.comparison-section {
    margin: 2rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.comparison-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.comparison-item h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.final-disclaimer {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    border: 2px solid #ef4444;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.final-disclaimer h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.final-disclaimer p {
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 500;
}

.final-disclaimer p:last-child {
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 400;
}

/* Support Section Styles */
.support-notice {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.support-notice h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

.support-notice p {
    color: #065f46;
    margin-bottom: 0;
}

/* Age Gate Styles */
.await-age {
    overflow: hidden;
}

.await-age body {
    overflow: hidden;
}

.agegate-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(10px)) {
    .agegate-backdrop {
        background: rgba(0, 0, 0, 0.9);
    }
}

.agegate-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.agegate-modal h2 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.agegate-modal .age-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.agegate-modal p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.agegate-modal .modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.agegate-modal .btn-primary {
    min-width: 120px;
}

.agegate-modal .btn-secondary {
    min-width: 120px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 1rem;
    padding: 1.5rem 0;
    margin: 2rem 0;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-text h2 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.about-text p {
    color: #92400e;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Card Grid */
.cards-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.cards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.card__image {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.card__title {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card__desc {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 44px;
}

.btn:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.btn--primary {
    background: linear-gradient(135deg, #6b46c1 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(107, 70, 193, 0.3);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.btn--secondary {
    background: #6b7280;
    color: white;
}

.btn--secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

/* Section Disclaimer */
.section-disclaimer {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-top: 2px solid #0ea5e9;
    padding: 3rem 0;
    margin-top: 2rem;
}

.section-disclaimer__content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.section-disclaimer__icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.section-disclaimer__text h3 {
    color: #0c4a6e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.section-disclaimer__text p {
    color: #0c4a6e;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.section-disclaimer__links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.section-disclaimer__links a {
    color: #0ea5e9;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid #0ea5e9;
    transition: all 0.2s ease;
}

.section-disclaimer__links a:hover {
    background-color: #0ea5e9;
    color: white;
    text-decoration: none;
}

/* Toast Styles */
#toast-root {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    max-width: 350px;
    pointer-events: auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.toast--show {
    transform: translateX(0);
    opacity: 1;
}

.toast--info {
    border-left: 4px solid #3b82f6;
}

.toast--success {
    border-left: 4px solid #10b981;
}

.toast--warning {
    border-left: 4px solid #f59e0b;
}

.toast--error {
    border-left: 4px solid #ef4444;
}

.toast__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.toast--info .toast__icon::before {
    content: "ℹ️";
}

.toast--success .toast__icon::before {
    content: "✅";
}

.toast--warning .toast__icon::before {
    content: "⚠️";
}

.toast--error .toast__icon::before {
    content: "❌";
}

.toast__content {
    flex: 1;
    min-width: 0;
}

.toast__message {
    color: #1f2937;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.toast__close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.toast__close:hover {
    color: #374151;
}

.toast__close:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 1px;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #6b46c1 0%, #3b82f6 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    /* Cards responsive */
    .cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Disclaimer banner mobile */
    .about-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-disclaimer__content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-disclaimer__links {
        justify-content: center;
    }
    
    /* Toast mobile */
    #toast-root {
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
    }
    
    .toast {
        max-width: none;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Buttons */
    .cta-button {
        font-size: 1.125rem;
        padding: 0.875rem 1.5rem;
    }
    
    .coming-soon-badge {
        font-size: 0.75rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    /* Policy Content */
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    /* FAQ Grid */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Cookie Table */
    .cookie-table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .responsible-content {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .policy-content {
        padding: 1rem;
    }
    
    .important-notice,
    .warning-box,
    .disclosure-box {
        padding: 1rem;
    }
    
    .responsible-content span {
        display: inline;
    }
}

/* Focus States and Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .toast {
        transition: none;
    }
    
    .card:hover,
    .btn:hover {
        transform: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }
    
    .btn-primary {
        background: #0066cc;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #666;
        border: 2px solid #fff;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .modal,
    .cta-button,
    .feature-button {
        display: none;
    }
    
    .policy-content {
        max-width: none;
        padding: 0;
    }
    
    .disclosure-box,
    .important-notice,
    .warning-box {
        border: 2px solid #000;
        background: #fff;
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .page-break {
        page-break-before: always;
    }
}