        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;
            display: flex;
            flex-direction: column;
        }

        /* ─── 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: 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); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; overflow: visible; position: relative; 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 */
        .burger-btn { display: none !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;
        }
        .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; } }

        /* ─── 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; }

        /* ─── 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; }
        .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-emoji { font-size: 2.2rem; margin-bottom: 0.6rem; }
        .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); }

        /* ─── 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; }
        }

        .link-cyan { color: var(--secondary); }

        /* ─── RESPONSIVE ─── */
        @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; }
            .terms-hero { margin-top: calc(var(--header-h) + 54px) !important; }
            .mobile-nav { top: calc(var(--header-h) + 54px); }
        }
        @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; }
        @media (max-width: 480px) {
            .accept-buttons { flex-direction: column; align-items: center; }
            .accept-btn-primary, .accept-btn-secondary { width: 100%; max-width: 340px; }
        }

        /* ═══════════════════════════
           TERMS / PRIVACY PAGE STYLES
        ═══════════════════════════ */

        .terms-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; width: 100%;
        }
        .terms-hero::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,229,255,0.07) 0%, transparent 70%),
                        radial-gradient(ellipse 60% 40% at 20% 60%, rgba(179,136,255,0.05) 0%, transparent 60%);
            pointer-events: none;
        }
        .terms-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(0,229,255,0.04));
            border: 1px solid rgba(0,229,255,0.3);
            border-radius: 30px; padding: 0.4rem 1.2rem; margin-bottom: 1.5rem;
            font-size: 0.82rem; font-weight: 600; color: var(--secondary);
            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(0,229,255,0); }
            50% { box-shadow: 0 0 0 6px rgba(0,229,255,0.08); }
        }
        .terms-hero h1 {
            font-family: 'Unbounded', cursive;
            font-size: clamp(1.6rem, 6vw, 3.5rem);
            font-weight: 900; line-height: 1.1; margin-bottom: 1.2rem;
            background: linear-gradient(135deg, #fff 40%, rgba(0,229,255,0.85));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            word-break: break-word;
        }
        .terms-hero-desc {
            max-width: 620px; width: 100%; margin: 0 auto;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            color: rgba(255,255,255,0.6); line-height: 1.7;
        }
        .terms-updated {
            margin-top: 1.2rem; font-size: 0.8rem; color: rgba(255,255,255,0.3);
            display: flex; align-items: center; justify-content: center; gap: 0.4rem;
        }

        /* ─── TERMS BODY ─── */
        .terms-body {
            position: relative; z-index: 10;
            padding: clamp(1.5rem, 4vw, 3rem) var(--pad-x) clamp(2rem, 6vw, 5rem);
            width: 100%;
            flex: 1;
        }
        .terms-layout {
            max-width: 1200px; margin: 0 auto; width: 100%;
            display: grid; grid-template-columns: 260px 1fr;
            gap: clamp(1.5rem, 3vw, 3rem); align-items: start;
        }
        .terms-layout > * { min-width: 0; }
        @media (max-width: 900px) {
            .terms-layout { grid-template-columns: 1fr; }
            .terms-toc { position: static !important; }
        }
        .terms-section { scroll-margin-top: calc(var(--header-h) + 1.5rem); }
        @media (max-width: 680px) {
            .terms-section { scroll-margin-top: calc(var(--header-h) + 54px + 1.5rem); }
        }

        /* TOC */
        .terms-toc {
            position: sticky; top: calc(var(--header-h) + 1.5rem);
            background: linear-gradient(135deg, rgba(26,31,58,0.6), rgba(16,36,56,0.4));
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px; padding: 1.5rem;
        }
        .toc-title {
            font-family: 'Unbounded', cursive; font-size: 0.78rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.08em;
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            margin-bottom: 1rem;
        }
        .toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.2rem; }
        .toc-list a {
            display: block; padding: 0.45rem 0.7rem;
            color: rgba(255,255,255,0.55); text-decoration: none;
            font-size: 0.82rem; line-height: 1.4; border-radius: 8px;
            transition: all 0.25s; border: 1px solid transparent;
        }
        .toc-list a:hover { color: var(--secondary); background: rgba(0,229,255,0.06); border-color: rgba(0,229,255,0.15); }
        .toc-list a.toc-active { color: var(--secondary); background: rgba(0,229,255,0.1); border-color: rgba(0,229,255,0.25); }
        .toc-list a.toc-active .toc-num { color: var(--secondary); }
        .toc-num { font-size: 0.7rem; color: rgba(255,255,255,0.25); font-weight: 700; margin-right: 0.4rem; transition: color 0.25s; }

        /* Content */
        .terms-content { display: flex; flex-direction: column; gap: 2.5rem; }
        .terms-section {
            background: linear-gradient(135deg, rgba(26,31,58,0.5), rgba(16,36,56,0.3));
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 20px; padding: clamp(1rem, 3vw, 2.5rem);
            transition: border-color 0.3s;
        }
        .terms-section:hover { border-color: rgba(0,229,255,0.18); }
        .terms-section-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
        .section-title-wrap { min-width: 0; flex: 1; }
        .section-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 0.1rem; }
        .section-icon svg { width: 24px; height: 24px; }
        .section-num { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.25); margin-bottom: 0.25rem; }
        .section-title {
            font-family: 'Unbounded', cursive; font-size: clamp(0.95rem, 2.5vw, 1.15rem); font-weight: 700;
            background: linear-gradient(135deg, #fff, rgba(255,255,255,0.85));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.3;
            word-break: break-word; overflow-wrap: anywhere;
        }
        .terms-text { color: rgba(255,255,255,0.7); font-size: clamp(0.85rem, 1.8vw, 0.95rem); line-height: 1.8; }
        .terms-text p { margin-bottom: 1rem; }
        .terms-text p:last-child { margin-bottom: 0; }
        .terms-text strong { color: rgba(255,255,255,0.9); font-weight: 600; }
        .terms-text a { color: var(--secondary); text-decoration: none; }
        .terms-text a:hover { text-decoration: underline; }
        .terms-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin: 0.8rem 0; }
        .terms-list li { position: relative; padding-left: 1.4rem; color: rgba(255,255,255,0.7); font-size: clamp(0.85rem, 1.8vw, 0.95rem); line-height: 1.7; word-break: break-word; overflow-wrap: anywhere; }
        .terms-list li::before { content: '›'; color: var(--secondary); font-weight: 700; position: absolute; left: 0; }
        .terms-highlight {
            background: rgba(0,229,255,0.06); border: 1px solid rgba(0,229,255,0.18);
            border-left: 3px solid var(--secondary); border-radius: 0 10px 10px 0;
            padding: 1rem 1.2rem; margin: 1rem 0;
            font-size: clamp(0.83rem, 1.7vw, 0.92rem); color: rgba(255,255,255,0.75); line-height: 1.7;
        }
        .terms-highlight.warn { background: rgba(255,23,68,0.06); border-color: rgba(255,23,68,0.18); border-left-color: var(--primary); }
        .terms-highlight.note { background: rgba(179,136,255,0.06); border-color: rgba(179,136,255,0.18); border-left-color: var(--purple); }

        /* ─── ACCEPT BLOCK ─── */
        .terms-accept { position: relative; z-index: 10; padding: 0 var(--pad-x) clamp(3rem, 6vw, 5rem); width: 100%; overflow: hidden; }
        .terms-accept-box {
            max-width: 1200px; margin: 0 auto;
            background: linear-gradient(135deg, rgba(26,31,58,0.7), rgba(16,36,56,0.5));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px; padding: clamp(1.2rem, 4vw, 3rem);
            text-align: center; position: relative; overflow: hidden;
        }
        .terms-accept-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,229,255,0.05) 0%, transparent 70%); pointer-events: none; }
        .terms-accept-box h2 { font-family: 'Unbounded', cursive; font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 900; margin-bottom: 0.7rem; line-height: 1.25; word-break: break-word; }
        .terms-accept-box p { color: rgba(255,255,255,0.55); font-size: clamp(0.85rem, 1.8vw, 1rem); max-width: 520px; margin: 0 auto 2rem; line-height: 1.65; }
        .accept-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .accept-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);
        }
        .accept-btn-primary:hover { box-shadow: 0 8px 30px rgba(0,229,255,0.5); }
        .accept-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;
        }
        .accept-btn-secondary:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.35); color: #fff; }
        /* ─── 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; }
