  :root {
    --bg: #000000;
    --red: #ff6961;
    --bg2: #000000;
    --surface: #1c1c1e;
    --surface2: #2c2c2e;
    --frost-blue: #4fc8f8;
    --frost-light: #a8e6f8;
    --frost-deep: #1a7fc4;
    --frost-glow: #0a84ff;
    --green: #32d74b;
    --text: #f5f5f7;
    --muted: #86868b;
    --border: rgba(255,255,255,0.1);
    --star: #ffc94d;
    --lite: #bf5af2;
    --lite-deep: #8944ab;
    --gold: #ffd60a;
  }

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

  body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  html.gate-pending body, html.gate-banned body { visibility: hidden; }


  #gateScreen {
    visibility: visible;
    position: fixed; inset: 0; z-index: 999;
    background: var(--bg);
    display: none;
    align-items: center; justify-content: center;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    padding: 24px;
  }
  html.gate-pending #gateScreen, html.gate-banned #gateScreen { display: flex; }

  .gate-spinner {
    width: 30px; height: 30px;
    border: 3px solid rgba(255,255,255,0.12);
    border-top-color: var(--frost-blue);
    border-radius: 50%;
    animation: eaSpin 0.8s linear infinite;
  }
  @keyframes eaSpin { to { transform: rotate(360deg); } }
  html.gate-banned .gate-spinner { display: none; }

  .gate-pending-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--muted);
  }
  html.gate-banned .gate-pending-text { display: none; }

  .gate-banned-content { display: none; flex-direction: column; align-items: center; gap: 14px; max-width: 420px; }
  html.gate-banned .gate-banned-content { display: flex; }
  .gate-banned-title {
    font-size: 24px; font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--red);
  }
  .gate-banned-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .gate-banned-reason {
    font-size: 13px;
    color: var(--red);
    background: rgba(255,105,97,0.08);
    border: 1px solid rgba(255,105,97,0.4);
    border-radius: 980px;
    padding: 8px 18px;
  }
  .gate-banned-id { display: none; font-size: 12px; letter-spacing: 0.3px; color: var(--muted); }
  .gate-banned-id.visible { display: block; }

  #cursor-glow {
    position: fixed; left: 0; top: 0;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,200,248,0.07) 0%, rgba(79,200,248,0.03) 40%, transparent 70%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.35s ease;
    mix-blend-mode: screen;
  }

  #scroll-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: transparent; pointer-events: none; }
  #scroll-bar { height: 100%; width: 0%; background: var(--frost-blue); will-change: width; }

  .topo-bg, #particles { display: none; }

  nav {
    position: fixed; top: 0; left: 50%; transform: translateX(-50%); z-index: 100;
    width: 100%; max-width: 100%; height: 72px;
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    background: rgba(0,0,0,0.6);
    border: 1px solid transparent;
    border-bottom-color: var(--border);
    border-radius: 0;
    overflow: hidden;
    transition: width 0.45s cubic-bezier(0.22,1,0.36,1), max-width 0.45s cubic-bezier(0.22,1,0.36,1),
                top 0.45s cubic-bezier(0.22,1,0.36,1), border-radius 0.45s ease,
                background 0.3s, border-color 0.3s;
  }
  nav.nav-scrolled {
    top: 12px;
    width: calc(100% - 32px);
    max-width: 1160px;
    border-color: var(--border);
    border-radius: 980px;
    background: rgba(20,20,22,0.82);
  }
  .nav-inner { position: relative; height: 100%; display: flex; align-items: center; padding: 0 40px; }
  .nav-logo {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 18px; font-weight: 700; letter-spacing: -0.3px;
    color: var(--text); text-decoration: none;
  }
  .nav-logo-icon { width: 20px; height: 20px; }
  .nav-logo span { color: var(--text); }
  .nav-links { display: flex; justify-content: center; align-items: center; gap: 32px; list-style: none; flex: 1; min-width: 0; }
  .nav-links a { color: var(--muted); font-size: 13.5px; font-weight: 500; text-decoration: none; letter-spacing: 0.1px; transition: color 0.25s ease; }
  .nav-links a:hover { color: var(--text); }
  .nav-links a.active { color: var(--frost-blue); }
  .nav-links a.nav-link-partner, .nav-mobile-menu a.nav-link-partner { color: var(--gold); }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .nav-hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 28px; height: 22px; background: none; border: none; cursor: pointer; padding: 0;
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%); z-index: 101;
  }
  .nav-hamburger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-logo-mobile {
    display: none; align-items: center; gap: 8px;
    font-size: 17px; font-weight: 700; letter-spacing: -0.3px; color: var(--text); text-decoration: none;
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  }
  .nav-logo-mobile img { width: 19px; height: 19px; }
  .nav-logo-mobile span { color: var(--text); }
  .nav-mobile-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 100;
    background: rgba(10,10,12,0.98); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 8px 24px 16px;
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a, .nav-mobile-menu button {
    color: var(--text); text-decoration: none; font-size: 15px; font-weight: 500;
    padding: 14px 0; border-bottom: 1px solid var(--border);
    background: none; border-left: none; border-right: none; border-top: none;
    border-radius: 0; box-shadow: none; text-align: left; width: 100%;
    cursor: pointer; font-family: inherit;
  }
  .nav-mobile-menu a:last-child, .nav-mobile-menu button:last-child { border-bottom: none; }
  .nav-cta {
    background: var(--frost-blue); color: #06121c;
    padding: 9px 20px; border-radius: 980px;
    font-weight: 600; font-size: 13.5px;
    border: none; cursor: pointer;
    font-family: inherit;
    text-decoration: none; letter-spacing: 0.1px;
    transition: filter 0.2s, transform 0.15s;
  }
  .nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
  .nav-cta--lite {
    display: inline-block;
    background: transparent; color: var(--lite);
    border: 1px solid rgba(191,90,242,0.5);
  }
  .nav-cta--lite:hover { background: rgba(191,90,242,0.1); transform: translateY(-1px); }
  .nav-cta--lite.in-lite { border-color: var(--lite); }
  .nav-signin-btn {
    display: inline-flex; align-items: center;
    font-family: inherit; font-size: 13px; font-weight: 600;
    color: var(--muted); background: rgba(255,255,255,0.05);
    border: 1px solid var(--border); border-radius: 980px; cursor: pointer;
    padding: 8px 16px; text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }
  .nav-signin-btn img { display: none; }
  .nav-signin-btn:hover { color: var(--text); border-color: var(--border-strong, rgba(255,255,255,0.24)); background: rgba(255,255,255,0.09); }
  .nav-signin-btn.loading { opacity: 0.6; pointer-events: none; }
  .nav-signin-btn.is-logged-in { color: var(--frost-blue); }

  .hero {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 110px clamp(36px, 6vw, 110px) 60px;
    text-align: center;
    overflow: hidden;
  }
  .hero-glow {
    position: absolute; top: 18%; left: 50%; transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse, rgba(79,200,248,0.09) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 980px;
    padding: 7px 16px 7px 10px;
    font-size: 12.5px; font-weight: 500;
    color: var(--muted); letter-spacing: 0.1px;
    margin-bottom: 32px;
  }
  .hero-badge .dot-wrap { position: relative; display: inline-flex; }
  .hero-badge .dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }
  .online-tooltip {
    position: absolute; bottom: calc(100% + 12px); left: 50%;
    transform: translate(-50%, 4px);
    width: 190px;
    background: var(--surface2);
    border: 1px solid var(--border); border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    opacity: 0; pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    text-transform: none; letter-spacing: normal;
    z-index: 20;
    cursor: default;
  }
  .online-tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--surface2); }
  .hero-badge:hover .online-tooltip { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
  .online-tooltip-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 500; color: var(--muted); }
  .online-tooltip-row + .online-tooltip-row { margin-top: 8px; }
  .online-tooltip-row strong { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }
  h1 {
    font-size: clamp(52px, 8.5vw, 108px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -3px;
    margin-bottom: 26px;
    text-wrap: balance;
  }
  h1 .frost-word { display: block; color: var(--frost-blue); }
  h1 .sub-word { display: block; color: var(--muted); font-size: 0.4em; font-weight: 600; letter-spacing: -1px; margin-top: 10px; }
  .hero-desc { font-size: 19px; color: var(--muted); max-width: 540px; line-height: 1.55; margin-bottom: 44px; }
  .hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }
  .btn-primary {
    background: var(--frost-blue); color: #06121c;
    padding: 16px 38px; border-radius: 980px;
    font-weight: 600; font-size: 16px;
    text-decoration: none; letter-spacing: 0.1px;
    transition: filter 0.2s, transform 0.15s;
    font-family: inherit;
    display: inline-flex; align-items: center; gap: 8px;
    border: none; cursor: pointer;
  }
  .btn-primary::before { content: none; }
  .btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
  .btn-primary:active { transform: translateY(0) scale(0.98); }
  .btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 16px 38px; border-radius: 980px;
    font-weight: 600; font-size: 16px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.05); transform: translateY(-1px); }
  .hero-version { font-size: 13px; color: var(--muted); margin-top: 22px; }

  .preview-screen {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 90px clamp(36px, 6vw, 110px) 40px;
  }
  .preview-section { position: relative; z-index: 1; padding: 0 0 56px; display: flex; justify-content: center; }
  .preview-frame {
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 960px; width: 100%;
    box-shadow: 0 40px 120px -20px rgba(0,0,0,0.8);
  }
  .preview-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 85%, var(--bg)); pointer-events: none; z-index: 2; }
  .preview-glow { display: none; }

  .preview-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
  .preview-slide {
    position: absolute; inset: 0;
    opacity: 0; pointer-events: none; z-index: 0;
    transform: scale(1.045) translateX(var(--slide-offset, 0));
    filter: blur(7px);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.6s cubic-bezier(0.22,1,0.36,1);
    will-change: opacity, transform, filter;
  }
  .preview-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; transform: scale(1) translateX(0); filter: blur(0); }
  .preview-slide-video { --slide-offset: -36px; height: 100%; }
  .preview-slide-image { --slide-offset: 36px; height: 100%; }
  .preview-slide-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .preview-nav {
    position: absolute; top: 50%; z-index: 5;
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5); cursor: pointer;
    transform: translateY(-50%);
    transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .preview-nav svg { width: 18px; height: 18px; }
  .preview-nav:hover { background: rgba(0,0,0,0.55); color: #fff; border-color: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.06); }
  .preview-nav-next { right: 16px; }
  .preview-nav-prev { left: 16px; }
  .preview-nav[hidden] { display: none; }
  @media(max-width:600px){ .preview-nav { width: 36px; height: 36px; } .preview-nav svg { width: 15px; height: 15px; } }

  .hero-video { position: relative; background: #000; line-height: 0; height: 100%; }
  .hero-video video { width: 100%; height: 100%; display: block; object-fit: cover; }

  .hero-video-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1);
    width: 76px; height: 76px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--frost-blue); color: #06121c;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 40px -6px rgba(79,200,248,0.55), 0 0 0 8px rgba(79,200,248,0.12);
    transition: transform 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.2s ease, background 0.2s ease;
    z-index: 3;
  }
  .hero-video-play svg { width: 28px; height: 28px; margin-left: 4px; }
  .hero-video-play:hover { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 16px 48px -6px rgba(79,200,248,0.65), 0 0 0 10px rgba(79,200,248,0.16); }
  .hero-video.started .hero-video-play { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(0.8); }

  .hero-video-controls {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
    display: flex; align-items: center; gap: 12px;
    padding: 28px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .hero-video.started .hero-video-controls { opacity: 1; pointer-events: auto; }

  .hero-video-btn {
    flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: none; cursor: pointer;
    background: transparent; color: #fff; opacity: 0.85;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.15s ease, background 0.15s ease;
  }
  .hero-video-btn:hover { opacity: 1; background: rgba(255,255,255,0.12); }
  .hero-video-btn svg { width: 17px; height: 17px; }

  .hero-video-time { flex-shrink: 0; font-size: 12px; font-variant-numeric: tabular-nums; color: rgba(255,255,255,0.8); }

  .hero-video-progress { flex: 1 1 auto; position: relative; height: 20px; display: flex; align-items: center; cursor: pointer; }
  .hero-video-progress-track { position: relative; width: 100%; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.22); overflow: visible; }
  .hero-video-progress-buffered { position: absolute; top: 0; left: 0; height: 100%; width: 0%; border-radius: 4px; background: rgba(255,255,255,0.32); }
  .hero-video-progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; border-radius: 4px; background: var(--frost-blue); }
  .hero-video-progress-handle {
    position: absolute; top: 50%; left: 0%; width: 12px; height: 12px; border-radius: 50%;
    background: var(--frost-blue); transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 0 0 4px rgba(79,200,248,0.2);
    transition: transform 0.15s ease;
  }
  .hero-video-progress:hover .hero-video-progress-handle,
  .hero-video-progress:focus-visible .hero-video-progress-handle { transform: translate(-50%, -50%) scale(1); }
  .hero-video-progress:focus-visible { outline: none; }
  .hero-video-progress:focus-visible .hero-video-progress-track { box-shadow: 0 0 0 2px rgba(79,200,248,0.5); }

  @media(max-width:600px){
    .hero-video-play { width: 60px; height: 60px; }
    .hero-video-play svg { width: 22px; height: 22px; }
    .hero-video-time { display: none; }
    .hero-video-controls { padding: 20px 12px 12px; gap: 8px; }
  }
  .stats-bar {
    position: relative; z-index: 1;
    display: flex; justify-content: center; gap: 0;
    margin: 0 auto; width: 100%; max-width: 900px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    overflow: hidden;
  }
  .stat-item { flex: 1; padding: 38px 24px; text-align: center; border-right: 1px solid var(--border); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-size: 36px; font-weight: 700; color: var(--frost-blue); letter-spacing: -1px; font-variant-numeric: tabular-nums; }
  .stat-label { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
  section { position: relative; z-index: 1; }
  .section-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--frost-blue); margin-bottom: 16px; }
  h2 { font-size: clamp(32px, 5vw, 54px); font-weight: 700; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px; text-wrap: balance; }
  h2 .accent { color: var(--frost-blue); }
  .section-desc { font-size: 17px; color: var(--muted); line-height: 1.6; max-width: 480px; }
  .features-section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(36px, 6vw, 110px) 60px; max-width: 1380px; margin: 0 auto; }
  .features-header { text-align: center; margin-bottom: 68px; }
  .features-header .section-desc { margin: 0 auto; }
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: 24px; overflow: hidden; border: 1px solid var(--border); }
  .feature-card { background: var(--surface); padding: 44px 36px; transition: background 0.2s; position: relative; overflow: hidden; }
  .feature-card:hover { background: var(--surface2); }
  .feature-card::before { content: none; }
  .feature-icon { width: 46px; height: 46px; background: var(--surface2); border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--frost-blue); margin-bottom: 22px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.2px; }
  .feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
  #reviews { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
  .reviews-teaser { padding: 90px clamp(36px, 6vw, 110px) 60px; max-width: 1380px; margin: 0 auto; width: 100%; }
  .reviews-teaser-header { text-align: center; margin-bottom: 56px; }
  .reviews-teaser-header .section-desc { margin: 0 auto; }
  .reviews-grid-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
  .review-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 26px; position: relative; display: flex; flex-direction: column; }
  .review-card::before { content: none; }
  .review-card.is-lite { border-color: rgba(191,90,242,0.3); }
  .review-lite-tag {
    align-self: flex-start; display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 10px; border-radius: 980px; margin-bottom: 10px;
    background: rgba(191,90,242,0.14); color: var(--lite); font-size: 10.5px; font-weight: 700; letter-spacing: 0.2px;
  }
  .review-head { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
  .review-name-col { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
  .lite-badge {
    align-self: flex-start; display: inline-flex; align-items: center;
    padding: 3px 10px; border-radius: 980px;
    background: rgba(191,90,242,0.14); color: var(--lite); font-size: 10.5px; font-weight: 700; font-style: normal;
    letter-spacing: 0.1px; white-space: nowrap;
  }
  .review-avatar, .review-avatar-anon { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
  .review-avatar { object-fit: cover; border: 1px solid var(--border); }
  .review-avatar-anon { display: flex; align-items: center; justify-content: center; background: var(--surface2); color: var(--text); font-weight: 700; font-size: 15px; }
  .review-name { font-weight: 700; font-size: 14px; overflow-wrap: anywhere; }
  .review-stars { color: var(--star); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
  .review-fps { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); margin-bottom: 10px; }
  .review-fps strong { color: var(--green); font-weight: 700; font-variant-numeric: tabular-nums; }
  .review-fps-icon { display: flex; align-items: center; color: var(--green); flex-shrink: 0; }
  .review-fps-icon svg { width: 14px; height: 14px; }
  .review-comment { font-size: 13px; color: var(--muted); line-height: 1.6; overflow-wrap: anywhere; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .review-age { font-size: 11.5px; color: var(--muted); opacity: 0.75; margin-top: 12px; }
  .review-latest-badge { position: absolute; top: 14px; right: 14px; padding: 3px 10px; border-radius: 980px; background: rgba(50,215,75,0.14); color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: 0.3px; }
  .reviews-teaser-cta { text-align: center; }
  .reviews-view-more { color: var(--frost-blue); text-decoration: none; font-size: 15px; font-weight: 600; border-bottom: 1px solid transparent; transition: border-color 0.2s, color 0.2s; }
  .reviews-view-more:hover { border-color: var(--frost-blue); }
  @media(max-width:900px){ .reviews-grid-teaser { grid-template-columns: repeat(2, 1fr); } }
  @media(max-width:600px){
    .reviews-grid-teaser { grid-template-columns: 1fr; }
    .reviews-grid-teaser .review-card:nth-child(n+3) { display: none; }
  }
  #mods, #performance { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
  .split-section { padding: 90px clamp(36px, 6vw, 110px) 60px; max-width: 1380px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 80px; }
  .split-section.reverse { flex-direction: row-reverse; }
  .split-text { flex: 1; }
  .split-visual { flex: 1; position: relative; }
  .split-visual .visual-box { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 44px; position: relative; overflow: hidden; }
  .split-visual .visual-box::before { content: none; }
  .mock-row { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 12px; background: rgba(255,255,255,0.03); margin-bottom: 8px; border: 1px solid var(--border); }
  .mock-dot { width: 8px; height: 8px; border-radius: 50%; }
  .mock-dot.blue { background: var(--frost-blue); }
  .mock-dot.green { background: var(--green); }
  .mock-dot.muted { background: var(--muted); }
  .mock-label { font-size: 13px; color: var(--text); flex: 1; }
  .mock-badge { font-size: 11px; padding: 3px 9px; border-radius: 980px; background: rgba(79,200,248,0.14); color: var(--frost-blue); font-weight: 600; }
  .mock-badge.green { background: rgba(50,215,75,0.14); color: var(--green); }
  .divider { height: 1px; background: var(--border); margin: 0 48px; }
  .section-gap { height: 0; min-height: 0; }
  .section-gap-small { height: 0; min-height: 0; }
  .cta-section { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 90px clamp(36px, 6vw, 110px) 60px; text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { display: none; }
  .cta-section h2 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 20px; }
  .cta-section p { color: var(--muted); font-size: 18px; max-width: 480px; margin: 0 auto 48px; }
  .lite-promo { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 90px clamp(36px, 6vw, 110px) 60px; text-align: center; scroll-margin-top: 90px; }
  .modal-box--download { max-width: 640px; }
  .modal-box--download .modal-title { margin-bottom: 28px; }
  .dl-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .dl-choice-tile {
    position: relative; overflow: hidden;
    width: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    padding: 30px 22px 26px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
    color: var(--text); text-decoration: none; cursor: pointer;
    font-family: inherit; font-size: 17px; font-weight: 700;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
  }
  .dl-choice-tile:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.05); transform: translateY(-3px); text-decoration: none; }
  .dl-choice-tile svg { width: 46px; height: 46px; display: block; color: var(--text); }
  .dl-choice-tile svg.dl-os-icon { display: none; }
  .dl-choice-tile svg.dl-os-icon.active { display: block; }
  .dl-choice-tile-sub { font-size: 12.5px; font-weight: 500; color: var(--muted); }
  #heroDownloadBtn svg.dl-os-icon { display: none; width: 17px; height: 17px; flex-shrink: 0; }
  #heroDownloadBtn svg.dl-os-icon.active { display: block; }
  .dl-choice-tile-lite { border-color: rgba(191,90,242,0.35); background: rgba(191,90,242,0.06); }
  .dl-choice-tile-lite:hover { border-color: var(--lite); background: rgba(191,90,242,0.12); }
  .dl-choice-tile-outdated { overflow: visible; border-color: var(--red); }
  .dl-choice-tile-outdated:hover { border-color: var(--red); }
  .dl-lite-row {
    margin-top: 18px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(191,90,242,0.35); border-radius: 18px;
    background: rgba(191,90,242,0.06);
    color: var(--text); text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
  }
  .dl-lite-row:hover { border-color: var(--lite); background: rgba(191,90,242,0.12); transform: translateY(-2px); text-decoration: none; }
  .dl-lite-main { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
  .dl-lite-name { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; }
  .dl-lite-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #fff; background: var(--lite); border-radius: 999px; padding: 3px 9px; }
  .dl-lite-desc { font-size: 12.5px; font-weight: 500; color: var(--muted); line-height: 1.5; }
  .dl-lite-desc strong { color: var(--lite); font-weight: 700; }
  .dl-lite-cta { flex-shrink: 0; font-size: 13.5px; font-weight: 700; color: var(--lite); white-space: nowrap; }
  @media(max-width:600px){ .dl-lite-row { flex-direction: column; align-items: flex-start; } }
  .dl-alt-links { margin-top: 18px; font-size: 12px; color: var(--muted); text-align: center; }
  .dl-alt-links a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; margin: 0 6px; transition: color 0.2s; }
  .dl-alt-links a:hover { color: var(--text); }
  .dl-alt-links-row + .dl-alt-links-row { margin-top: 6px; }
  .dl-lite-ribbon {
    position: absolute; top: 12px; right: -30px;
    width: 110px; padding: 4px 0; transform: rotate(35deg);
    background: var(--lite); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  @media(max-width:600px){ .dl-choice-grid { grid-template-columns: 1fr; } }
  .lite-promo .section-eyebrow { color: var(--lite); }
  .lite-promo h2 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 18px; }
  .lite-accent { color: var(--lite); }
  .lite-promo-desc { color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 520px; margin: 0 auto 52px; }
  .lite-compare { max-width: 620px; margin: 0 auto 48px; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; background: var(--surface); }
  .lite-compare-row { display: grid; grid-template-columns: 1.15fr 1fr 1fr; align-items: stretch; border-bottom: 1px solid var(--border); }
  .lite-compare-row:last-child { border-bottom: none; }
  .lite-compare-cell { padding: 16px 18px; font-size: 14.5px; display: flex; align-items: center; justify-content: center; }
  .lite-compare-cell:first-child { justify-content: flex-start; text-align: left; color: var(--muted); }
  .lite-col-frost { color: var(--text); }
  .lite-col-lite { color: var(--lite); font-weight: 600; background: rgba(191,90,242,0.06); border-left: 1px solid rgba(191,90,242,0.2); }
  .lite-compare-head .lite-compare-cell { font-size: 12.5px; font-weight: 700; letter-spacing: 0.4px; padding: 18px; text-transform: uppercase; }
  .lite-compare-head .lite-col-lite { flex-direction: column; gap: 6px; }
  .lite-head-badge { font-size: 9.5px; letter-spacing: 1px; color: #fff; background: var(--lite); padding: 3px 10px; border-radius: 999px; }
  .btn-lite-promo {
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--lite);
    color: #fff; text-decoration: none; overflow: hidden;
    font-family: inherit; font-size: 16px; font-weight: 600;
    padding: 16px 38px; border-radius: 980px;
    transition: filter 0.2s, transform 0.2s;
  }
  .btn-lite-promo:hover { filter: brightness(1.1); transform: translateY(-1px); }
  .btn-lite-promo:active { transform: translateY(0) scale(0.98); }
  .btn-lite-promo::after { content: none; }
  .lite-promo-note { margin-top: 20px; font-size: 13px; color: var(--muted); }
  .partner-promo-section { padding: 20px clamp(24px, 6vw, 80px) 160px; }
  .partner-promo-card {
    max-width: 900px; margin: 0 auto;
    border: 1px solid var(--border); border-radius: 28px;
    background: var(--surface);
    padding: 56px clamp(28px,6vw,64px);
    text-align: center;
  }
  .partner-promo-card .section-eyebrow { color: var(--gold); }
  .partner-promo-card h2 { font-size: clamp(28px, 4.5vw, 42px); margin-bottom: 16px; }
  .partner-promo-accent { color: var(--gold); }
  .partner-promo-desc { color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 560px; margin: 0 auto 34px; }
  .btn-partner-promo {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold);
    color: #1a0f00; text-decoration: none;
    font-family: inherit; font-size: 15.5px; font-weight: 600;
    padding: 15px 34px; border-radius: 980px;
    transition: filter 0.2s, transform 0.2s;
  }
  .btn-partner-promo:hover { filter: brightness(1.08); transform: translateY(-1px); }
  .btn-partner-promo:active { transform: translateY(0) scale(0.98); }
  @media(max-width:600px){
    .lite-compare-cell { padding: 13px 10px; font-size: 12.5px; }
    .lite-compare-head .lite-compare-cell { font-size: 11px; padding: 14px 10px; }
  }
  footer { border-top: 1px solid var(--border); padding: 60px 48px 40px; position: relative; z-index: 1; }
  .footer-inner { max-width: 1160px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px 56px; position: relative; }
  .footer-brand { flex: 1 1 200px; }
  .footer-col { flex: 1 1 130px; }
  .footer-logo { font-size: 18px; font-weight: 700; color: var(--frost-blue); margin-bottom: 12px; letter-spacing: -0.2px; }
  .footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.5; }
  .footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); margin-bottom: 16px; font-weight: 600; }
  .footer-col a, .footer-link-btn { display: block; color: var(--text); font-size: 14px; text-decoration: none; margin-bottom: 10px; opacity: 0.75; transition: opacity 0.2s; }
  .footer-col a:hover, .footer-link-btn:hover { opacity: 1; }
  .footer-link-btn { background: none; border: none; padding: 0; font-family: inherit; cursor: pointer; text-align: left; }
  .footer-social-icons { display: flex; align-items: center; gap: 12px; }
  .footer-social-icons a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); margin-bottom: 0; opacity: 1; transition: border-color 0.2s, transform 0.15s, background 0.2s; }
  .footer-social-icons a:hover { border-color: rgba(255,255,255,0.28); background: var(--surface2); transform: translateY(-2px); }
  .footer-social-icons img { width: 18px; height: 18px; object-fit: contain; opacity: 0.85; transition: opacity 0.2s; }
  .footer-social-icons a:hover img { opacity: 1; }
  .footer-bottom { max-width: 1160px; margin: 48px auto 0; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 28px; font-size: 13px; color: var(--muted); }

  .reveal { opacity: var(--p, 0); transform: translateY(calc((1 - var(--p, 0)) * 28px)); will-change: opacity, transform; }
  .reveal-left { opacity: var(--p, 0); transform: translateX(calc((1 - var(--p, 0)) * -40px)); will-change: opacity, transform; }
  .reveal-right { opacity: var(--p, 0); transform: translateX(calc((1 - var(--p, 0)) * 40px)); will-change: opacity, transform; }
  .reveal-scale { opacity: var(--p, 0); transform: scale(calc(0.96 + var(--p, 0) * 0.04)) translateY(calc((1 - var(--p, 0)) * 18px)); will-change: opacity, transform; }

  .btn-download { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
  .btn-inner { display: flex; align-items: center; justify-content: center; gap: 10px; pointer-events: none; transition: transform 0.42s cubic-bezier(0.4,0,0.2,1), opacity 0.36s ease; }
  .btn-inner--loading { position: absolute; inset: 0; transform: translateY(110%); opacity: 0; }
  .btn-download.is-loading .btn-inner--default { transform: translateY(-110%); opacity: 0; }
  .btn-download.is-loading .btn-inner--loading { transform: translateY(0); opacity: 1; }
  .btn-dl-icon { font-size: 1.1em; display: inline-block; transition: transform 0.25s ease; }
  .btn-download:hover .btn-dl-icon { transform: translateY(3px); }
  .btn-spinner { width: 16px; height: 16px; border: 2.5px solid rgba(0,0,0,0.28); border-top-color: #000; border-radius: 50%; animation: spin 0.65s linear infinite; flex-shrink: 0; }
  @keyframes spin { to { transform: rotate(360deg); } }

  .fps-entry { margin-bottom: 22px; }
  .fps-entry:last-of-type { margin-bottom: 0; }
  .fps-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
  .fps-label { font-size: 13px; color: var(--muted); }
  .fps-value { font-size: 13px; color: var(--text); font-variant-numeric: tabular-nums; font-weight: 600; }
  .fps-label.is-frost, .fps-value.is-frost { color: var(--frost-blue); }
  .fps-label.is-lite, .fps-value.is-lite { color: var(--lite); }
  .fps-track { height: 6px; background: var(--surface2); border-radius: 4px; overflow: hidden; }
  .fps-fill { height: 100%; border-radius: 4px; width: 0; transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1); }
  .fps-fill--muted { background: #3a3a3c; }
  .fps-fill--frost { background: var(--frost-blue); }
  .fps-fill--lite { background: var(--lite); }
  .fps-fill.active { width: var(--w); }

  @media(max-width:900px){
    .nav-inner { padding: 0 20px; }
    .nav-links { display: none; }
    .split-section, .split-section.reverse { flex-direction: column; padding: 60px 24px; gap: 40px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
  }
  @media(max-width:600px){ .features-grid { grid-template-columns: 1fr; } }
  @media(max-width:700px){
    .nav-inner { display: none; }
    .nav-hamburger, .nav-logo-mobile { display: flex; }
    #scroll-progress { display: none; }
    nav, nav.nav-scrolled {
      width: 100% !important; max-width: 100% !important; top: 0 !important;
      border-radius: 0 !important; border-color: var(--border) !important;
      background: rgba(0,0,0,0.9) !important; transition: none !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
  }

  .modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease, visibility 0s linear 0.35s;
  }
  .modal-overlay.active {
    opacity: 1; visibility: visible; pointer-events: auto;
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    transition: opacity 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease, visibility 0s linear 0s;
  }
  .modal-box {
    position: relative; width: 100%; max-width: 440px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 90px -20px rgba(0,0,0,0.7);
    transform: scale(0.92) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  }
  .modal-overlay.active .modal-box { transform: scale(1) translateY(0); opacity: 1; transition: transform 0.45s cubic-bezier(0.16,1,0.3,1) 0.05s, opacity 0.35s ease 0.05s; }
  .modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--surface2); border: none;
    color: var(--muted); font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, color 0.15s;
  }
  .modal-close:hover { background: var(--bg-hover, #3a3a3c); color: var(--text); }
  .modal-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
  .modal-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 24px; }

  .version-choices { display: flex; gap: 10px; margin-bottom: 10px; }
  .version-card {
    position: relative; flex: 1;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface2);
    cursor: pointer;
    padding: 16px 12px;
    font-weight: 600; font-size: 15px; letter-spacing: 0.1px;
    color: var(--text);
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .version-card:active { transform: scale(0.98); }
  .version-card--vulkan.selected { border-color: var(--green); background: rgba(50,215,75,0.08); color: var(--green); }
  .version-card--vulkan:hover { border-color: var(--green); }
  .version-card--opengl.selected { border-color: var(--frost-blue); background: rgba(79,200,248,0.08); color: var(--frost-blue); }
  .version-card--opengl:hover { border-color: var(--frost-blue); }
  .version-perf-note { font-size: 12px; color: var(--muted); text-align: center; margin: 0 0 20px; }

  .version-select-wrap { position: relative; margin-bottom: 22px; }
  .version-select {
    width: 100%; appearance: none; -webkit-appearance: none;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 40px 14px 16px;
    font-size: 14px; font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.15s ease;
  }
  .version-select:hover, .version-select:focus { border-color: rgba(255,255,255,0.28); outline: none; }
  .version-select-wrap::after { content: '▾'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; font-size: 13px; }

  .btn-version-download { display: flex; align-items: center; justify-content: center; width: 100%; opacity: 0.4; pointer-events: none; transition: opacity 0.2s ease; }
  .btn-version-download.unlocked { opacity: 1; pointer-events: auto; }
  .btn-version-download.just-unlocked, .btn-version-download.clicked { transform: scale(0.98); }

  .promo-toast {
    position: fixed; z-index: 150;
    left: 24px; bottom: 24px; max-width: 360px;
    background: var(--surface2);
    border: 1px solid rgba(79,200,248,0.35); border-radius: 20px;
    padding: 18px 40px 18px 20px;
    display: flex; align-items: flex-start; gap: 12px;
    box-shadow: 0 20px 60px -12px rgba(0,0,0,0.6), 0 0 24px rgba(79,200,248,0.08);
    transform: translateX(-130%); opacity: 0; pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease;
  }
  .promo-toast.show { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .promo-toast-body { display: flex; flex-direction: column; gap: 10px; }
  .promo-toast-text { font-size: 13.5px; color: var(--text); line-height: 1.5; }
  .promo-toast-text strong { color: var(--frost-blue); }
  .promo-toast-cta {
    align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
    background: var(--frost-blue); color: #06121c;
    font-size: 13px; font-weight: 700; text-decoration: none;
    padding: 8px 16px; border-radius: 980px;
    transition: filter 0.2s;
  }
  .promo-toast-cta:hover { filter: brightness(1.1); }
  .promo-toast-close { position: absolute; top: 10px; right: 12px; background: none; border: none; color: var(--muted); font-size: 18px; line-height: 1; cursor: pointer; padding: 4px; }
  .promo-toast-close:hover { color: var(--text); }
  @media(max-width:600px){ .promo-toast { left: 16px; right: 16px; bottom: 16px; max-width: none; } }

  .poll-toast {
    position: fixed; z-index: 150;
    left: 24px; bottom: 24px; max-width: 320px;
    background: var(--surface2);
    border: 1px solid rgba(255,214,10,0.4); border-radius: 20px;
    padding: 18px 40px 18px 20px;
    display: flex; align-items: flex-start; gap: 12px;
    box-shadow: 0 20px 60px -12px rgba(0,0,0,0.6), 0 0 24px rgba(255,214,10,0.06);
    transform: translateX(-130%); opacity: 0; pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease, bottom 0.3s ease;
  }
  .poll-toast.show { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .poll-toast-body { display: flex; flex-direction: column; gap: 10px; }
  .poll-toast-text { font-size: 13.5px; color: var(--text); line-height: 1.5; }
  .poll-toast-text strong { color: var(--gold); }
  .poll-toast-cta {
    align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold); color: #1a0f00;
    font-size: 13px; font-weight: 700; border: none; cursor: pointer;
    padding: 8px 16px; border-radius: 980px;
    transition: filter 0.2s;
  }
  .poll-toast-cta:hover { filter: brightness(1.08); }
  .poll-toast-close { position: absolute; top: 10px; right: 12px; background: none; border: none; color: var(--muted); font-size: 18px; line-height: 1; cursor: pointer; padding: 4px; }
  .poll-toast-close:hover { color: var(--text); }
  @media(max-width:600px){ .poll-toast { left: 16px; right: 16px; max-width: none; } }

  .modal-box--poll { max-width: 480px; }
  .poll-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
  .poll-option {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    background: var(--surface2); border: 1.5px solid var(--border); border-radius: 18px;
    padding: 18px 12px; cursor: pointer; min-height: 96px;
    font-family: inherit; color: var(--text);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
  }
  @keyframes pollOptionIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
  .poll-options.animate-in .poll-option { animation: pollOptionIn 0.4s cubic-bezier(0.16,1,0.3,1) both; }
  .poll-options.animate-in .poll-option:nth-child(1) { animation-delay: 0.04s; }
  .poll-options.animate-in .poll-option:nth-child(2) { animation-delay: 0.09s; }
  .poll-options.animate-in .poll-option:nth-child(3) { animation-delay: 0.14s; }
  .poll-options.animate-in .poll-option:nth-child(4) { animation-delay: 0.19s; }
  .poll-option:hover { border-color: rgba(255,214,10,0.5); background: rgba(255,214,10,0.06); transform: translateY(-2px); }
  .poll-option.selected { border-color: var(--gold); background: rgba(255,214,10,0.1); }
  .poll-option-icon { width: 34px; height: 34px; object-fit: contain; }
  .poll-option-label { font-size: 13.5px; font-weight: 700; letter-spacing: 0.2px; }
  .poll-option-pct { display: none; font-size: 18px; font-weight: 700; color: var(--gold); font-variant-numeric: tabular-nums; }
  .poll-option-bar { position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: rgba(255,255,255,0.06); }
  .poll-option-bar-fill { height: 100%; width: 0%; background: var(--gold); transition: width 0.7s cubic-bezier(0.22,1,0.36,1); }
  .poll-option.voted { cursor: default; }
  .poll-option.voted:hover { transform: none; background: var(--surface2); border-color: var(--border); }
  .poll-option.voted.winner { border-color: var(--gold); background: rgba(255,214,10,0.08); }
  .poll-note { text-align: center; font-size: 11.5px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
  .poll-submit-btn {
    width: 100%; padding: 14px; border: none; border-radius: 980px; cursor: pointer;
    font-family: inherit; font-size: 14.5px; font-weight: 700;
    background: var(--gold); color: #1a0f00;
    transition: filter 0.2s, opacity 0.2s;
  }
  .poll-submit-btn:hover { filter: brightness(1.06); }
  .poll-submit-btn:disabled { opacity: 0.4; cursor: not-allowed; }
  @keyframes pollThanksIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
  .poll-thanks { display: none; text-align: center; font-size: 15px; font-weight: 700; color: var(--gold); padding: 4px 0 2px; animation: pollThanksIn 0.5s cubic-bezier(0.16,1,0.3,1) both; }
