/* ============================================================
   AUREVIANAFIL — Premium Console Gaming Destination
   Global stylesheet
   ============================================================ */

:root {
  --bg: #07070c;
  --bg-2: #0d0d18;
  --bg-3: #12121f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f4fb;
  --text-dim: #a8a8c0;
  --text-faint: #6d6d85;
  --accent: #7b5cff;
  --accent-2: #00e5c8;
  --accent-3: #ff4d94;
  --gold: #f4c869;
  --grad-cool: linear-gradient(135deg, #7b5cff 0%, #00e5c8 100%);
  --grad-warm: linear-gradient(135deg, #ff4d94 0%, #7b5cff 100%);
  --grad-gold: linear-gradient(135deg, #f4c869 0%, #ff9d54 100%);
  --radius: 22px;
  --radius-sm: 12px;
  --radius-lg: 34px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1280px;
  --font: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-display: "Clash Display", "Space Grotesk", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Ambient background ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(50% 40% at 15% 10%, rgba(123, 92, 255, 0.18), transparent 70%),
    radial-gradient(45% 45% at 85% 20%, rgba(0, 229, 200, 0.12), transparent 70%),
    radial-gradient(60% 50% at 60% 100%, rgba(255, 77, 148, 0.10), transparent 70%);
  z-index: -2; pointer-events: none;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  z-index: -1; pointer-events: none;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }
.section { padding: clamp(64px, 11vw, 160px) 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 600; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent-2); opacity: 0.6; }
.gradient-text { background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gradient-text.warm { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.02; font-weight: 600; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
p { color: var(--text-dim); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--text-dim); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--grad-cool); color: #08080f; box-shadow: 0 12px 40px -12px rgba(123, 92, 255, 0.7); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 55px -12px rgba(123, 92, 255, 0.9); }
.btn-ghost { border: 1px solid var(--border-strong); color: var(--text); background: var(--surface); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--accent-2); background: var(--surface-strong); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(7, 7, 12, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; letter-spacing: -0.01em; }
.brand .logo-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--grad-cool); display: grid; place-items: center;
  box-shadow: 0 8px 24px -8px rgba(123, 92, 255, 0.8);
}
.brand .logo-mark svg { width: 20px; height: 20px; }
.brand b { font-weight: 600; }
.brand span { color: var(--accent-2); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 16px; border-radius: 100px; font-size: 0.92rem; color: var(--text-dim);
  transition: color .3s, background .3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 80px 0 40px; position: relative; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { margin-top: 18px; max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-dim); padding: 6px 0; font-size: 0.95rem; transition: color .3s, transform .3s; }
.footer-col a:hover { color: var(--accent-2); transform: translateX(4px); }
.footer-bottom { margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-faint); }
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--text-dim); }

/* ---------- Cards / glass ---------- */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; width: 52px; height: 52px; z-index: 90;
  border-radius: 16px; background: var(--surface-strong); border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px); display: grid; place-items: center;
  opacity: 0; transform: translateY(20px) scale(0.8); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--accent); }
.to-top svg { width: 20px; height: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 120px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.orb-1 { width: 480px; height: 480px; background: var(--accent); top: -120px; right: -60px; }
.orb-2 { width: 420px; height: 420px; background: var(--accent-2); bottom: -140px; left: -80px; opacity: 0.35; }
.orb-3 { width: 300px; height: 300px; background: var(--accent-3); top: 40%; left: 45%; opacity: 0.25; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; width: min(var(--maxw), 92vw); margin-inline: auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px; padding: 8px 8px 8px 18px;
  border-radius: 100px; border: 1px solid var(--border-strong); background: var(--surface);
  font-size: 0.82rem; color: var(--text-dim); margin-bottom: 28px;
}
.hero-badge b { color: var(--text); font-weight: 600; }
.hero-badge .pill { background: var(--grad-cool); color: #08080f; font-weight: 700; padding: 4px 12px; border-radius: 100px; font-size: 0.72rem; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .line { display: block; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
.hero-stats .lbl { font-size: 0.8rem; color: var(--text-faint); letter-spacing: 0.05em; }

/* Hero visual — floating stacked cards */
.hero-visual { position: relative; height: 520px; }
.hero-card {
  position: absolute; border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2)); overflow: hidden; box-shadow: var(--shadow);
}
.hero-card .ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--text-faint); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-card .ph-grad { position: absolute; inset: 0; opacity: 0.5; }
.hero-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hc-1 { width: 62%; height: 74%; top: 4%; right: 0; z-index: 3; }
.hc-1 .ph-grad { background: var(--grad-cool); }
.hc-2 { width: 46%; height: 46%; bottom: 2%; left: 0; z-index: 2; }
.hc-2 .ph-grad { background: var(--grad-warm); }
.hc-3 { width: 34%; height: 30%; top: 8%; left: 6%; z-index: 4; }
.hc-3 .ph-grad { background: var(--grad-gold); }
.float { animation: float 7s ease-in-out infinite; }
.float.delay { animation-delay: -3.5s; }
.float.delay2 { animation-delay: -1.8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }

.badge-chip {
  position: absolute; z-index: 5; background: rgba(7,7,12,0.7); border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px); border-radius: 14px; padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; box-shadow: var(--shadow);
}
.badge-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); }
.chip-a { top: 12%; left: -6%; }
.chip-b { bottom: 14%; right: -4%; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { border-block: 1px solid var(--border); padding: 26px 0; overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-faint); display: flex; align-items: center; gap: 60px; white-space: nowrap; }
.marquee-track span::after { content: "◆"; color: var(--accent); font-size: 0.7rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   FEATURE / HIGHLIGHT trio (homepage headings)
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar { padding: 40px 34px; border-radius: var(--radius); position: relative; overflow: hidden; border: 1px solid var(--border); background: var(--surface); transition: transform .5s var(--ease), border-color .5s; }
.pillar:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.pillar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-cool); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.pillar:hover::before { transform: scaleX(1); }
.pillar .rank { font-family: var(--font-display); font-size: 3.4rem; line-height: 1; background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 18px; }
.pillar h3 { margin-bottom: 12px; }
.pillar p { font-size: 0.95rem; }
.pillar:nth-child(2)::before { background: var(--grad-warm); }
.pillar:nth-child(2) .rank { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; }
.pillar:nth-child(3)::before { background: var(--grad-gold); }
.pillar:nth-child(3) .rank { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; }

/* ---------- Section head ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 56px; flex-wrap: wrap; }
.section-head .st-title { max-width: 22ch; }
.section-head p { max-width: 44ch; }

/* ============================================================
   GAMES GRID (broken grid)
   ============================================================ */
.games-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.game-card {
  grid-column: span 3; border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1px solid var(--border); background: var(--bg-3); min-height: 260px;
  transition: transform .5s var(--ease), border-color .5s; display: flex; flex-direction: column; justify-content: flex-end;
}
.game-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.game-card .img-ph { position: absolute; inset: 0; overflow: hidden; }
.game-card .img-ph .grad { position: absolute; inset: 0; opacity: 0.85; transition: transform .8s var(--ease); }
.game-card .img-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.game-card:hover .img-ph .grad,
.game-card:hover .img-ph img { transform: scale(1.08); }
.game-card .img-ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,12,0.95) 8%, rgba(7,7,12,0.2) 55%, transparent); }
.game-card .body { position: relative; padding: 22px; z-index: 2; }
.game-card .plat { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 8px; }
.game-card h3 { font-size: 1.15rem; }
.game-card .genre { font-size: 0.82rem; color: var(--text-faint); margin-top: 6px; }
.game-card.feature { grid-column: span 6; min-height: 380px; }
.game-card.wide { grid-column: span 6; }
.game-card.tall { grid-column: span 3; min-height: 380px; }
.g-grad-1 { background: linear-gradient(135deg, #7b5cff, #3a1c9e); }
.g-grad-2 { background: linear-gradient(135deg, #00e5c8, #087a6b); }
.g-grad-3 { background: linear-gradient(135deg, #ff4d94, #a01e57); }
.g-grad-4 { background: linear-gradient(135deg, #f4c869, #c8791f); }
.g-grad-5 { background: linear-gradient(135deg, #54a0ff, #1c4fa0); }
.g-grad-6 { background: linear-gradient(135deg, #b06cff, #5c1c9e); }

/* ============================================================
   CONSOLES
   ============================================================ */
.consoles { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.console-card { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; background: var(--bg-3); transition: transform .5s var(--ease), border-color .5s; }
.console-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.console-card .visual { aspect-ratio: 3/4; position: relative; overflow: hidden; background: var(--bg-2); }
.console-card .visual .grad { position: absolute; inset: 0; opacity: 0.9; transition: transform .8s var(--ease); }
.console-card .visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.console-card:hover .visual .grad,
.console-card:hover .visual img { transform: scale(1.06); }
.console-card .visual .ph { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 20px; }
.console-card .visual .ph svg { width: 72px; height: 72px; opacity: 0.9; }
.console-card .info { padding: 24px; }
.console-card .brand-tag { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.console-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.console-card p { font-size: 0.88rem; }
.console-card .specs { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.console-card .specs span { font-size: 0.72rem; padding: 5px 11px; border-radius: 100px; border: 1px solid var(--border); color: var(--text-dim); }

/* ============================================================
   STATS / COUNTERS band
   ============================================================ */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat { text-align: center; padding: 40px 20px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--text-dim); font-size: 0.9rem; margin-top: 6px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(50px, 8vw, 90px); border: 1px solid var(--border); background: var(--bg-2); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(123,92,255,0.25), transparent 70%); }
.cta-band h2 { position: relative; margin-bottom: 20px; }
.cta-band p { position: relative; max-width: 52ch; margin: 0 auto 34px; }
.cta-band .hero-actions { position: relative; justify-content: center; margin-top: 0; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { padding: 180px 0 70px; position: relative; overflow: hidden; }
.page-hero .orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1; }
.page-hero .breadcrumb { font-size: 0.82rem; color: var(--text-faint); margin-bottom: 22px; }
.page-hero .breadcrumb a:hover { color: var(--accent-2); }
.page-hero h1 { max-width: 16ch; margin-bottom: 24px; }
.page-hero .lead { margin-top: 8px; }

/* ---------- Split / editorial ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; position: relative; }
.split-media .grad { position: absolute; inset: 0; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.split-media .ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.75); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; padding: 20px; }
.split h2 { margin-bottom: 20px; }
.feature-list { margin-top: 30px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .ic { width: 40px; height: 40px; border-radius: 12px; flex: none; background: var(--surface-strong); border: 1px solid var(--border); display: grid; place-items: center; }
.feature-list .ic svg { width: 20px; height: 20px; }
.feature-list h4 { font-size: 1.02rem; margin-bottom: 3px; }
.feature-list p { font-size: 0.9rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 26px; }
.review-card { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; background: var(--bg-3); transition: transform .5s var(--ease), border-color .5s; }
.review-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.review-card .cover { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.review-card .cover .grad { position: absolute; inset: 0; transition: transform .8s var(--ease); }
.review-card .cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.review-card:hover .cover .grad,
.review-card:hover .cover img { transform: scale(1.06); }
.review-card .cover .score { position: absolute; top: 16px; right: 16px; z-index: 2; width: 54px; height: 54px; border-radius: 14px; background: rgba(7,7,12,0.78); border: 1px solid var(--border-strong); backdrop-filter: blur(10px); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.review-card .body { padding: 26px; }
.review-card .plat { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 10px; }
.review-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.review-card p { font-size: 0.92rem; }
.review-card .verdict { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-faint); display: flex; justify-content: space-between; }
.review-card .verdict b { color: var(--gold); }

/* ============================================================
   FILTER TABS
   ============================================================ */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 46px; }
.tab { padding: 10px 20px; border-radius: 100px; border: 1px solid var(--border); background: var(--surface); font-size: 0.88rem; color: var(--text-dim); transition: .3s var(--ease); }
.tab:hover { border-color: var(--border-strong); color: var(--text); }
.tab.active { background: var(--grad-cool); color: #08080f; border-color: transparent; font-weight: 600; }
.hidden-card { display: none !important; }

/* ============================================================
   FORMS (contact)
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; color: var(--text-dim); letter-spacing: 0.03em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 18px; border-radius: 14px; background: var(--surface);
  border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 0.95rem;
  transition: border-color .3s, background .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--surface-strong); }
.field textarea { resize: vertical; min-height: 150px; }
.form-note { font-size: 0.82rem; color: var(--text-faint); margin-top: 6px; }
.form-msg { display: none; margin-top: 18px; padding: 16px 20px; border-radius: 14px; background: rgba(0,229,200,0.1); border: 1px solid rgba(0,229,200,0.3); color: var(--accent-2); font-size: 0.92rem; }
.form-msg.show { display: block; }

/* ---------- Contact info cards ---------- */
.contact-cards { display: grid; gap: 18px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.contact-item .ic { width: 46px; height: 46px; border-radius: 13px; flex: none; background: var(--grad-cool); display: grid; place-items: center; }
.contact-item .ic svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--text-dim); }
.contact-item a:hover { color: var(--accent-2); }

/* ============================================================
   FAQ / accordion
   ============================================================ */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 1.05rem; font-weight: 500; }
.faq-q .plus { width: 26px; height: 26px; flex: none; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent-2); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: .35s var(--ease); }
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; }
.faq-item.open .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 26px 24px; font-size: 0.95rem; }

/* ============================================================
   LEGAL / prose pages
   ============================================================ */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 48px 0 16px; }
.prose h3 { font-size: 1.2rem; margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 20px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--text-dim); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); }
.prose a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.legal-meta { padding: 20px 26px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface); margin-bottom: 40px; font-size: 0.88rem; color: var(--text-faint); }
.toc { position: sticky; top: 110px; }
.toc h4 { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.toc a { display: block; padding: 7px 0; color: var(--text-dim); font-size: 0.9rem; transition: color .3s, padding .3s; }
.toc a:hover { color: var(--accent-2); padding-left: 6px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 60px; }

/* cookie table */
.cookie-table { width: 100%; border-collapse: collapse; margin: 20px 0 30px; font-size: 0.9rem; }
.cookie-table th, .cookie-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.cookie-table th { color: var(--text-faint); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.cookie-table td { color: var(--text-dim); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(160%);
  width: min(680px, 92vw); z-index: 120; padding: 22px 26px; border-radius: var(--radius);
  background: rgba(13,13,24,0.9); border: 1px solid var(--border-strong); backdrop-filter: blur(20px);
  box-shadow: var(--shadow); display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  transition: transform .6s var(--ease);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { font-size: 0.88rem; flex: 1 1 300px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { padding: 11px 22px; font-size: 0.85rem; }

/* ============================================================
   MOMENTS GALLERY
   ============================================================ */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.moments-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  position: relative;
  background: var(--bg-3);
}
.moments-grid figure:nth-child(1),
.moments-grid figure:nth-child(4) { grid-column: span 2; aspect-ratio: 16/10; }
.moments-grid figure:nth-child(2),
.moments-grid figure:nth-child(3),
.moments-grid figure:nth-child(5),
.moments-grid figure:nth-child(6) { grid-column: span 2; }
.moments-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.moments-grid figure:hover img { transform: scale(1.05); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 420px; max-width: 560px; }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .games-grid .game-card, .games-grid .game-card.feature, .games-grid .game-card.wide { grid-column: span 6; }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .moments-grid figure,
  .moments-grid figure:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); flex-direction: column; align-items: stretch;
    background: rgba(10,10,18,0.97); backdrop-filter: blur(20px); padding: 100px 24px 40px; gap: 6px;
    transform: translateX(100%); transition: transform .5s var(--ease); border-left: 1px solid var(--border); }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 18px; font-size: 1.05rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-cta .btn { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .games-grid .game-card, .games-grid .game-card.feature, .games-grid .game-card.wide, .games-grid .game-card.tall { grid-column: 1 / -1; min-height: 240px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .moments-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
