*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --bg: #0a0918;
    --surface: #12102a;
    --surface-2: #1a1740;
    --surface-3: #211d4a;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --text: #f0ecff;
    --text-2: rgba(240,236,255,0.55);
    --text-3: rgba(240,236,255,0.3);
    --accent-orange: #f59e0b;
    --accent-amber: #fbbf24;
    --accent-purple: #a855f7;
    --accent-violet: #7c3aed;
    --accent-grad: linear-gradient(135deg, #f59e0b 0%, #f97316 45%, #c026d3 100%);
    --accent-grad-2: linear-gradient(135deg, #7c3aed, #a855f7);
    --green: #22c55e;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-xs: 8px;
  }

  html { font-size: 16px; }

  body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    max-width: 540px;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 80px;
    position: relative;
  }

  body::before {
    content: '';
    position: fixed;
    top: -120px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* ========== NAVBAR ========== */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(10,9,24,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hamburger {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-2);
    border-radius: var(--radius-xs);
    transition: all 0.2s;
  }
  .hamburger:hover { background: rgba(255,255,255,0.05); color: var(--text); }
  .hamburger svg { width: 20px; height: 18px; }

  .brand {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.03em;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .nav-right { display: flex; gap: 8px; }

  .nav-btn {
    padding: 8px 16px;
    border-radius: var(--radius-xs);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
  }

  .nav-btn.ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text-2);
    border: 1px solid var(--border);
  }
  .nav-btn.ghost:hover { background: rgba(255,255,255,0.1); color: var(--text); }

  .nav-btn.primary {
    background: var(--accent-grad);
    color: #fff;
    box-shadow: 0 2px 12px rgba(245,158,11,0.25);
  }
  .nav-btn.primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,158,11,0.35); }

  /* ========== MAIN CONTENT ========== */
  .content { padding: 16px; display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }

  /* ========== HERO BANNER ========== */
  .hero-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
  }

  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-3);
    transition: all 0.3s;
    cursor: pointer;
  }
  .dot.active {
    width: 20px;
    border-radius: 3px;
    background: var(--accent-grad);
  }

  /* ========== PROMO CARDS ========== */
  .promo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .promo-card {
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
  }

  .promo-card:first-child::before { background: var(--accent-grad); }
  .promo-card:last-child::before { background: var(--accent-grad-2); }

  .promo-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .promo-icon {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .promo-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }

  .promo-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-amber);
  }

  .promo-card:last-child .promo-value { color: var(--accent-purple); }

  /* ========== LUCKY WHEEL BANNER ========== */
  .lucky-banner {
    position: relative;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(168,85,247,0.08));
    border: 1px solid rgba(124,58,237,0.2);
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.25s;
    overflow: hidden;
  }

  .lucky-banner:hover {
    border-color: rgba(124,58,237,0.35);
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(168,85,247,0.12));
  }

  .lucky-banner::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(168,85,247,0.15), transparent 70%);
    pointer-events: none;
  }

  .lucky-icon {
    width: 46px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-grad-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(124,58,237,0.3);
  }

  .lucky-text { flex: 1; }

  .lucky-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .lucky-sub {
    font-size: 12px;
    color: var(--text-2);
  }

  .lucky-arrow {
    color: var(--text-3);
    font-size: 18px;
  }

  /* ========== MARQUEE ========== */
  .marquee-wrapper {
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
  }

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 46px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee-wrapper::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
  .marquee-wrapper::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }

  .marquee-track {
    display: flex;
    gap: 32px;
    animation: scroll 20s linear infinite;
    width: max-content;
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
  }

  .marquee-item .dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(34,197,94,0.4);
  }

  .marquee-item strong { color: var(--accent-amber); font-weight: 700; }

  /* ========== CATEGORY TABS ========== */
  .category-section { overflow: visible; }

  .cat-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px;
  }
  .cat-scroll::-webkit-scrollbar { display: none; }

  .cat-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 72px;
    padding: 12px 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
  }

  .cat-tab:hover {
    border-color: var(--border-hover);
    background: var(--surface-2);
  }

  .cat-tab.active {
    border-color: rgba(124,58,237,0.4);
    background: linear-gradient(180deg, rgba(124,58,237,0.12), rgba(124,58,237,0.04));
    box-shadow: 0 0 20px rgba(124,58,237,0.08);
  }

  .cat-icon {
    font-size: 20px;
    line-height: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cat-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: none;
  }

  .cat-tab.active .cat-icon-text {
    background: var(--accent-grad-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .cat-icon-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-2);
    transition: color 0.2s;
  }

  .cat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    transition: color 0.2s;
  }

  .cat-tab.active .cat-label { color: var(--text-2); }

  /* ========== GAMES SECTION ========== */
  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .section-title {
    font-size: 17px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
  }

  .section-actions { display: flex; gap: 6px; }

  .pill-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-2);
  }
  .pill-btn:hover { border-color: var(--border-hover); color: var(--text); }
  .pill-btn.active {
    background: var(--accent-grad-2);
    border-color: transparent;
    color: #fff;
  }

  /* ========== GAME GRID ========== */
  .game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .game-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
    background: var(--surface);
    border: 1px solid var(--border);
  }

  .game-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  }

  .game-thumb {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
  }

  .game-thumb-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .game-thumb-bg.has-img {
    font-size: 0;
  }

  .game-thumb-bg.t1 { background: linear-gradient(135deg, #e74c8b, #a83279); }
  .game-thumb-bg.t2 { background: linear-gradient(135deg, #f97316, #b45309); }
  .game-thumb-bg.t3 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
  .game-thumb-bg.t4 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
  .game-thumb-bg.t5 { background: linear-gradient(135deg, #10b981, #047857); }
  .game-thumb-bg.t6 { background: linear-gradient(135deg, #ef4444, #b91c1c); }
  .game-thumb-bg.t7 { background: linear-gradient(135deg, #06b6d4, #0e7490); }
  .game-thumb-bg.t8 { background: linear-gradient(135deg, #f59e0b, #d97706); }

  .game-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
  }
  .badge-epic { background: rgba(168,85,247,0.9); color: #fff; }
  .badge-new { background: rgba(34,197,94,0.9); color: #fff; }
  .badge-hot { background: rgba(239,68,68,0.9); color: #fff; }

  .game-fav {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.2s;
  }
  .game-fav:hover { background: rgba(0,0,0,0.6); transform: scale(1.1); }
  .game-fav svg { width: 14px; height: 14px; color: rgba(255,255,255,0.7); }
  .game-fav.liked svg { color: #ef4444; fill: #ef4444; }

  .game-info {
    padding: 10px 10px 12px;
  }

  .game-name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text);
  }

  .game-studio {
    font-size: 10px;
    color: var(--text-3);
    margin-top: 2px;
    font-weight: 500;
  }

  /* ========== GAME CARD HOVER OVERLAY ========== */
  .game-thumb::after {
    content: '▶';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 1;
    pointer-events: none;
  }

  .game-card:hover .game-thumb::after {
    opacity: 1;
  }

  /* ========== BOTTOM NAV ========== */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 540px;
    display: flex;
    align-items: stretch;
    background: rgba(10,9,24,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border);
    z-index: 50;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 0 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: none;
    border: none;
    font-family: inherit;
    position: relative;
  }

  .nav-item svg { width: 22px; height: 22px; color: var(--text-3); transition: color 0.2s; }
  .nav-item span { font-size: 10px; font-weight: 600; color: var(--text-3); transition: color 0.2s; }

  .nav-item.active svg { color: var(--accent-amber); }
  .nav-item.active span { color: var(--accent-amber); }
  .nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--accent-grad);
    border-radius: 0 0 2px 2px;
  }

  .nav-item:hover svg { color: var(--text-2); }
  .nav-item:hover span { color: var(--text-2); }

  .nav-center-btn {
    position: relative;
    top: -16px;
  }

  .nav-center-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245,158,11,0.35);
    transition: all 0.25s;
  }

  .nav-center-btn:hover .nav-center-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(245,158,11,0.45);
  }

  .nav-center-icon svg { width: 24px; height: 24px; color: #fff !important; }

  /* ========== FAB ========== */
  .fab {
    position: fixed;
    bottom: 90px;
    right: max(16px, calc(50vw - 254px));
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 40;
    box-shadow: 0 4px 20px rgba(34,197,94,0.35);
    transition: all 0.25s;
    border: none;
  }
  .fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(34,197,94,0.45); }
  .fab svg { width: 24px; height: 24px; color: #fff; }

  .fab-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ef4444;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg);
  }

  }

  /* ========== ANIMATIONS ========== */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-in {
    animation: fadeInUp 0.4s cubic-bezier(0.16,1,0.3,1) backwards;
  }

  .delay-1 { animation-delay: 0.05s; }
  .delay-2 { animation-delay: 0.1s; }
  .delay-3 { animation-delay: 0.15s; }
  .delay-4 { animation-delay: 0.2s; }
  .delay-5 { animation-delay: 0.25s; }
  .delay-6 { animation-delay: 0.3s; }

  /* ========== LOGIN POPUP ========== */
  .login-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 3, 15, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 200;
    animation: popFadeIn 0.3s ease;
  }
  .login-backdrop.show { display: flex; align-items: center; justify-content: center; }
  @keyframes popFadeIn { from { opacity: 0; } to { opacity: 1; } }

  .login-popup {
    position: relative; z-index: 201;
    width: 400px; max-width: calc(100vw - 32px);
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    animation: popSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 24px 80px -12px rgba(0,0,0,0.6), 0 0 120px -40px rgba(168, 85, 247, 0.15);
  }
  @keyframes popSlideUp {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .login-header {
    position: relative; display: flex; align-items: center; height: 56px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(245, 158, 11, 0.12) 100%);
    border-bottom: 1px solid var(--border);
  }
  .login-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: var(--accent-grad); opacity: 0.4;
  }

  .tab-group { display: flex; height: 100%; flex: 1; }
  .tab {
    flex: 1; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.25s;
    position: relative; color: var(--text-2); background: transparent; border: none;
    font-family: inherit; letter-spacing: -0.01em;
  }
  .tab.active { color: var(--text); }
  .tab.active::after {
    content: ''; position: absolute; bottom: 0; left: 24px; right: 24px;
    height: 2px; background: var(--accent-grad); border-radius: 2px 2px 0 0;
  }
  .tab:not(.active):hover { color: rgba(240, 236, 255, 0.7); }

  .close-btn {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer; color: var(--text-2);
    transition: all 0.2s; flex-shrink: 0; border-left: 1px solid var(--border);
  }
  .close-btn:hover { color: var(--text); background: rgba(255,255,255,0.04); }
  .close-btn svg { width: 18px; height: 18px; stroke-width: 2; }

  .login-body { padding: 28px 24px 24px; }
  .input-group { position: relative; margin-bottom: 14px; }
  .input-label {
    display: block; font-size: 12px; font-weight: 600; color: var(--text-2);
    margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .input-wrapper {
    display: flex; align-items: center; background: var(--surface-2);
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: all 0.25s; height: 52px;
  }
  .input-wrapper:focus-within {
    border-color: rgba(168, 120, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(168, 120, 255, 0.08);
  }
  .phone-prefix {
    display: flex; align-items: center; gap: 8px; padding: 0 14px; height: 100%;
    border-right: 1px solid var(--border); flex-shrink: 0; cursor: pointer; transition: background 0.2s;
  }
  .phone-prefix:hover { background: rgba(255,255,255,0.03); }
  .flag { font-size: 18px; line-height: 1; }
  .prefix-code { font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 500; color: var(--text); }
  .prefix-arrow { color: var(--text-2); font-size: 10px; margin-left: 2px; }
  .input-icon { display: flex; align-items: center; justify-content: center; width: 48px; flex-shrink: 0; color: var(--text-3); }
  .input-icon svg { width: 18px; height: 18px; opacity: 0.5; }

  input[type="tel"], input[type="password"], input[type="text"] {
    flex: 1; height: 100%; background: transparent; border: none; outline: none;
    color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px; font-weight: 500; letter-spacing: -0.01em; padding: 0 14px;
  }
  input::placeholder { color: var(--text-3); font-weight: 400; }

  .toggle-pass {
    display: flex; align-items: center; justify-content: center; width: 48px; height: 100%;
    background: none; border: none; cursor: pointer; color: var(--text-3); transition: color 0.2s; flex-shrink: 0;
  }
  .toggle-pass:hover { color: var(--text-2); }
  .toggle-pass svg { width: 18px; height: 18px; }

  .forgot-row { display: flex; justify-content: flex-end; margin-bottom: 24px; margin-top: 4px; }
  .forgot-link {
    font-size: 13px; font-weight: 600; color: var(--accent-orange);
    text-decoration: none; cursor: pointer; transition: all 0.2s; position: relative;
  }
  .forgot-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
    background: var(--accent-orange); transition: width 0.25s ease;
  }
  .forgot-link:hover::after { width: 100%; }

  .cta-btn {
    width: 100%; height: 52px; border: none; border-radius: var(--radius);
    background: var(--accent-grad); color: #fff; font-family: inherit;
    font-size: 16px; font-weight: 700; cursor: pointer; position: relative;
    overflow: hidden; transition: all 0.3s; box-shadow: 0 4px 20px -4px rgba(245, 158, 11, 0.35);
  }
  .cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 32px -4px rgba(245, 158, 11, 0.4); }
  .cta-btn span { position: relative; z-index: 1; }
  @keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
  .cta-btn::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    animation: shimmer 3s ease-in-out infinite; z-index: 1;
  }

  .divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
  .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .divider span { font-size: 12px; font-weight: 500; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }

  .social-row { display: flex; gap: 12px; }
  .social-btn {
    flex: 1; height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface-2);
    color: var(--text-2); cursor: pointer; transition: all 0.25s; font-family: inherit; font-size: 13px; font-weight: 600;
  }
  .social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .social-btn:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.04); color: var(--text); transform: translateY(-1px); }

  .register-form { display: none; }
  .login-form { display: block; }

  @media (max-width: 440px) {
    .login-popup { border-radius: 16px; }
    .login-body { padding: 24px 20px 20px; }
    .social-btn span { display: none; }
    .social-btn { gap: 0; }
  }


/* ========== HERO BANNER ========== */
.hero-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.hero-slides {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  flex-shrink: 0;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== SECTION PROVIDER LOGOS ========== */
.section-provider-logo {
  height: 18px;
  width: auto;
  max-width: 60px;
  margin-right: 6px;
  vertical-align: middle;
  object-fit: contain;
}
