:root {
    /* 2026 Design Tokens - Ultra Premium */
    --wine: #7a131f;
    --wine-dark: #300000;
    --wine-light: #fdf7f8;
    --wine-soft: rgba(114, 47, 55, 0.05);
    --wine-glass: rgba(114, 47, 55, 0.03);

    --white: #ffffff;
    --off-white: #fafafa;

    --text-main: #0a0a0a;
    --text-muted: #525252;
    --text-dim: #737373;

    --success: #059669;
    --error: #dc2626;

    /* Advanced Gradients */
    --gradient-wine: linear-gradient(135deg, #7a131f 0%, #300000 100%);
    --mesh-gradient: radial-gradient(at 0% 0%, rgba(114, 47, 55, 0.05) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(114, 47, 55, 0.08) 0, transparent 50%);

    /* Radii & Shadows */
    --radius-2xl: 48px;
    --radius-xl: 32px;
    --radius-lg: 20px;
    --radius-md: 12px;

    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.05);
    --shadow-wine: 0 10px 30px rgba(114, 47, 55, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html, body {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    position: relative;
}

body {
    background-color: #300000;
    color: var(--text-main);
    min-height: 100vh;
    letter-spacing: -0.01em;
}

/* Base Layouts */
.creative-container {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Sections */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

/* Decorative Blobs */
.blob {
    position: absolute;
    background: var(--wine-light);
    border-radius: 50%;
    z-index: -1;
    width: 600px;
    height: 600px;
}

.blob-1 {
    top: -200px;
    right: -200px;
}

.blob-2 {
    bottom: -300px;
    left: -200px;
    width: 800px;
    height: 800px;
}

/* Content Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--wine-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card.wine-bg {
    background: var(--gradient-wine);
    color: var(--white);
    border: none;
}

.card.wine-bg p {
    color: rgba(255, 255, 255, 0.9);
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 850;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

/* 2026 Typography System */
.hero-eyebrow {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.hero-eyebrow::after {
    content: '';
    height: 1px;
    width: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-title-main {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.hero-title-main span {
    display: inline-block;
}

.hero-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 1);
    max-width: 600px;
    margin-bottom: 3.5rem;
    font-weight: 450;
    border-left: 3px solid var(--wine);
    padding-left: 2rem;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 4rem;
    max-width: 800px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.title-lg {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.text-accent {
    color: #ff6b6b;
}

.text-wine {
    color: var(--wine);
}

p {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 60ch;
}

/* Form Elements */
.input-group {
    margin-bottom: 1.5rem;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.input-field {
    width: 100%;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-main);
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}

.input-field:focus {
    outline: none;
    background: white;
    border-color: var(--wine);
    box-shadow: 0 0 20px rgba(122, 19, 31, 0.1);
    transform: translateY(-1px);
}

select.input-field {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23722F37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.25rem;
    padding-right: 3.5rem;
}

#otp-code {
    letter-spacing: 0.8rem;
    padding-left: 1.8rem;
}

#otp-code::placeholder {
    letter-spacing: normal;
    padding-left: 0;
    font-size: 1.25rem;
    opacity: 0.3;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 2.75rem;
    border-radius: 99px;
    /* Pill shape for 2026 look */
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.navbar .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
}

.burger-menu {
    display: none;
}

.nav-links-desktop {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    background: rgba(0, 0, 0, 0.4);
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-overlay.active .mobile-menu-container {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 80%;
}

.mobile-nav-link {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--wine-light);
}

.btn-primary {
    background: var(--text-main);
    color: white;
}

.btn-primary:hover {
    background: var(--wine);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.btn-wine {
    background: var(--wine);
    color: white;
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.2);
}

.btn-wine:hover {
    background: var(--wine-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(114, 47, 55, 0.3);
}

.btn-fancy {
    background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-fancy:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(114, 47, 55, 0.4);
}

.btn-fancy-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-fancy-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-wine-outline {
    background: transparent;
    border: 2px solid var(--wine);
    color: var(--wine);
}

.btn-wine-outline:hover {
    background: var(--wine);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.2);
}

/* Full-Screen "Takeover" Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white); /* White takeover by default, can be cinematic dark */
    z-index: 100000; /* Over 100 as requested */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    width: 95%;
    max-width: 520px;
    padding: 3.5rem 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--wine-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--wine);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: #ff6b6b;
    color: white;
}

/* Cinematic Modal Refinement */
.cinematic-modal {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    color: var(--text-main);
    max-width: 550px !important;
}

.modal-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.modal-subtitle {
    font-size: 1.05rem;
    color: var(--text-dim);
    font-weight: 500;
}

.auth-alert-box {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 107, 107, 0.2);
    background: rgba(255, 107, 107, 0.05);
    color: #ff6b6b;
}

/* Searchable Select Styles */
.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-main);
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.custom-select-container.active .custom-select-trigger {
    border-color: var(--wine);
    background: white;
    box-shadow: 0 0 20px rgba(122, 19, 31, 0.05);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 100;
    overflow: hidden;
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.search-input {
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
}

.options-list {
    max-height: 250px;
    overflow-y: auto;
}

.option-item {
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.option-item:hover {
    background: rgba(122, 19, 31, 0.03);
    color: var(--wine);
}

.option-item.active {
    background: rgba(122, 19, 31, 0.05);
    font-weight: 700;
    color: var(--wine);
}

.option-item.loading {
    justify-content: center;
    color: var(--text-dim);
    font-style: italic;
}

.input-label {
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Utils */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.w-full {
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

/* Bento Layouts - Re-styled for White & Wine */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Lowered from 300px for 320px screens */
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.bento-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--wine-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--wine);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--wine-border);
}

/* Success/Error Colors for BFC */
.text-success {
    color: var(--success);
}

.bg-success {
    background: var(--success);
    color: white;
}

.text-error {
    color: var(--error);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 768px) {
    html {
        font-size: 15px; /* Slightly smaller base for mobile */
    }
    p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    .bento-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .grid-2,
    .grid-3,
    .hero-section {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }

    /* Navigation Velocity */
    .nav-links-desktop {
        display: none !important;
    }

    .navbar .btn {
        padding: 0.6rem 1.25rem !important;
        font-size: 0.8rem !important;
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10001;
    }

    /* Hero Section Mobile Fluidity */
    .hero-content {
        height: auto !important;
        min-height: auto !important;
        padding: 4rem 1.25rem 6rem !important;
        display: block !important;
        text-align: center;
    }

    /* UNIVERSAL COMPATIBILITY (320px Floor) */
    .creative-container {
        padding: 0 1rem !important; /* Smaller padding for mobile room */
    }

    .hero-title-main {
        font-size: clamp(1.6rem, 12vw, 2.8rem) !important;
        line-height: 1.05 !important;
        margin-bottom: 1rem !important;
    }

    .hero-quote {
        font-size: clamp(0.8rem, 4.5vw, 0.95rem) !important;
        margin-bottom: 2rem !important;
        padding: 0 0.5rem !important;
    }

    .hero-glass-card {
        padding: 2.5rem 1.5rem !important;
        border-radius: 32px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-glass-card div[style*="display: flex"] {
        gap: 1rem !important;
        flex-direction: column !important;
    }

    /* FULL-SCREEN AUTH TAKEOVER (Redesign) */
    .modal-overlay {
        background: var(--white) !important;
        padding: 0 !important;
        align-items: flex-start !important;
    }

    .modal-content {
        width: 100% !important;
        min-height: 100vh !important;
        max-width: none !important;
        border-radius: 0 !important;
        padding: 6rem 1.5rem 4rem !important; /* Extra top padding for close button */
        margin: 0 !important;
        box-shadow: none !important;
        display: flex;
        flex-direction: column;
    }

    .modal-title {
        font-size: 2.2rem !important;
        margin-top: 1rem !important;
    }

    .close-modal {
        position: fixed !important;
        top: 1.5rem !important;
        right: 1.5rem !important;
        width: 48px !important;
        height: 48px !important;
        background: #f5f5f5 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 100001 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    }

    /* Force grids to single column for takeover flow */
    .modal-content .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    #register-form div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    #reg-dial-code {
        width: 100% !important;
    }
}

/* Membership Journey - Dark Premium */
.membership-journey {
    padding: 10rem 0;
    background-color: #300000;
    position: relative;
    overflow: hidden;
}

.membership-journey::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(122, 19, 31, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.membership-journey .title-lg {
    color: white;
}

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

.journey-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3.5rem 2.5rem;
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-card:hover {
    transform: translateY(-12px);
    background: var(--white);
    border-color: var(--wine);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.journey-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--wine);
    opacity: 0.1;
    display: block;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.journey-card h4 {
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.journey-card p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .membership-journey {
        padding: 6rem 0;
    }

    .journey-grid {
        margin-top: 3rem;
        gap: 1.5rem;
    }

    .journey-card {
        padding: 2.5rem;
    }
}

.forgot-password {
    display: block;
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-dim);
    text-decoration: none;
    margin-top: 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--wine);
}

/* Curriculum Section */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.lesson-card {
    background: var(--white);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(114, 47, 55, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
}

.lesson-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -20px rgba(114, 47, 55, 0.12);
    border-color: rgba(114, 47, 55, 0.1);
}

.lesson-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--wine);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
    display: block;
    opacity: 0.6;
}

.lesson-title {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.lesson-duration {
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ Section - Dark Premium */
.faq-section {
    padding: 10rem 0;
    background-color: #300000;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 24px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 2.25rem;
    font-weight: 800;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.faq-question span {
    color: var(--wine);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1rem;
    display: none;
}

.faq-item.active {
    border-color: rgba(114, 47, 55, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer Styles - Cinematic Redesign */
.footer {
    background: linear-gradient(180deg, #120000 0%, #050000 100%);
    color: var(--white);
    padding: 10rem 0 4rem;
    margin-top: 10rem;
    border-top: 1px solid rgba(122, 19, 31, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 19, 31, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 6rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-top: 2rem;
    font-size: 1rem;
    max-width: 360px;
    font-weight: 400;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ff6b6b;
    transform: translateX(8px);
}

.footer-bottom {
    margin-top: 8rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    gap: 0.5rem;
}

.footer-bottom p:last-child {
    font-size: 0.725rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .footer {
        padding: 8rem 0 4rem;
        margin-top: 8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 1rem 0;
    }
    .dashboard-header .creative-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .stat-card {
        padding: 1.5rem !important;
        grid-column: span 1 !important;
    }
    .stat-value {
        font-size: 3rem !important;
    }
    .banner-title {
        font-size: 1.75rem !important;
    }
    .title-lg {
        font-size: 2rem !important;
    }
    .bento-item {
        padding: 1.5rem !important;
        grid-column: span 1 !important;
    }
    .responsive-flex {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .responsive-flex form, .responsive-flex button, .responsive-flex a {
        width: 100% !important;
    }
    .video-container {
        border-radius: 12px !important;
    }
    /* Modal Adjustments */
    #quizModal {
        padding: 1rem !important;
    }
    #quizModal > div {
        border-radius: 24px !important;
    }
    #quizModal h2 {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 480px) {
    .creative-container {
        padding: 0 1.25rem;
    }
    .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

/* Winners UI Fancy Modals */
.winners-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.winners-modal-overlay.active { opacity: 1; }

.winners-modal-card {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.winners-modal-overlay.active .winners-modal-card { transform: scale(1); }

.winners-modal-title {
    font-size: 1.75rem;
    font-weight: 850;
    color: var(--wine-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.winners-modal-text {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

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

.winners-btn-modal {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.winners-btn-primary {
    background: var(--wine);
    color: white;
}
.winners-btn-primary:hover { background: var(--wine-dark); }

.winners-btn-secondary {
    background: #f5f5f5;
    color: var(--text-dim);
}
.winners-btn-secondary:hover { background: #eee; }

@media (max-width: 640px) {
    .footer {
        padding: 6rem 0 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        margin: 1.5rem auto 0;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a:hover {
        transform: translateY(-3px);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-top: 5rem;
    }
}