        html { scrollbar-gutter: stable; }
        * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --primary: #FF1744;
            --secondary: #00E5FF;
            --accent: #FFD600;
            --dark: #0A0E27;
            --dark-blue: #1A1F3A;
            --purple: #B388FF;
            --pink: #FF4081;
            --pad-x: clamp(1rem, 5vw, 6%);
            --gap: clamp(0.6rem, 2vw, 1.5rem);
            --header-h: clamp(56px, 8vw, 80px);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0F1528 0%, #171D32 55%, #1D2038 100%);
            background-attachment: fixed;
            color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* ─── PARTICLES ─── */
        .particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
        .particle {
            position: absolute; width: 3px; height: 3px;
            background: var(--secondary); border-radius: 50%;
            animation: float 15s infinite; opacity: 0.3;
        }
        @keyframes float {
            0%,100% { transform: translate(0,0); }
            25% { transform: translate(50px,-100px); }
            50% { transform: translate(-50px,-200px); }
            75% { transform: translate(100px,-100px); }
        }

        /* ─── HEADER ─── */
        header {
            position: fixed; top: 0; left: 0; right: 0;
            z-index: 1000;
            height: var(--header-h);
            padding: 0 var(--pad-x);
            backdrop-filter: blur(24px);
            background: rgba(10,14,39,0.95);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        nav {
            display: flex; align-items: center; justify-content: space-between;
            height: 100%; max-width: 1200px; margin: 0 auto;
            gap: clamp(0.5rem, 2vw, 2rem);
        }
        .logo {
            font-family: 'Unbounded', cursive;
            font-size: clamp(1rem, 3vw, 1.5rem);
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            white-space: nowrap; flex-shrink: 0; text-decoration: none;
        }
        .nav-links {
            display: flex; gap: clamp(1rem, 2.5vw, 2rem); list-style: none;
        }
        .nav-links a {
            color: rgba(255,255,255,0.7); text-decoration: none;
            font-weight: 500; font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            transition: color 0.25s; white-space: nowrap;
        }
        .nav-links a:hover, .nav-links a.active { color: #fff; }
        .nav-links a.active { color: var(--secondary); }

        .header-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

        .search-bar {
            display: flex; align-items: center;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 24px; padding: 0 1rem; height: 40px;
            transition: all 0.3s; gap: 0.5rem;
            width: clamp(38px, 25vw, 205px);
            cursor: pointer; overflow: hidden;
        }
        .search-bar:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
        .search-icon { color: rgba(255,255,255,0.4); font-size: 0.9rem; flex-shrink: 0; display: flex; align-items: center; line-height: 1; }
        .search-bar-label {
            color: rgba(255,255,255,0.35); font-size: 0.875rem;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1;
        }

        /* ─── USER CHIP & DROPDOWN ─── */
        .user-menu-wrap {
            position: relative; flex-shrink: 0;
        }
        .user-chip {
            display: flex; align-items: center; gap: 0.55rem;
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
            border-radius: 50px; padding: 4px 14px 4px 4px;
            cursor: pointer; transition: all 0.25s; max-width: 220px;
            user-select: none;
        }
        .user-chip:hover { background: rgba(0,229,255,0.06); border-color: var(--secondary); }
        .user-chip-avatar {
            width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
            flex-shrink: 0; background: rgba(255,255,255,0.07); position: relative;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem; font-weight: 700; overflow: visible;
            border: 2px solid rgba(255,255,255,0.18);
        }
        .user-chip-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
        .dropdown-item-badge { margin-left: auto; background: var(--primary); color: #fff; font-size: 0.6rem; font-weight: 700; min-width: 18px; height: 18px; padding: 0 5px 1px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .chip-notif-dot { position: absolute; top: -2px; right: -7px; min-width: 14px; height: 14px; background: var(--primary); border-radius: 7px; font-size: 0.52rem; font-weight: 700; color: #fff; display: none; align-items: center; justify-content: center; padding: 0 3px 1px; }
        .user-chip-name {
            font-size: 0.83rem; font-weight: 600; color: rgba(255,255,255,0.9);
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 130px;
        }
        @media (min-width: 801px) and (max-width: 1000px) { .user-chip-name { max-width: 60px; } }
        @media (min-width: 1000px) { .user-chip-name { max-width: 135px; } }
        @media (max-width: 374px) { .user-chip-name { max-width: 60px; } }
        .user-chip-arrow { font-size: 0.55rem; color: rgba(255,255,255,0.4); flex-shrink: 0; transition: transform 0.2s; margin-left: 0; }
        .user-menu-wrap:hover .user-chip-arrow,
        .user-menu-wrap.mobile-open .user-chip-arrow { transform: rotate(180deg); }
        .user-dropdown {
            position: fixed; top: var(--header-h); right: 0;
            background: rgba(13,17,38,0.98);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 18px; padding: 0.6rem;
            min-width: 268px; z-index: 2100;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 0.5px rgba(255,255,255,0.05);
            backdrop-filter: blur(32px);
            opacity: 0; pointer-events: none;
            transform: translateY(6px);
            transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
            transform-origin: top right;
        }
        .user-menu-wrap:hover .user-dropdown,
        .user-menu-wrap.mobile-open .user-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
        @media (max-width: 1024px) {
            .user-menu-wrap:hover .user-dropdown { opacity: 0; pointer-events: none; transform: translateY(6px); }
            .user-menu-wrap.mobile-open .user-dropdown { opacity: 1 !important; pointer-events: all !important; transform: translateY(0) !important; }
            .user-menu-wrap:hover .user-chip-arrow { transform: none; }
            .user-menu-wrap.mobile-open .user-chip-arrow { transform: rotate(180deg) !important; }
        }
        .user-dropdown::before { content: ''; position: absolute; top: -20px; left: 0; right: 0; height: 20px; }
        .dropdown-header {
            display: flex; align-items: stretch; gap: 0.75rem;
            padding: 0.8rem; margin-bottom: 0.45rem;
            border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden; position: relative; isolation: isolate; min-height: 64px;
        }
        .dropdown-header-bg {
            position: absolute; inset: 0;
            background-position: center; background-size: 110%; background-repeat: no-repeat;
        }
        .dropdown-header-bg::after { content: ''; position: absolute; inset: 0; background: rgba(6,9,26,0.85); }
        .dropdown-avatar {
            width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
            background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem; font-weight: 700; border: 2px solid rgba(255,255,255,0.25);
            position: relative; z-index: 1; align-self: center;
        }
        .dropdown-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
        .dropdown-user-info { min-width: 0; flex: 1; display: flex; flex-direction: column; justify-content: space-between; position: relative; z-index: 1; }
        .dropdown-username { font-size: 0.88rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 145px; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
        .dropdown-plan-badge {
            display: inline-flex; align-items: center; gap: 0.25rem;
            font-size: 0.66rem; font-weight: 700; align-self: flex-start;
            background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(179,136,255,0.15));
            border: 1px solid rgba(0,229,255,0.4);
            box-shadow: 0 0 10px rgba(0,229,255,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
            border-radius: 5px; padding: 2px 7px; position: relative; overflow: hidden;
        }
        .dropdown-plan-badge .badge-text {
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .dropdown-plan-badge::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(0,229,255,0.1) 50%, transparent 100%);
            background-size: 200% 100%; animation: badgeShimmer 3s linear infinite; pointer-events: none;
        }
        .dropdown-plan-badge.ultimate {
            background: linear-gradient(135deg, rgba(255,170,0,0.15), rgba(255,56,100,0.15));
            border: 1px solid rgba(255,170,0,0.4);
            box-shadow: 0 0 10px rgba(255,170,0,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
        }
        .dropdown-plan-badge.ultimate .badge-text {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .dropdown-plan-badge.ultimate::after {
            background: linear-gradient(90deg, transparent 0%, rgba(255,170,0,0.1) 50%, transparent 100%);
            background-size: 200% 100%;
        }
        .dropdown-plan-badge.free { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); box-shadow: none; }
        .dropdown-plan-badge.free .badge-text { background: none; -webkit-background-clip: unset; -webkit-text-fill-color: rgba(255,255,255,0.70); background-clip: unset; }
        .dropdown-plan-badge.free::after { display: none; }
        @keyframes badgeShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
        .dropdown-item {
            display: flex; align-items: center; gap: 0.6rem;
            padding: 0.5rem 0.85rem; border-radius: 10px;
            color: rgba(255,255,255,0.62); font-size: 0.82rem;
            cursor: pointer; transition: all 0.15s; text-decoration: none;
        }
        .dropdown-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
        .dropdown-item.active { color: #fff; background: rgba(255,255,255,0.05); }
        .dropdown-item-icon { font-size: 0.88rem; flex-shrink: 0; width: 20px; display: flex; align-items: center; justify-content: center; }
        .dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0.35rem 0.4rem; }
        .dropdown-item.logout { color: rgba(255,80,80,0.6); }
        .dropdown-item.logout:hover { background: rgba(255,23,68,0.08); color: rgba(255,90,90,0.9); }
        .dropdown-item.mobile-only { display: none; }

        /* ─── LOGOUT MODAL ─── */
        .logout-modal-overlay { display: none; position: fixed; inset: 0; z-index: 6000; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); align-items: center; justify-content: center; }
        .logout-modal-overlay.open { display: flex; animation: fadeIn 0.2s ease-out; }
        .logout-modal { background: rgba(13,17,38,0.99); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem 2.5rem; text-align: center; max-width: 360px; width: 90%; box-shadow: 0 24px 60px rgba(0,0,0,0.6); }
        .logout-modal-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,23,68,0.08); border: 1px solid rgba(255,23,68,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
        .logout-modal-title { font-family: 'Unbounded', cursive; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
        .logout-modal-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; line-height: 1.6; }
        .logout-modal-btns { display: flex; gap: 0.75rem; justify-content: center; }
        .logout-btn-confirm { background: linear-gradient(135deg, var(--primary), #ff5577); border: none; border-radius: 10px; color: #fff; font-size: 0.85rem; font-weight: 700; padding: 0.65rem 1.5rem; cursor: pointer; font-family: 'Inter', sans-serif; }
        .logout-btn-confirm:hover { box-shadow: 0 4px 16px rgba(255,23,68,0.4); }
        .logout-btn-cancel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 600; padding: 0.65rem 1.5rem; cursor: pointer; font-family: 'Inter', sans-serif; }
        .logout-btn-cancel:hover { background: rgba(255,255,255,0.1); color: #fff; }

        /* ─── TOAST ─── */
        #toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px); background: rgba(16,20,46,0.97); border: 1px solid rgba(0,229,255,0.28); border-radius: 12px; padding: 0.7rem 1.4rem; color: #fff; font-size: 0.86rem; font-weight: 600; z-index: 9999; transition: transform 0.3s ease; pointer-events: none; backdrop-filter: blur(16px); }
        #toast.show { transform: translateX(-50%) translateY(0); }

        /* Never show burger btn by default */
        .burger-btn { display: none !important; }

        @media (max-width: 800px) {
            .user-menu-wrap { display: flex !important; }
            nav .search-bar { display: none; }
            nav .nav-links { display: none; }
            .header-search-row { display: block !important; }
            .user-chip { padding: 4px 10px 4px 4px; max-width: 160px; }
            .user-chip-name { display: block; font-size: 0.78rem; }
            .dropdown-item.mobile-only { display: flex; }
            .user-dropdown { position: fixed; top: calc(var(--header-h) + 54px) !important; right: 0 !important; left: 0 !important; width: 100vw !important; min-width: unset !important; border-radius: 0 0 18px 18px; max-height: calc(100vh - var(--header-h) - 54px - 20px); overflow-y: auto; border-top: 1px solid rgba(255,255,255,0.06) !important; padding-left: var(--pad-x) !important; padding-right: var(--pad-x) !important; }
            .dropdown-header { margin-left: -1px; margin-right: -1px; }
        }
        @media (min-width: 600px) and (max-width: 800px) {
            .user-chip { max-width: 200px; }
            .user-chip-name { max-width: 130px; }
        }
        .user-menu-wrap.mobile-open .user-dropdown { opacity: 1 !important; pointer-events: all !important; transform: translateY(0) !important; }

        .mobile-nav {
            display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
            background: rgba(10,14,39,0.98); backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            z-index: 999; padding: 1.2rem var(--pad-x);
            flex-direction: column; gap: 0.5rem;
            animation: slideDown 0.25s ease-out;
        }
        .mobile-nav.open { display: flex; }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
        .mobile-nav a {
            color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem;
            font-weight: 500; padding: 0.75rem 1rem;
            border-radius: 10px; transition: all 0.2s;
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
            height: 40px; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
        }
        .mobile-nav a:hover { color: var(--secondary); background: rgba(0,229,255,0.07); border-color: rgba(0,229,255,0.2); }
        .mobile-nav a.active { color: var(--secondary); background: rgba(0,229,255,0.08); border-color: rgba(0,229,255,0.25); font-weight: 700; }
        @media (min-width: 681px) { .mobile-nav-page-link { display: none !important; } }

        /* ─── SEARCH MODAL ─── */
        .search-modal-overlay {
            display: none; position: fixed; inset: 0;
            background: rgba(0,0,0,0.75); z-index: 4000; backdrop-filter: blur(2px);
        }
        .search-modal-overlay.open {
            display: flex; flex-direction: column; align-items: center;
            padding: var(--header-h) clamp(0.5rem, 3vw, 1.5rem) 0;
            animation: fadeIn 0.2s ease-out;
        }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .search-modal-box { width: 100%; max-width: 680px; animation: slideDown 0.25s ease-out; }
        .search-modal-input-wrap {
            display: flex; align-items: center; gap: 0.9rem;
            background: rgba(18,22,48,0.99);
            border: 1px solid rgba(0,229,255,0.35); border-bottom: none;
            border-radius: 16px 16px 0 0; padding: 0 1.4rem; height: 58px;
        }
        .search-modal-icon { color: rgba(0,229,255,0.55); font-size: 1.1rem; flex-shrink: 0; display: flex; align-items: center; }
        .search-modal-input {
            background: none; border: none; color: #fff; outline: none;
            width: 100%; font-size: clamp(0.9rem, 2.5vw, 1.05rem); font-family: 'Inter', sans-serif;
        }
        .search-modal-input::placeholder { color: rgba(255,255,255,0.28); }
        .search-modal-close {
            background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%; color: rgba(255,255,255,0.5); cursor: pointer;
            font-size: 0.75rem; width: 28px; height: 28px;
            display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s;
        }
        .search-modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
        .search-modal-body {
            background: rgba(14,18,40,0.99); border: 1px solid rgba(0,229,255,0.35);
            border-radius: 0 0 16px 16px; padding: 1.3rem 1.6rem 1.6rem;
            box-shadow: 0 24px 60px rgba(0,0,0,0.5);
        }
        .search-modal-tabs { display: flex; gap: 0.4rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
        .search-modal-tab {
            padding: 0.38rem 1rem; border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.12);
            background: transparent; color: rgba(255,255,255,0.6);
            font-size: 0.85rem; font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.2s;
        }
        .search-modal-tab:hover { border-color: rgba(255,255,255,0.28); color: #fff; background: rgba(255,255,255,0.05); }
        .search-modal-tab.active { background: var(--secondary); border-color: var(--secondary); color: #000; font-weight: 700; }
        .search-modal-section-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.09em; font-weight: 700; margin-bottom: 0.75rem; }
        .search-modal-popular { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.3rem; }
        .search-modal-popular-tag {
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px; padding: 0.38rem 1rem; font-size: 0.85rem;
            color: rgba(255,255,255,0.7); cursor: pointer; transition: all 0.2s;
        }
        .search-modal-popular-tag:hover { background: rgba(0,229,255,0.1); border-color: var(--secondary); color: var(--secondary); }
        .search-history-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:0.75rem; }
        .search-history-clear { background:none; border:none; color:rgba(255,255,255,0.3); font-size:0.75rem; cursor:pointer; font-family:'Inter',sans-serif; transition:color 0.2s; padding:0; }
        .search-history-clear:hover { color:var(--primary); }
        .search-history-tags { display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:1.4rem; }
        .search-history-tag { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09); border-radius:20px; padding:0.38rem 1rem; font-size:0.85rem; cursor:pointer; color:rgba(255,255,255,0.7); display:flex; align-items:center; gap:0.45rem; }
        .search-history-tag:hover { background:rgba(0,229,255,0.08); border-color:var(--secondary); color:var(--secondary); }
        .search-modal-genres { display: flex; gap: 0.5rem; flex-wrap: wrap; }
        .search-modal-genre-tag {
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
            border-radius: 20px; padding: 0.38rem 1rem; font-size: 0.85rem;
            color: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.2s;
            display: flex; align-items: center; gap: 0.4rem; text-decoration: none;
        }
        .search-modal-genre-tag:hover { background: rgba(179,136,255,0.12); border-color: var(--purple); color: var(--purple); }
        .search-results { display: none; }
        .search-results.visible { display: block; }
        .search-static.hidden { display: none; }
        .search-result-item {
            display: flex; align-items: center; gap: 0.9rem;
            padding: 0.6rem 0.5rem; border-radius: 10px; cursor: pointer; transition: background 0.15s;
        }
        .search-result-item:hover { background: rgba(255,255,255,0.05); }
        .search-result-img { width: 38px; height: 52px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: rgba(255,255,255,0.07); }
        .search-result-info { flex: 1; min-width: 0; }
        .search-result-name { font-size: 0.92rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0.2rem; }
        .search-result-meta { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
        .search-result-rating { font-size: 0.8rem; color: var(--accent); font-weight: 600; display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
        .search-empty { text-align: center; padding: 1.5rem 0 0.5rem; }
        .search-empty-icon { margin-bottom: 0.6rem; display: flex; justify-content: center; }
        .search-empty-text { font-size: 0.92rem; margin-bottom: 0.3rem; }
        .search-empty-hint { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

        /* ─── HEADER SEARCH ROW (mobile) ─── */
        .header-search-row {
            display: none;
            position: fixed; top: var(--header-h); left: 0; right: 0;
            padding: 6px var(--pad-x) 8px;
            background: rgba(10,14,39,0.97); backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            z-index: 1001;
        }
        .header-search-row .search-bar { width: 100%; max-width: 100%; border-radius: 12px; height: 40px; }

        /* ─── FOOTER ─── */
        footer {
            background: rgba(10,14,39,0.8);
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 48px 0 24px;
            position: relative; z-index: 10;
        }
        .footer-content {
            width: 100%; max-width: 1200px; margin: 0 auto;
            padding: 0 48px;
            display: grid; grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 32px; box-sizing: border-box;
        }
        .footer-section h3 {
            font-family: 'Unbounded', cursive; font-size: 0.88rem; margin-bottom: 14px;
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .footer-section p { color: rgba(255,255,255,0.7); line-height: 1.6; font-size: 0.82rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 8px; }
        .footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; font-size: 0.82rem; }
        .footer-links a:hover { color: var(--secondary); }
        .footer-logo { height: 28px; width: auto; display: block; }
        @media (max-width: 900px) { .footer-content { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 480px) {
            .footer-content { padding-left: 20px; padding-right: 20px; }
            .footer-content { grid-template-columns: 1fr; }
        }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 800px) {
            .sub-hero { margin-top: calc(var(--header-h) + 54px) !important; }
            .mobile-nav { top: calc(var(--header-h) + 54px); }
        }

        /* ═══════════════════════════
           SUBSCRIPTION PAGE STYLES
        ═══════════════════════════ */

        /* ─── HERO ─── */
        .sub-hero {
            margin-top: var(--header-h);
            padding: clamp(1.2rem, 3vw, 2rem) var(--pad-x) clamp(1.5rem, 3vw, 2.5rem);
            position: relative; z-index: 10; text-align: center;
            overflow: hidden;
        }
        .sub-hero::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,229,255,0.08) 0%, transparent 70%),
                        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(179,136,255,0.06) 0%, transparent 60%);
            pointer-events: none;
        }
        .sub-hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,215,0,0.05));
            border: 1px solid rgba(255,215,0,0.3);
            border-radius: 30px; padding: 0.4rem 1.2rem; margin-bottom: 1.5rem;
            font-size: 0.82rem; font-weight: 600; color: var(--accent);
            letter-spacing: 0.05em; text-transform: uppercase;
            animation: badgePulse 3s ease-in-out infinite;
        }
        @keyframes badgePulse {
            0%,100% { box-shadow: 0 0 0 0 rgba(255,215,0,0); }
            50% { box-shadow: 0 0 0 6px rgba(255,215,0,0.08); }
        }
        .sub-hero h2 {
            font-family: 'Unbounded', cursive;
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.2rem;
        }
        .sub-hero h2 span.grad-red {
            background: linear-gradient(135deg, var(--primary), var(--pink));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .sub-hero h2 span.grad-cyan {
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .sub-hero-desc {
            max-width: 600px; margin: 0 auto 2.5rem;
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            color: rgba(255,255,255,0.6); line-height: 1.7;
        }
        .sub-hero-perks {
            display: flex; justify-content: center; gap: clamp(1rem, 3vw, 2.5rem);
            flex-wrap: wrap; margin-bottom: 0;
        }
        .sub-hero-perk {
            display: flex; align-items: center; gap: 0.4rem;
            font-size: clamp(0.78rem, 1.5vw, 0.88rem); color: rgba(255,255,255,0.6);
            font-weight: 500;
        }

        /* ─── BILLING TOGGLE ─── */
        .billing-section {
            padding: 0 var(--pad-x) clamp(2rem, 4vw, 3rem);
            position: relative; z-index: 10;
            display: flex; justify-content: center; align-items: center;
        }
        .billing-toggle {
            display: inline-flex; align-items: stretch; gap: 0;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50px; padding: 0.4rem;
        }
        .billing-option {
            padding: 0.55rem 2rem; border-radius: 40px; cursor: pointer;
            font-size: 0.9rem; font-weight: 600; transition: all 0.3s;
            color: rgba(255,255,255,0.5); user-select: none;
            display: flex; align-items: center; justify-content: center; gap: 0.5rem;
            flex: 1; white-space: nowrap;
        }
        .billing-option.active {
            background: linear-gradient(135deg, var(--primary), #ff5577);
            color: #fff; box-shadow: 0 2px 10px rgba(255,23,68,0.3);
        }
        .billing-save-badge {
            display: inline-flex; align-items: center;
            background: rgba(0,229,255,0.12); border: 1px solid rgba(0,229,255,0.3);
            border-radius: 20px; padding: 0.25rem 0.8rem;
            font-size: 0.75rem; font-weight: 700; color: var(--secondary); margin-left: 0.3rem;
        }

        /* ─── PRICING CARDS ─── */
        .pricing-section {
            padding: 0 var(--pad-x) clamp(1.5rem, 3vw, 2rem);
            position: relative; z-index: 10;
            flex: 1;
        }
        .pricing-grid {
            max-width: 1200px; margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(1rem, 2vw, 1.5rem);
            align-items: stretch;
        }
        @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; } }

        .plan-card {
            background: linear-gradient(135deg, rgba(26,31,58,0.7), rgba(45,27,61,0.5));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px; padding: clamp(1.5rem, 3vw, 2.5rem);
            position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
            backdrop-filter: blur(10px);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
        .plan-card.popular {
            border-color: var(--secondary);
            box-shadow: 0 0 30px rgba(0,229,255,0.15);
        }
        .plan-card.popular:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,229,255,0.25); }

        .plan-card::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(0,229,255,0.04), rgba(179,136,255,0.04));
            pointer-events: none;
        }

        /* Active plan overlay */
        .plan-card.popular.current-plan {
            border-color: var(--secondary);
            box-shadow: 0 0 40px rgba(0,229,255,0.2);
        }
        .plan-active-indicator {
            position: absolute; top: 0; left: 50%; transform: translateX(-50%);
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            color: #000; font-weight: 900; font-size: 0.72rem;
            padding: 0.3rem 1.4rem; border-radius: 0 0 12px 12px;
            letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
            display: flex; align-items: center; gap: 0.35rem;
        }

        .plan-popular-badge {
            position: absolute; top: 0; left: 50%; transform: translateX(-50%);
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            color: #000; font-weight: 900; font-size: 0.72rem;
            padding: 0.3rem 1.4rem; border-radius: 0 0 12px 12px;
            letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
        }
        .plan-name {
            font-family: 'Unbounded', cursive;
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 700; margin-bottom: 0.4rem; margin-top: 1.5rem !important;
            min-height: 24px;
            display: flex !important;
            align-items: center !important;
        }
        .plan-name svg {
            width: 18px;
            height: 18px;
            display: block;
        }
        .plan-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 1.8rem; line-height: 1.5; }
        .plan-price { margin-bottom: 0.5rem; }
        .plan-price-amount {
            font-family: 'Unbounded', cursive;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 900; line-height: 1;
        }
        .plan-price-amount .currency { font-size: 0.55em; vertical-align: super; opacity: 0.7; margin-right: 0.25em; }
        .plan-price-amount .period { font-size: 0.38em; color: rgba(255,255,255,0.5); font-weight: 400; }
        .plan-price-old {
            font-size: 0.85rem; color: rgba(255,255,255,0.35); text-decoration: line-through; margin-bottom: 1.2rem;
        }
        .plan-divider {
            height: 1px; background: rgba(255,255,255,0.08); margin: 1.5rem 0;
        }
        .plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
        .plan-feature {
            display: flex; align-items: flex-start; gap: 0.7rem;
            font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.4;
        }
        .plan-feature .check {
            width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
            display: inline-flex; align-items: center; justify-content: center;
            line-height: 1;
        }
        .plan-feature .check-yes::before {
            content: '';
            display: block;
            width: 8px; height: 4px;
            border-left: 2px solid #000;
            border-bottom: 2px solid #000;
            transform: rotate(-45deg) translate(1px, -1px);
        }
        .plan-feature .check-no::before {
            content: '';
            display: block;
            width: 7px; height: 7px;
            background:
                linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.45) 45%, rgba(255,255,255,0.45) 55%, transparent 55%),
                linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.45) 45%, rgba(255,255,255,0.45) 55%, transparent 55%);
        }
        .check-yes { background: linear-gradient(135deg, #00E5FF, #B388FF); color: #000; }
        .check-no { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.3); }
        .plan-feature.disabled { color: rgba(255,255,255,0.3); }

        .plan-btn {
            width: 100%; padding: 0.9rem;
            border-radius: 12px; border: none;
            font-family: 'Inter', sans-serif; font-weight: 700;
            font-size: 0.95rem; cursor: pointer; transition: all 0.25s;
            margin-top: auto;
        }
        .plan-btn-free {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.35);
            cursor: default; pointer-events: none;
        }
        .plan-btn-premium {
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            color: #000; box-shadow: 0 4px 20px rgba(0,229,255,0.3);
        }
        .plan-btn-premium:hover { box-shadow: 0 6px 28px rgba(0,229,255,0.5); transform: scale(1.02); }
        .plan-btn-current {
            background: rgba(0,229,255,0.08);
            border: 1px solid rgba(0,229,255,0.3);
            color: var(--secondary);
            display: flex; align-items: center; justify-content: center; gap: 0.5rem;
        }
        .plan-btn-current:hover { background: rgba(0,229,255,0.14); }
        .plan-btn-ultimate {
            background: linear-gradient(135deg, var(--primary), var(--pink));
            color: #fff; box-shadow: 0 4px 20px rgba(255,23,68,0.3);
        }
        .plan-btn-ultimate:hover { box-shadow: 0 6px 28px rgba(255,23,68,0.5); transform: scale(1.02); }

        /* Price glow colors per plan */
        .plan-card:nth-child(1) .plan-price-amount { color: rgba(255,255,255,0.9); }
        .plan-card:nth-child(2) .plan-price-amount { background: linear-gradient(135deg, var(--secondary), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .plan-card:nth-child(3) .plan-price-amount { background: linear-gradient(135deg, var(--accent), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

        .plan-card:nth-child(2) .plan-price-amount .currency,
        .plan-card:nth-child(3) .plan-price-amount .currency {
            -webkit-text-fill-color: rgba(255,255,255,0.5);
        }

        /* Animated shimmer on popular plan */
        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        .plan-card.popular::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(0,229,255,0.04) 50%, transparent 100%);
            background-size: 200% 100%;
            animation: shimmer 4s linear infinite;
            pointer-events: none;
        }

        /* ─── FOUNDER hero (holographic exclusive section) ─── */
        @keyframes holoFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        @keyframes founderRingDrift {
            0%   { transform: translate(0, 0); opacity: 0.7; }
            33%  { transform: translate(2%, -2%); opacity: 0.55; }
            66%  { transform: translate(-2%, 1%); opacity: 0.65; }
            100% { transform: translate(0, 0); opacity: 0.7; }
        }
        @keyframes founderTwinkle {
            0%, 100% { opacity: 0.15; transform: scale(0.9); }
            50%      { opacity: 0.55; transform: scale(1.1); }
        }
        @keyframes founderHoloBorder {
            0%, 100% { background-position: 0% 50%, 0% 0%; }
            50%      { background-position: 100% 50%, 0% 0%; }
        }
        .founders-section {
            padding: 0 var(--pad-x) clamp(1rem, 2vw, 1.5rem);
            position: relative; z-index: 10;
        }
        .founders-hero {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 24px;
            padding: clamp(2rem, 3.4vw, 2.8rem) clamp(1.6rem, 3.4vw, 2.8rem) clamp(1.8rem, 3.4vw, 2.6rem);
            background:
                linear-gradient(135deg, #0c0d18 0%, #100b1a 50%, #0a0a14 100%) padding-box,
                linear-gradient(135deg, #00E5FF, #B388FF 33%, #FF4081 66%, #FFD600 100%) border-box;
            background-size: 100% 100%, 220% 220%;
            border: 1px solid transparent;
            box-shadow: 0 0 60px rgba(179,136,255,0.08), 0 0 120px rgba(255,64,129,0.04);
            animation: founderHoloBorder 9s ease-in-out infinite;
            isolation: isolate;
        }
        .founders-hero-shimmer {
            position: absolute;
            inset: 0;
            border-radius: 24px;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }
        /* concentric ring sheen — drifts subtly, never the same as before */
        .founders-hero-shimmer::before {
            content: '';
            position: absolute;
            inset: -20%;
            background:
                radial-gradient(ellipse at 75% 25%, rgba(179,136,255,0.18), transparent 45%),
                radial-gradient(ellipse at 20% 80%, rgba(0,229,255,0.14), transparent 50%),
                radial-gradient(ellipse at 60% 60%, rgba(255,64,129,0.1), transparent 55%);
            filter: blur(40px);
            animation: founderRingDrift 18s ease-in-out infinite;
        }
        /* subtle twinkling stars scattered across */
        .founders-hero-shimmer::after {
            content: '';
            position: absolute; inset: 0;
            background:
                radial-gradient(circle 1px at 14% 22%, rgba(255,255,255,0.7), transparent 1.5px),
                radial-gradient(circle 1.5px at 78% 18%, rgba(0,229,255,0.7), transparent 2px),
                radial-gradient(circle 1px at 32% 80%, rgba(179,136,255,0.6), transparent 1.5px),
                radial-gradient(circle 1.5px at 88% 70%, rgba(255,214,0,0.6), transparent 2px),
                radial-gradient(circle 1px at 56% 38%, rgba(255,64,129,0.6), transparent 1.5px),
                radial-gradient(circle 1px at 8% 60%, rgba(255,255,255,0.5), transparent 1.5px),
                radial-gradient(circle 1.5px at 64% 88%, rgba(0,229,255,0.5), transparent 2px);
            animation: founderTwinkle 4s ease-in-out infinite;
        }
        .founders-hero > *:not(.founders-hero-shimmer):not(.founders-hero-badge) { position: relative; z-index: 2; }
        .founders-hero-badge {
            position: absolute;
            top: 0;
            left: 50%; transform: translateX(-50%);
            background: linear-gradient(135deg, #00E5FF, #B388FF, #FF4081, #FFD600);
            background-size: 200% 200%;
            animation: holoFlow 4s ease infinite;
            color: #000; font-weight: 900; font-size: 0.7rem;
            padding: 0.32rem 1.2rem;
            border-radius: 0 0 12px 12px;
            letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
            display: flex; align-items: center; gap: 0.4rem;
            z-index: 3;
        }
        .founders-hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
            gap: clamp(1.5rem, 4vw, 3rem);
            align-items: center;
            margin-top: 0.4rem;
        }
        @media (max-width: 800px) {
            .founders-hero-grid { grid-template-columns: 1fr; gap: 1.6rem; }
        }
        .founders-hero-left { display: flex; flex-direction: column; }
        .founders-hero-name {
            font-family: 'Unbounded', cursive;
            font-size: clamp(1.4rem, 3.4vw, 2.2rem);
            font-weight: 700;
            display: flex; align-items: center; gap: 0.6rem;
            margin-bottom: 0.7rem;
            line-height: 1;
        }
        .plan-founders-name {
            background: linear-gradient(135deg, #00E5FF, #B388FF 35%, #FF4081 65%, #FFD600);
            background-size: 200% 200%;
            animation: holoFlow 4s ease infinite;
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        .founders-hero-tagline {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.62);
            line-height: 1.55;
            margin-bottom: 1.6rem;
        }
        .founders-hero-price {
            display: flex; align-items: baseline; gap: 0.7rem;
            margin-bottom: 1.4rem;
            flex-wrap: wrap;
        }
        .founders-hero-price-amount {
            font-family: 'Unbounded', cursive;
            font-size: clamp(2.2rem, 5vw, 3.4rem);
            font-weight: 900; line-height: 1;
            background: linear-gradient(135deg, #00E5FF, #B388FF 40%, #FF4081 70%, #FFD600);
            background-size: 200% 200%;
            animation: holoFlow 4s ease infinite;
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .founders-hero-price-amount .currency {
            font-size: 0.5em; vertical-align: super;
            -webkit-text-fill-color: rgba(255,255,255,0.5);
            margin-right: 0.15em;
        }
        .founders-hero-price-period {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.45);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 500;
        }
        .founders-hero-buttons {
            display: flex; gap: 0.7rem; flex-wrap: wrap;
        }
        .founders-hero-buttons .plan-btn-founders {
            flex: 1 1 auto;
            min-width: 200px;
            padding: 0.95rem 1.6rem;
        }
        .founders-hero-gift {
            flex: 0 0 auto;
            margin-top: 0;
            width: auto;
            padding: 0.8rem 1.2rem;
        }
        .plan-btn-founders {
            background: linear-gradient(135deg, #00E5FF, #B388FF 40%, #FF4081 70%, #FFD600);
            background-size: 200% 200%;
            animation: holoFlow 4s ease infinite;
            color: #000; font-weight: 800;
            box-shadow: 0 4px 24px rgba(179,136,255,0.4);
            border: none; border-radius: 12px;
            font-family: 'Inter', sans-serif; font-size: 0.95rem;
            cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
        }
        .plan-btn-founders:hover {
            box-shadow: 0 8px 36px rgba(255,64,129,0.5);
            transform: scale(1.02);
        }
        .founders-hero-right {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: clamp(1.2rem, 2.4vw, 1.8rem);
        }
        .founders-hero-features-title {
            font-family: 'Unbounded', cursive;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.55);
            margin-bottom: 1rem;
        }
        .founders-hero-features {
            margin-bottom: 0;
        }

        /* ─── GIFT button on plan cards ─── */
        .plan-gift-btn {
            width: 100%;
            margin-top: 0.6rem;
            padding: 0.65rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            color: rgba(255,255,255,0.7);
            font-family: 'Inter', sans-serif; font-weight: 600;
            font-size: 0.82rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center; gap: 0.45rem;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }
        .plan-gift-btn:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.18);
            color: #fff;
        }
        .plan-gift-btn[hidden] { display: none !important; }

        /* Founder column in compare table */
        .compare-table-4 th, .compare-table-4 td { padding-left: 0.6rem; padding-right: 0.6rem; }
        .th-founders {
            background: linear-gradient(135deg, rgba(0,229,255,0.18), rgba(179,136,255,0.18), rgba(255,64,129,0.18), rgba(255,214,0,0.18)) !important;
            background-size: 200% 200% !important;
            animation: holoFlow 5s ease infinite;
            color: #fff !important;
            font-weight: 800 !important;
            position: relative;
            border-top: 1px solid rgba(179,136,255,0.4) !important;
        }
        .th-founders span {
            background: linear-gradient(135deg, #00E5FF, #B388FF 35%, #FF4081 65%, #FFD600);
            background-size: 200% 200%;
            animation: holoFlow 4s ease infinite;
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .td-founders {
            background: linear-gradient(135deg, rgba(0,229,255,0.06), rgba(179,136,255,0.06), rgba(255,64,129,0.06), rgba(255,214,0,0.06));
        }

        /* ─── GIFT MODAL ─── */
        .gift-modal-overlay {
            display: none;
            position: fixed; inset: 0;
            background: rgba(5,7,18,0.78);
            backdrop-filter: blur(8px);
            z-index: 9999;
            align-items: center; justify-content: center;
            padding: 1rem;
            animation: fadeIn 0.2s ease-out;
        }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .gift-modal-overlay.open { display: flex; }
        .gift-modal {
            position: relative;
            width: 100%; max-width: 460px;
            background: linear-gradient(135deg, rgba(20,24,42,0.99), rgba(28,18,48,0.99));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            padding: clamp(1.5rem, 4vw, 2.2rem);
            box-shadow: 0 30px 80px rgba(0,0,0,0.6);
        }
        .gift-modal-close {
            position: absolute; top: 1rem; right: 1rem;
            width: 32px; height: 32px;
            background: rgba(255,255,255,0.05);
            border: none; border-radius: 50%;
            color: rgba(255,255,255,0.6);
            font-size: 1.4rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s, color 0.2s;
        }
        .gift-modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
        .gift-modal-header { text-align: center; margin-bottom: 1.6rem; }
        .gift-modal-icon {
            width: 56px; height: 56px;
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            color: #000;
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: 0 8px 24px rgba(0,229,255,0.3);
        }
        .gift-modal-title {
            font-family: 'Unbounded', cursive;
            font-size: 1.3rem; font-weight: 700;
            margin-bottom: 0.4rem;
        }
        .gift-modal-sub { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
        .gift-field { margin-bottom: 1.2rem; }
        .gift-field label {
            display: block; font-size: 0.78rem; font-weight: 600;
            color: rgba(255,255,255,0.7); margin-bottom: 0.5rem;
            text-transform: uppercase; letter-spacing: 0.06em;
        }
        .gift-input-wrap { position: relative; }
        .gift-selected-user {
            display: none;
            align-items: center;
            gap: 0.7rem;
            padding: 0.65rem 0.85rem;
            background: rgba(0,229,255,0.06);
            border: 1px solid rgba(0,229,255,0.3);
            border-radius: 10px;
        }
        .gift-selected-user.active { display: flex; }
        .gsu-avatar {
            width: 32px; height: 32px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            background: rgba(255,255,255,0.06);
        }
        .gsu-name {
            flex: 1;
            font-weight: 600;
            color: #fff;
            font-size: 0.92rem;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .gsu-clear {
            flex-shrink: 0;
            width: 26px; height: 26px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            border: none;
            color: rgba(255,255,255,0.6);
            font-size: 1.2rem; line-height: 1;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.15s, color 0.15s;
        }
        .gsu-clear:hover { background: rgba(255,80,80,0.15); color: #fff; }
        .gift-input {
            width: 100%; padding: 0.85rem 1rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            color: #fff;
            font-family: 'Inter', sans-serif; font-size: 0.92rem;
            transition: border-color 0.2s, background 0.2s;
        }
        .gift-input:focus { outline: none; border-color: var(--secondary); background: rgba(0,229,255,0.04); }
        .gift-hint { font-size: 0.74rem; color: rgba(255,255,255,0.4); margin-top: 0.5rem; line-height: 1.5; }
        .gift-autocomplete {
            display: none;
            position: absolute;
            top: calc(100% + 4px); left: 0; right: 0;
            background: rgba(20,24,42,0.99);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 10px;
            max-height: 240px;
            overflow-y: auto;
            z-index: 10;
            box-shadow: 0 12px 28px rgba(0,0,0,0.5);
        }
        .ac-item {
            display: flex; align-items: center; gap: 0.7rem;
            padding: 0.6rem 0.85rem;
            cursor: pointer;
            transition: background 0.15s;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .ac-item:last-child { border-bottom: none; }
        .ac-item:hover { background: rgba(0,229,255,0.06); }
        .ac-av-img, .ac-av-fallback {
            width: 28px; height: 28px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }
        .ac-av-fallback {
            background: rgba(255,255,255,0.06);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.4);
        }
        .ac-name {
            font-size: 0.9rem;
            color: #fff;
            font-weight: 500;
        }
        .gift-duration-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
        }
        .gift-duration-btn {
            padding: 0.65rem 0.8rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            color: rgba(255,255,255,0.75);
            font-family: 'Inter', sans-serif; font-weight: 600;
            font-size: 0.85rem; cursor: pointer;
            transition: all 0.2s;
        }
        .gift-duration-btn:hover { border-color: rgba(255,255,255,0.2); color: #fff; }
        .gift-duration-btn.active {
            background: linear-gradient(135deg, rgba(0,229,255,0.12), rgba(179,136,255,0.12));
            border-color: var(--secondary);
            color: var(--secondary);
        }
        .gift-summary {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 1rem 1.2rem;
            margin-bottom: 1.2rem;
        }
        .gift-summary-row {
            display: flex; justify-content: space-between;
            font-size: 0.88rem;
            padding: 0.4rem 0;
            color: rgba(255,255,255,0.7);
        }
        .gift-summary-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.05); }
        .gift-summary-total {
            font-family: 'Unbounded', cursive;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            padding-top: 0.6rem !important;
        }
        .gift-summary-total span:last-child {
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .gift-submit-btn {
            width: 100%;
            padding: 0.95rem;
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            border: none; border-radius: 12px;
            color: #000;
            font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,229,255,0.3);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .gift-submit-btn:hover { transform: scale(1.02); box-shadow: 0 6px 28px rgba(0,229,255,0.5); }
        .gift-modal-note {
            font-size: 0.72rem; color: rgba(255,255,255,0.4);
            text-align: center; margin-top: 0.9rem; line-height: 1.5;
        }
        @media (max-width: 480px) {
            .gift-duration-grid { grid-template-columns: 1fr 1fr; }
        }

        /* ─── BENEFITS ─── */
        .benefits-section {
            padding: clamp(2rem, 5vw, 4rem) var(--pad-x);
            position: relative; z-index: 10;
        }
        .section-label {
            font-family: 'Unbounded', cursive;
            font-size: clamp(1.3rem, 3.5vw, 2rem);
            font-weight: 700; text-align: center; margin-bottom: 0.6rem;
        }
        .section-label .section-icon {
            display: inline-flex; align-items: center; vertical-align: middle;
            margin-right: 0.4rem;
        }
        .section-label .section-text {
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .section-sub {
            text-align: center; color: rgba(255,255,255,0.5);
            font-size: clamp(0.85rem, 1.8vw, 1rem); margin-bottom: clamp(2rem, 4vw, 3.5rem);
            max-width: 500px; margin-left: auto; margin-right: auto;
        }
        .benefits-grid {
            max-width: 1200px; margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(1rem, 2vw, 1.5rem);
        }
        @media (max-width: 900px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }

        .benefit-card {
            background: linear-gradient(135deg, rgba(26,31,58,0.6), rgba(45,27,61,0.4));
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px; padding: clamp(1.5rem, 3vw, 2rem);
            transition: all 0.3s; position: relative; overflow: hidden;
            cursor: default;
        }
        .benefit-card::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(0,229,255,0.05), rgba(179,136,255,0.05));
            opacity: 0; transition: opacity 0.3s;
        }
        .benefit-card:hover { border-color: rgba(0,229,255,0.3); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
        .benefit-card:hover::after { opacity: 1; }
        .benefit-icon {
            margin-bottom: 1rem;
            display: flex; align-items: center;
        }
        .benefit-title {
            font-family: 'Unbounded', cursive;
            font-size: clamp(0.85rem, 1.8vw, 1rem);
            font-weight: 700; margin-bottom: 0.6rem;
            background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .benefit-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

        /* ─── COMPARISON TABLE ─── */
        .compare-section {
            padding: clamp(2rem, 5vw, 4rem) var(--pad-x);
            position: relative; z-index: 10;
        }
        .compare-wrap {
            max-width: 1200px; margin: 0 auto;
            background: linear-gradient(135deg, rgba(26,31,58,0.6), rgba(45,27,61,0.4));
            border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; overflow: hidden;
        }
        .compare-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .compare-scroll::-webkit-scrollbar { height: 4px; }
        .compare-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 2px; }
        .compare-scroll::-webkit-scrollbar-thumb { background: rgba(0,229,255,0.3); border-radius: 2px; }
        .compare-table { width: 100%; border-collapse: collapse; min-width: 520px; }
        .compare-table thead tr {
            background: rgba(0,0,0,0.25);
        }
        .compare-table th {
            padding: 1.2rem 1.5rem; text-align: center;
            font-family: 'Unbounded', cursive; font-size: 0.8rem; font-weight: 700;
            color: rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .compare-table th:first-child { text-align: left; color: rgba(255,255,255,0.4); font-size: 0.72rem; }
        .compare-table th.th-popular { color: var(--secondary); }
        .compare-table th.th-ultimate { color: var(--accent); }
        .compare-table td {
            padding: 1rem 1.5rem; text-align: center;
            font-size: 0.88rem; color: rgba(255,255,255,0.7);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .compare-table td:first-child { text-align: left; color: rgba(255,255,255,0.8); font-weight: 500; }
        .compare-table tr:last-child td { border-bottom: none; }
        .compare-table tbody tr:hover { background: rgba(255,255,255,0.03); }
        .compare-inline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            line-height: 1;
            vertical-align: middle;
        }
        .compare-check-yes,
        .compare-check-no {
            width: 17px;
            height: 17px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            vertical-align: -3px;
            flex-shrink: 0;
        }
        .compare-check-yes {
            background: linear-gradient(135deg, #00E5FF, #B388FF);
        }
        .compare-check-yes::before {
            content: '';
            display: block;
            width: 7px;
            height: 4px;
            border-left: 2px solid #000;
            border-bottom: 2px solid #000;
            transform: rotate(-45deg) translate(1px, -1px);
        }
        .compare-check-no {
            background: rgba(255,255,255,0.07);
        }
        .compare-check-no::before {
            content: '';
            display: block;
            width: 7px;
            height: 7px;
            background:
                linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.45) 45%, rgba(255,255,255,0.45) 55%, transparent 55%),
                linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.45) 45%, rgba(255,255,255,0.45) 55%, transparent 55%);
        }
        .compare-plan-premium,
        .compare-plan-ultimate {
            font-weight: 800;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .compare-plan-premium {
            background-image: linear-gradient(135deg, var(--secondary), var(--purple));
        }
        .compare-plan-ultimate {
            background-image: linear-gradient(135deg, var(--accent), var(--primary));
        }
        .compare-plan-icon-premium,
        .compare-plan-icon-ultimate {
            flex-shrink: 0;
            display: block;
        }
        .compare-table .td-popular { background: rgba(0,229,255,0.04); }
        .compare-table .td-popular-head { background: rgba(0,229,255,0.08); }

        @media (max-width: 680px) {
            .compare-table th, .compare-table td { padding: 0.75rem 0.9rem; font-size: 0.8rem; }
        }

        /* ─── TRUST BLOCK ─── */
        .testimonials-section {
            padding: clamp(2rem, 5vw, 4rem) var(--pad-x);
            position: relative; z-index: 10;
        }
        .testimonials-grid {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: clamp(1rem, 2vw, 1.5rem);
        }
        @media (max-width: 1200px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 540px) { .testimonials-grid { grid-template-columns: 1fr; } }

        .testimonial-card {
            background: linear-gradient(135deg, rgba(26,31,58,0.7), rgba(45,27,61,0.5));
            border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
            padding: clamp(1.2rem, 2.5vw, 2rem); transition: all 0.3s;
        }
        .testimonial-card:hover { border-color: rgba(179,136,255,0.3); transform: translateY(-3px); }
        .testimonial-icon { margin-bottom: 0.8rem; display: flex; justify-content: center; }

        /* ─── FAQ ─── */
        .faq-section {
            padding: clamp(2rem, 5vw, 4rem) var(--pad-x);
            position: relative; z-index: 10;
        }
        .faq-list { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
        .faq-item {
            background: linear-gradient(135deg, rgba(26,31,58,0.6), rgba(45,27,61,0.4));
            border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden;
            transition: border-color 0.3s;
        }
        .faq-item.open { border-color: rgba(0,229,255,0.25); }
        .faq-question {
            display: flex; align-items: center; justify-content: space-between;
            padding: 1.2rem 1.5rem; cursor: pointer; gap: 1rem;
            font-weight: 600; font-size: clamp(0.85rem, 1.8vw, 0.95rem);
            color: rgba(255,255,255,0.85); user-select: none;
        }
        .faq-question:hover { color: #fff; }
        .faq-icon {
            flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
            display: flex; align-items: center; justify-content: center;
            color: var(--secondary); font-size: 0.7rem; transition: all 0.3s;
        }
        .faq-item.open .faq-icon { background: rgba(0,229,255,0.12); border-color: rgba(0,229,255,0.3); transform: rotate(180deg); }
        .faq-answer {
            max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
            font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65;
        }
        .faq-item.open .faq-answer { max-height: 300px; }
        .faq-answer-inner { padding: 0 1.5rem 1.2rem; }

        /* ─── CTA BOTTOM ─── */
        .cta-section {
            padding: clamp(2rem, 5vw, 4rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
            position: relative; z-index: 10; text-align: center;
        }
        .cta-box {
            max-width: 760px; margin: 0 auto;
            background: linear-gradient(135deg, rgba(0,229,255,0.07), rgba(179,136,255,0.07), rgba(255,23,68,0.05));
            border: 1px solid rgba(0,229,255,0.2); border-radius: 28px;
            padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
            position: relative; overflow: hidden;
        }
        .cta-box::before {
            content: ''; position: absolute;
            top: -40%; left: -10%; width: 120%; height: 80%;
            background: radial-gradient(ellipse at center, rgba(0,229,255,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-box h2 {
            font-family: 'Unbounded', cursive;
            font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 900;
            margin-bottom: 0.8rem; line-height: 1.2;
        }
        .cta-box p { color: rgba(255,255,255,0.6); font-size: clamp(0.88rem, 1.8vw, 1rem); margin-bottom: 2rem; line-height: 1.6; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .cta-btn-primary {
            padding: 0.9rem 2.5rem; border-radius: 12px; border: none;
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            color: #000; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
            cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 20px rgba(0,229,255,0.3);
            display: inline-flex; align-items: center; gap: 0.5rem;
        }
        .cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,255,0.5); }
        .cta-btn-secondary {
            padding: 0.9rem 2rem; border-radius: 12px;
            background: transparent; border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.8); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem;
            cursor: pointer; transition: all 0.25s;
            display: inline-flex; align-items: center; gap: 0.5rem;
        }
        .cta-btn-secondary:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.35); color: #fff; }
        .cta-guarantee {
            margin-top: 1.2rem; font-size: 0.8rem; color: rgba(255,255,255,0.85);
            display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap;
        }
        .cta-guarantee-item { display: inline-flex; align-items: center; gap: 0.3rem; }

        /* ─── PAYMENT METHODS ─── */
        .payment-section {
            padding: 0 var(--pad-x) clamp(2rem, 4vw, 3rem);
            position: relative; z-index: 10;
        }
        .payment-inner { max-width: 600px; margin: 0 auto; text-align: center; }
        .payment-title { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 1rem; }
        .payment-icons { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; }
        .payment-icon {
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px; padding: 0.5rem 1rem;
            font-size: 0.82rem; color: rgba(255,255,255,1); font-weight: 600;
            display: flex; align-items: center; gap: 0.4rem;
            transition: background 0.25s; cursor: pointer;
        }
        .payment-icon:hover {
            background: rgba(0, 229, 255, 0.15);
            border-color: var(--secondary);
        }

        /* ─── BILLING TOGGLE MOBILE OVERRIDE ─── */
        @media (max-width: 680px) {
            .nav-links { display: none; }
            nav .search-bar { display: none; }
            .header-search-row { display: block; }
            .sub-hero { margin-top: calc(var(--header-h) + 54px) !important; }
            .mobile-nav { top: calc(var(--header-h) + 54px); }
            .sub-hero-perks { gap: clamp(0.75rem, 3vw, 1.5rem); }
            .billing-toggle { flex-direction: column; gap: 0.5rem; width: min(100%, 380px); border-radius: 20px; }
            .billing-option { width: 100%; justify-content: center; border-radius: 14px; }
            .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
            .plan-card.popular:hover { transform: translateY(-6px); }
            .benefits-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .compare-table th, .compare-table td { padding: 0.65rem 0.7rem; font-size: 0.78rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .cta-btn-primary, .cta-btn-secondary { width: 100%; max-width: 340px; }
            .payment-icons { gap: 0.5rem; }
        }
        @media (max-width: 420px) {
            .sub-hero-badge { font-size: 0.72rem; padding: 0.35rem 0.9rem; }
            .sub-hero-perks { gap: 0.6rem; }
            .billing-toggle { width: 100%; }
        }
        /* ─── AUTH MODAL ─── */
/* Auth modal */
/* Auth modal */
/* Auth modal */
        .auth-modal-overlay { display:none; position:fixed; inset:0; z-index:6000; background:rgba(0,0,0,0.75); backdrop-filter:blur(8px); align-items:center; justify-content:center; padding:1rem; animation:authOverlayIn .25s ease-out; transition:background-image .3s; }
        .auth-modal-overlay.open { display:flex; }
        @keyframes authOverlayIn { from { opacity:0; } to { opacity:1; } }
        .auth-modal {
            background:linear-gradient(180deg,rgba(15,20,42,0.99) 0%,rgba(10,14,26,0.99) 100%);
            border:1px solid rgba(255,255,255,0.08); border-radius:24px;
            padding:2.2rem 2rem 1.8rem; max-width:400px; width:100%;
            box-shadow:0 32px 80px rgba(0,0,0,0.7),0 0 0 1px rgba(255,255,255,0.04),0 0 120px rgba(0,229,255,0.03);
            position:relative; animation:authSlideUp .35s ease-out;
        }
        @keyframes authSlideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
        .auth-form-in { transition: opacity .70s ease; }
        .auth-modal-close { position:absolute; top:0.8rem; right:1rem; background:none; border:none; color:rgba(255,255,255,0.3); font-size:1.6rem; cursor:pointer; transition:color .2s; line-height:1; }
        .auth-modal-close:hover { color:#fff; }
        .auth-modal-logo { text-align:center; margin-bottom:0.3rem; }
        .auth-logo-img { height: 26px; width: auto; display: inline-block; }
        .auth-modal-sub { text-align:center; font-size:0.75rem; color:rgba(255,255,255,0.35); margin-bottom:1.5rem; letter-spacing:0.04em; }
        .auth-tabs { display:flex; gap:0; margin-bottom:1.2rem; border-radius:12px; overflow:hidden; border:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.03); }
        .auth-tab { flex:1; padding:0.6rem; background:transparent; border:none; color:rgba(255,255,255,0.4); font-family:'Inter',sans-serif; font-size:0.82rem; font-weight:600; cursor:pointer; transition:all .25s; }
        .auth-tab.active { background:rgba(255,255,255,0.08); color:#fff; }
        .auth-tab:hover:not(.active) { color:rgba(255,255,255,0.7); }
        .auth-field { margin-bottom:0.75rem; }
        .auth-field label { display:block; font-size:0.72rem; color:rgba(255,255,255,0.45); margin-bottom:0.35rem; font-weight:600; letter-spacing:0.03em; }
        .auth-input { width:100%; padding:0.65rem 0.85rem; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:11px; color:#fff; font-size:0.84rem; font-family:'Inter',sans-serif; outline:none; transition:border-color .2s,box-shadow .2s; box-sizing:border-box; }
        .auth-input:focus { border-color:var(--secondary); box-shadow:0 0 0 3px rgba(0,229,255,0.08); }
        .auth-input.error { border-color:rgba(255,23,68,0.5); }
        .auth-input:-webkit-autofill,
        .auth-input:-webkit-autofill:hover,
        .auth-input:-webkit-autofill:focus,
        .auth-input:-webkit-autofill:active { -webkit-text-fill-color:#fff !important; -webkit-box-shadow:0 0 0 1000px #101428 inset !important; box-shadow:0 0 0 1000px #101428 inset !important; transition:background-color 5000s ease-in-out 0s; font-family:'Inter',sans-serif !important; font-size:0.84rem !important; caret-color:#fff; }
        .auth-btn { width:100%; padding:0.7rem; background:linear-gradient(135deg,var(--primary),#ff5577); border:none; border-radius:11px; color:#fff; font-size:0.88rem; font-weight:700; cursor:pointer; font-family:'Inter',sans-serif; margin-top:0.5rem; transition:box-shadow .2s,transform .15s; }
        .auth-btn:hover { box-shadow:0 6px 20px rgba(255,23,68,0.35); transform:translateY(-1px); }
        .auth-btn:active { transform:translateY(0); }
        .auth-btn:disabled { opacity:0.5; cursor:not-allowed; transform:none; }
        .auth-link { background:none; border:none; color:var(--secondary); font-size:0.78rem; cursor:pointer; font-family:'Inter',sans-serif; padding:0; font-weight:500; }
        .auth-link:hover { text-decoration:underline; }
        .auth-checkbox { display:flex; align-items:flex-start; gap:0.6rem; margin:0.6rem 0 0.3rem; cursor:pointer; user-select:none; }
        .auth-checkbox input[type="checkbox"] { position:absolute; opacity:0; width:0; height:0; }
        .auth-checkbox .cb-box { width:15px; height:15px; flex-shrink:0; margin-top:2px; border-radius:4px; border:1.5px solid rgba(255,255,255,0.18); background:rgba(255,255,255,0.04); transition:border-color .15s, background .15s; position:relative; }
        .auth-checkbox:hover .cb-box { border-color:rgba(0,229,255,0.45); }
        .auth-checkbox .cb-box::after { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='1.5,5.5 4,8 8.5,2' fill='none' stroke='%2300e5ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/7px 7px no-repeat; opacity:0; transition:opacity .15s; }
        .auth-checkbox input[type="checkbox"]:checked ~ .cb-box { background:rgba(0,229,255,0.1); border-color:rgba(0,229,255,0.9); }
        .auth-checkbox input[type="checkbox"]:checked ~ .cb-box::after { opacity:1; }
        .auth-checkbox span { font-size:0.72rem; color:rgba(255,255,255,0.45); line-height:1.4; }
        .auth-checkbox a { color:var(--secondary); text-decoration:none; }
        .auth-checkbox a:hover { text-decoration:underline; }
        .auth-alert { display:none; background:rgba(255,23,68,0.08); border:1px solid rgba(255,23,68,0.2); border-radius:10px; padding:0.55rem 0.8rem; color:rgba(255,100,100,0.9); font-size:0.78rem; margin-bottom:0.7rem; line-height:1.4; }
        .auth-alert.visible { display:block; }
        .auth-divider { display:flex; align-items:center; gap:0.7rem; margin:0.6rem 0; }
        .auth-divider::before,.auth-divider::after { content:''; flex:1; height:1px; background:rgba(255,255,255,0.07); }
        .auth-divider span { font-size:0.7rem; color:rgba(255,255,255,0.25); }
        .auth-forgot { text-align:right; margin:-0.3rem 0 0.4rem; }
        .header-auth-btns { display:flex; align-items:center; gap:0.5rem; }
        .login-btn-header { display:flex; align-items:center; gap:0.4rem; padding:0 1.1rem; height:40px; background:linear-gradient(135deg,var(--primary),#ff5577); border:none; border-radius:8px; color:#fff; font-size:0.82rem; font-weight:700; cursor:pointer; font-family:'Inter',sans-serif; white-space:nowrap; transition:box-shadow .2s; }
        .login-btn-header:hover { box-shadow:0 4px 14px rgba(255,23,68,0.35); }
        .register-btn-header { display:flex; align-items:center; gap:0.4rem; padding:0 1.1rem; height:40px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:8px; color:rgba(255,255,255,0.8); font-size:0.82rem; font-weight:600; cursor:pointer; font-family:'Inter',sans-serif; white-space:nowrap; transition:all .2s; }
        .register-btn-header:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.2); color:#fff; }
        @media(max-width:480px) {
            .auth-modal { padding:1.5rem 1.3rem 1.3rem; border-radius:18px; }
            .header-auth-btns .register-btn-header { display:none; }
        }
        .header-auth-btns { display:flex; align-items:center; gap:0.5rem; }
        .login-btn-header { display:flex; align-items:center; gap:0.4rem; padding:0 1.1rem; height:40px; background:linear-gradient(135deg,var(--primary),#ff5577); border:none; border-radius:8px; color:#fff; font-size:0.82rem; font-weight:700; cursor:pointer; font-family:'Inter',sans-serif; white-space:nowrap; transition:box-shadow .2s; }
        .login-btn-header:hover { box-shadow:0 4px 14px rgba(255,23,68,0.35); }
        .register-btn-header { display:flex; align-items:center; gap:0.4rem; padding:0 1.1rem; height:40px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:8px; color:rgba(255,255,255,0.8); font-size:0.82rem; font-weight:600; cursor:pointer; font-family:'Inter',sans-serif; white-space:nowrap; transition:all .2s; }
        .register-btn-header:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.2); color:#fff; }
        @media(max-width:480px) {
            .auth-modal { padding:1.5rem 1.3rem 1.3rem; border-radius:18px; }
            .header-auth-btns .register-btn-header { display:none; }
        }
        .header-auth-btns { display:flex; align-items:center; gap:0.5rem; }
        .login-btn-header { display:flex; align-items:center; gap:0.4rem; padding:0 1.1rem; height:40px; background:linear-gradient(135deg,var(--primary),#ff5577); border:none; border-radius:8px; color:#fff; font-size:0.82rem; font-weight:700; cursor:pointer; font-family:'Inter',sans-serif; white-space:nowrap; transition:box-shadow .2s; }
        .login-btn-header:hover { box-shadow:0 4px 14px rgba(255,23,68,0.35); }
        .register-btn-header { display:flex; align-items:center; gap:0.4rem; padding:0 1.1rem; height:40px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:8px; color:rgba(255,255,255,0.8); font-size:0.82rem; font-weight:600; cursor:pointer; font-family:'Inter',sans-serif; white-space:nowrap; transition:all .2s; }
        .register-btn-header:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.2); color:#fff; }
        @media(max-width:480px) {
            .auth-modal { padding:1.5rem 1.3rem 1.3rem; border-radius:18px; }
            .header-auth-btns .register-btn-header { display:none; }
        }
        .header-auth-btns { display:flex; align-items:center; gap:0.5rem; }
        .login-btn-header { display:flex; align-items:center; gap:0.4rem; padding:0 1.1rem; height:40px; background:linear-gradient(135deg,var(--primary),#ff5577); border:none; border-radius:8px; color:#fff; font-size:0.82rem; font-weight:700; cursor:pointer; font-family:'Inter',sans-serif; white-space:nowrap; transition:box-shadow .2s; }
        .login-btn-header:hover { box-shadow:0 4px 14px rgba(255,23,68,0.35); }
        .register-btn-header { display:flex; align-items:center; gap:0.4rem; padding:0 1.1rem; height:40px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:8px; color:rgba(255,255,255,0.8); font-size:0.82rem; font-weight:600; cursor:pointer; font-family:'Inter',sans-serif; white-space:nowrap; transition:all .2s; }
        .register-btn-header:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.2); color:#fff; }
        @media(max-width:480px) {
            .auth-modal { padding:1.5rem 1.3rem 1.3rem; border-radius:18px; }
            .header-auth-btns .register-btn-header { display:none; }
        }
            .guest-burger { display:none; flex-direction:column; justify-content:center; align-items:center; width:40px; height:40px; cursor:pointer; gap:5px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:8px; flex-shrink:0; transition:background .2s; }
        .guest-burger:hover { background:rgba(255,255,255,0.1); }
        .guest-burger span { width:18px; height:2px; background:rgba(255,255,255,0.8); border-radius:2px; transition:all .3s; }
        .guest-burger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
        .guest-burger.open span:nth-child(2) { opacity:0; }
        .guest-burger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
        .guest-mobile-nav { display:none; position:fixed; top:calc(var(--header-h) + 54px); left:0; right:0; background:rgba(10,14,39,0.98); backdrop-filter:blur(24px); border-bottom:1px solid rgba(255,255,255,0.1); z-index:2100; padding:0.6rem var(--pad-x) 0.7rem; flex-direction:column; gap:0.4rem; animation:slideDown .25s ease-out; }
        .guest-mobile-nav.open { display:flex; }
        .guest-mobile-nav a { color:rgba(255,255,255,0.8); text-decoration:none; font-size:0.85rem; font-weight:500; padding:0.7rem 1rem; border-radius:10px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); display:flex; align-items:center; gap:0.5rem; transition:all .2s; }
        .guest-mobile-nav a:hover, .guest-mobile-nav a.active { color:var(--secondary); background:rgba(0,229,255,0.07); border-color:rgba(0,229,255,0.2); }
        .guest-mobile-nav .gmn-auth-row { display:flex; gap:0.5rem; margin-bottom:0.25rem; }
        .guest-mobile-nav .gmn-auth-row .login-btn-header,
        .guest-mobile-nav .gmn-auth-row .register-btn-header { flex:1; justify-content:center; }
        .guest-mobile-nav .gmn-sep { height:1px; background:rgba(255,255,255,0.07); margin:0.15rem 0; }
        @media(max-width:800px) { .header-auth-btns .guest-burger { display:flex; } .header-auth-btns .login-btn-header, .header-auth-btns .register-btn-header { display:none; } }
#headerAuthArea { display: flex; align-items: center; justify-content: flex-end; }
