:root {
  --c-bg: #0b0a1f;
  --c-bg-2: #141137;
  --c-surface: #1a1742;
  --c-line: rgba(255,255,255,.08);
  --c-text: #f5f3ff;
  --c-mute: #b9b4d6;
  --c-orange: #ff6b1a;
  --c-orange-2: #ffb347;
  --c-indigo: #4b2fa8;
  --c-cyan: #00e5ff;
  --c-pink: #ff3d8a;
  --c-grad: linear-gradient(135deg,#ff6b1a 0%, #ff3d8a 50%, #4b2fa8 100%);
  --c-grad-soft: linear-gradient(135deg, rgba(255,107,26,.18), rgba(75,47,168,.25));
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-1: 0 10px 30px -10px rgba(0,0,0,.55);
  --shadow-2: 0 30px 60px -30px rgba(255,61,138,.45);
  --container: 1240px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-orange-2); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 .6em;
  overflow-wrap: break-word;
  word-break: break-word;
}
h1 { font-size: clamp(2rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
p { margin: 0 0 1em; color: var(--c-mute); }
section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 520px) { .container { padding: 0 16px; } }

main { flex: 1; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.btn--primary { background: var(--c-grad); color: #fff; box-shadow: var(--shadow-2); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 35px 70px -25px rgba(255,107,26,.65); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--c-text); border: 1px solid var(--c-line); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }
.btn .ic { width: 18px; height: 18px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-orange-2);
  padding: 8px 14px;
  border: 1px solid rgba(255,107,26,.35);
  border-radius: 999px;
  background: rgba(255,107,26,.08);
  margin-bottom: 6px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-orange); box-shadow: 0 0 12px var(--c-orange); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }

.grad-text {
  background: linear-gradient(135deg,#ff6b1a,#ff3d8a 40%,#00e5ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(11,10,31,.72);
  border-bottom: 1px solid var(--c-line);
  overflow: visible;
  transition: background .3s var(--ease);
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; }
.brand svg { width: 38px; height: 38px; }
.brand:hover { color: #fff; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: 15px; position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--c-grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-grad); color: #fff; font-weight: 800; font-size: 12px;
  box-shadow: 0 8px 20px -8px rgba(255,61,138,.6);
}

/* Burger toggle */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-line);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1220px) {
  .burger { display: block; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 64px));
    z-index: 100;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 32px;
    background: linear-gradient(160deg, #0b0a1f 0%, #1a1742 100%);
    border-top: 1px solid var(--c-line);
    box-shadow: 0 18px 40px rgba(0,0,0,.34);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s;
  }

  .nav a {
    width: 100%;
    padding: 16px 0;
    font-size: 22px;
    text-align: left;
    border-bottom: 1px solid var(--c-line);
  }
  .nav a::after { display: none; }
  .nav .age-badge {
    align-self: flex-start;
    margin-top: 22px;
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  body[data-nav-open="true"] { overflow: hidden; }
}

/* Hero */
.hero {
  position: relative; isolation: isolate;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  background-image: linear-gradient(125deg, rgba(11,10,31,.85) 20%, rgba(75,47,168,.55) 60%, rgba(255,107,26,.45) 100%), url('/assets/img/hero/hero-bg.avif');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 50% at 80% 10%, rgba(0,229,255,.18), transparent 60%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.2fr .9fr; gap: 60px;
  align-items: center;
}
.hero__copy,
.hero__art-wrap { min-width: 0; }
.hero h1 { margin-top: 18px; }
.hero h1 .grad-text { display: inline-block; }
.hero__sub { font-size: clamp(1rem,1.6vw,1.25rem); color: var(--c-mute); max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; }
.hero__meta div { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--c-mute); }
.hero__meta strong { display: block; color: #fff; font-size: 22px; font-weight: 800; }

.hero__art-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}
.hero__art {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-2);
  background: linear-gradient(160deg, rgba(255,107,26,.4), rgba(0,229,255,.3));
}
.hero__art::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('/assets/img/sections/ar-feature.avif');
  background-size: cover; background-position: center;
  mix-blend-mode: luminosity; opacity: .9;
}
.hero__chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(11,10,31,.78); backdrop-filter: blur(10px);
  border: 1px solid var(--c-line);
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  max-width: calc(100% - 12px);
  box-shadow: var(--shadow-1);
  will-change: transform;
  animation: float 6s linear infinite;
}
.hero__chip svg { width: 20px; height: 20px; color: var(--c-orange-2); flex-shrink: 0; }
.hero__chip--1 { top: 8%; left: -6%; }
.hero__chip--2 { bottom: 14%; right: -8%; animation-delay: -2s; }
.hero__chip--3 { bottom: 40%; left: -10%; animation-delay: -4s; }
@keyframes float {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-7px); }
  50%  { transform: translateY(-12px); }
  75%  { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero { min-height: auto; padding: 120px 0 70px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art-wrap { aspect-ratio: 16/12; max-width: 540px; margin: 0 auto; }
  .hero__chip { font-size: 12px; padding: 10px 14px; gap: 8px; }
  .hero__chip svg { width: 18px; height: 18px; }
  .hero__chip--1 { top: 5%; left: 3%; }
  .hero__chip--2 { bottom: 6%; right: 3%; }
  .hero__chip--3 { bottom: 38%; left: 3%; }
}
@media (max-width: 560px) {
  .hero__chip { font-size: 11px; padding: 8px 12px; gap: 6px; border-radius: 12px; }
  .hero__chip svg { width: 15px; height: 15px; }
  .hero__chip--1 { top: 4%; left: 2%; }
  .hero__chip--2 { bottom: 4%; right: 2%; }
  .hero__chip--3 { display: none; }
}

/* Sections base */
.sec-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head p { font-size: 1.05rem; }

/* What is PrediLive */
.what {
  background: linear-gradient(180deg,#0b0a1f 0%, #141137 100%);
}
.what__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.what__body p { font-size: 1.05rem; }
.what__cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
.feat-card {
  display: grid; grid-template-columns: 84px 1fr;
  gap: 20px; align-items: center;
  padding: 20px;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--c-line);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.feat-card:hover { transform: translateY(-4px); border-color: rgba(255,107,26,.45); }
.feat-card img { width: 84px; height: 84px; border-radius: 14px; object-fit: cover; }
.feat-card h3 { margin: 0 0 6px; font-size: 1.1rem; }
.feat-card p { margin: 0; font-size: .95rem; }

@media (max-width: 880px) {
  .what__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Wheel */
.wheel {
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(255,107,26,.18), transparent 65%),
    linear-gradient(180deg,#141137 0%, #0b0a1f 100%);
}
.wheel__grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center;
}
.wheel__media {
  position: relative;
  aspect-ratio: 1 / 1;
  animation: spinSlow 60s linear infinite;
}
.wheel__media::before {
  content: '';
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,.55), rgba(255,61,138,.35) 45%, rgba(75,47,168,.15) 70%, transparent 80%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.wheel__media img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 22px rgba(255,107,26,.55))
    drop-shadow(0 0 60px rgba(255,61,138,.4))
    drop-shadow(0 18px 40px rgba(0,0,0,.45));
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.wheel__sectors {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin-top: 32px;
}
.sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-line);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.sector:hover { background: rgba(255,107,26,.15); transform: translateY(-3px); }
.sector svg { display: block; width: 28px; height: 28px; color: var(--c-orange-2); margin-bottom: 8px; }
.sector span { font-size: 12px; font-weight: 600; color: var(--c-mute); }

@media (max-width: 980px) {
  .wheel__grid { grid-template-columns: 1fr; gap: 40px; }
  .wheel__media { max-width: 420px; margin: 0 auto; }
  .wheel__sectors { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 520px) {
  .wheel__sectors { grid-template-columns: repeat(2, 1fr); }
}

/* How it works */
.how__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.step {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(26,23,66,.7), rgba(20,17,55,.7));
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: rgba(255,107,26,.4); }
.step__num {
  font-family: 'Sora', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  background: var(--c-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 14px;
  margin: 14px 0 18px;
}
.step h3 { font-size: 1.15rem; margin: 0 0 8px; }
.step p { font-size: .95rem; margin: 0; }

@media (max-width: 1100px) { .how__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .how__grid { grid-template-columns: 1fr; } }

/* AR feature */
.ar {
  background: linear-gradient(180deg,#0b0a1f, #141137);
}
.ar__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: 0 60px 100px -50px rgba(0,229,255,.35);
}
.ar__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ar__overlay {
  position: absolute; left: 24px; top: 24px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(11,10,31,.78); backdrop-filter: blur(10px);
  border: 1px solid var(--c-line);
  font-size: 14px;
}
.ar__overlay .pill { background: var(--c-grad); color: #fff; padding: 4px 10px; border-radius: 999px; font-weight: 700; font-size: 12px; flex-shrink: 0; white-space: nowrap; }
.ar__lead { max-width: 720px; margin: 32px auto 0; text-align: center; }

/* Predictions list */
.preds__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.pred {
  display: flex; align-items: center; gap: 18px;
  padding: 22px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-line);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.pred:hover { background: rgba(255,107,26,.12); transform: translateX(6px); }
.pred__icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--c-grad-soft);
  display: grid; place-items: center;
  border: 1px solid var(--c-line);
}
.pred__icon svg { width: 26px; height: 26px; color: var(--c-orange-2); }
.pred h3 { font-size: 1.05rem; margin: 0; }
@media (max-width: 720px) { .preds__grid { grid-template-columns: 1fr; } }

/* Prizes */
.prizes {
  background: radial-gradient(60% 60% at 50% 0%, rgba(255,61,138,.18), transparent 70%),
              linear-gradient(180deg,#141137, #0b0a1f);
}
.prizes__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.prizes__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.prizes__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-line);
  transition: transform .3s var(--ease);
}
.prizes__list li:hover { transform: translateX(6px); }
.prizes__list svg { width: 22px; height: 22px; color: var(--c-orange); flex-shrink: 0; }
.prizes__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-2);
}
.prizes__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
@media (max-width: 980px) { .prizes__grid { grid-template-columns: 1fr; gap: 40px; } }

/* FAQ */
.faq__list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--c-line);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.faq-item.is-expanded { border-color: rgba(255,107,26,.4); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  font-weight: 700; font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 22px; height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23ffb347' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  transition: transform .4s var(--ease);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.is-expanded summary::after { transform: rotate(180deg); }
.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s var(--ease), opacity .3s var(--ease);
  opacity: 0;
  will-change: grid-template-rows;
}
.faq-item.is-expanded > .faq-item__body {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-item__body-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--c-mute);
  transition: padding-bottom .3s var(--ease);
}
.faq-item.is-expanded > .faq-item__body > .faq-item__body-inner {
  padding-bottom: 24px;
}

/* Generic info section */
.info__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.info-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--c-line);
  transition: transform .3s var(--ease);
}
.info-card:hover { transform: translateY(-4px); }
.info-card .ico {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--c-grad-soft);
  margin-bottom: 18px;
}
.info-card .ico svg { width: 26px; height: 26px; color: var(--c-orange-2); }
.info-card h3 { font-size: 1.15rem; }
.info__grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .info__grid { grid-template-columns: 1fr 1fr; } .info__grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .info__grid { grid-template-columns: 1fr; } .info__grid--4 { grid-template-columns: 1fr; } }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute;
  left: 8%; right: 8%; top: 38px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-orange), var(--c-pink), transparent);
}
.tl-item {
  text-align: center;
  position: relative;
}
.tl-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-grad);
  margin: 25px auto 18px;
  box-shadow: 0 0 0 6px rgba(255,107,26,.18);
}
.tl-year { font-family: 'Sora'; font-size: 1.8rem; font-weight: 800; background: var(--c-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline::before { left: 50%; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, transparent, var(--c-orange), var(--c-pink), transparent); }
}

/* Where to find */
.where {
  background: linear-gradient(180deg,#0b0a1f, #141137);
}
.where__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px;
}
.map-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: #0b0a1f;
  aspect-ratio: 4/3;
}
.map-card__frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.75) brightness(0.95) contrast(1.05);
}
.map-meta {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  z-index: 3;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(11,10,31,.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-line);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.map-meta strong { display: block; font-size: 1.05rem; }
.map-meta span { color: var(--c-mute); font-size: .9rem; }
.where__contacts {
  display: grid; gap: 16px;
}
.contact-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: 14px;
  background: rgba(255,255,255,.03); border: 1px solid var(--c-line);
  transition: background .3s var(--ease);
}
.contact-row:hover { background: rgba(255,107,26,.08); }
.contact-row svg { width: 22px; height: 22px; color: var(--c-orange-2); flex-shrink: 0; }
.contact-row span { display: block; font-size: 12px; color: var(--c-mute); text-transform: uppercase; letter-spacing: .14em; }
.contact-row a { font-weight: 700; color: #fff; }
@media (max-width: 880px) { .where__grid { grid-template-columns: 1fr; } }

/* Partners */
.partners-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.partner-card {
  padding: 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.partner-card:hover { transform: translateY(-6px); border-color: rgba(255,107,26,.5); }
.partner-card__head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.partner-card__logo {
  width: 100%; max-width: 148px; min-height: 64px; padding: 10px 14px; border-radius: 14px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-line);
  flex: 1 1 auto; min-width: 0;
}
.partner-card__logo img,
.partner-card__logo svg { width: 100%; height: auto; max-width: 100%; max-height: 42px; display: block; object-fit: contain; }
.rating { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 54px; }
.rating__value { font-family: 'Sora'; font-size: .9rem; font-weight: 700; line-height: 1; color: #fff; text-align: center; }
.rating__stars { display: flex; justify-content: center; gap: 2px; }
.rating__stars svg { width: 18px; height: 18px; color: #ffb347; }
.bonus {
  font-family: 'Sora'; font-size: 1.6rem; font-weight: 800;
  background: var(--c-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.partner-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .92rem; color: var(--c-mute); }
.partner-card ul li { display: flex; align-items: center; gap: 8px; }
.partner-card ul li svg { width: 16px; height: 16px; color: var(--c-cyan); flex-shrink: 0; }
@media (max-width: 1100px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .partners-grid { grid-template-columns: 1fr; } }

/* Social slot */
.slot {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(255,107,26,.22), transparent 70%),
    linear-gradient(180deg, rgba(26,23,66,.85), rgba(11,10,31,.95));
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-2);
}
.slot__title {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  margin: 0 0 22px;
  background: var(--c-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.slot__reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #07061a, #141137);
  border: 1px solid var(--c-line);
  box-shadow: inset 0 8px 24px rgba(0,0,0,.6);
}
.slot__reel {
  position: relative;
  height: 120px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.slot__strip {
  position: absolute; left: 0; right: 0; top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 1.6s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.slot__reel--spinning .slot__strip {
  transition: transform 2.4s cubic-bezier(.45,0,.55,1);
}
.slot__cell {
  height: 120px;
  width: 100%;
  display: grid;
  place-items: center;
}
.slot__cell svg {
  width: 64px; height: 64px;
  color: var(--c-orange-2);
  filter: drop-shadow(0 6px 16px rgba(255,107,26,.35));
}
.slot__cell--win svg {
  color: var(--c-cyan);
  animation: winPulse 1.2s ease-in-out infinite;
}
@keyframes winPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); filter: drop-shadow(0 6px 18px rgba(0,229,255,.7)); }
}
.slot__row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 22px;
  gap: 18px;
  flex-wrap: wrap;
}
.slot__meta {
  display: flex; align-items: center; gap: 18px;
  font-size: .92rem;
  color: var(--c-mute);
}
.slot__meta strong { color: #fff; font-size: 1.4rem; font-family: 'Sora'; }
.slot__spin {
  padding: 16px 38px;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 999px;
  background: var(--c-grad);
  color: #fff;
  box-shadow: var(--shadow-2);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.slot__spin:hover:not(:disabled) { transform: translateY(-2px); }
.slot__spin:disabled { opacity: .55; cursor: not-allowed; }
.slot__status {
  margin-top: 18px;
  text-align: center;
  font-weight: 700;
  font-size: .98rem;
  min-height: 24px;
  color: var(--c-mute);
}
.slot__status--win { color: var(--c-cyan); }
.slot__status--miss { color: var(--c-orange-2); }
.slot__note {
  margin-top: 12px;
  text-align: center;
  font-size: .82rem;
  color: var(--c-mute);
  opacity: .8;
}
@media (max-width: 560px) {
  .slot { padding: 24px; }
  .slot__reel { height: 96px; }
  .slot__cell { height: 96px; }
  .slot__cell svg { width: 48px; height: 48px; }
}
@media (max-width: 380px) {
  .slot__reels { gap: 8px; padding: 12px; }
  .slot__reel { height: 80px; }
  .slot__cell { height: 80px; }
  .slot__cell svg { width: 38px; height: 38px; }
  .slot__row { flex-direction: column; }
  .slot__spin { width: 100%; }
}

/* Articles */
.articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article {
  padding: 24px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.03); border: 1px solid var(--c-line);
  transition: transform .3s var(--ease);
}
.article:hover { transform: translateY(-5px); }
.article time { font-size: 12px; color: var(--c-orange-2); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.article h3 { margin: 12px 0; font-size: 1.1rem; }
.article__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s var(--ease), opacity .3s var(--ease);
  opacity: 0;
  margin-top: 0;
}
.article.is-expanded > .article__body {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 14px;
}
.article__body-inner {
  min-height: 0;
  overflow: hidden;
  color: var(--c-mute);
  font-size: .95rem;
  line-height: 1.6;
}
.article__body-inner p { margin: 0 0 12px; }
.article__body-inner p:last-child { margin-bottom: 0; }
.article__toggle { cursor: pointer; }
.article__toggle .ic { transition: transform .35s var(--ease); }
.article.is-expanded > .article__toggle .ic { transform: rotate(90deg); }
@media (max-width: 880px) { .articles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .articles { grid-template-columns: 1fr; } }

/* Awareness plates */
.aware {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.aware a {
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-line);
  display: flex; align-items: center; gap: 14px;
  font-weight: 600;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.aware a:hover { background: rgba(0,229,255,.08); border-color: rgba(0,229,255,.35); color: #fff; }
.aware svg { width: 26px; height: 26px; color: var(--c-cyan); flex-shrink: 0; }
@media (max-width: 880px) { .aware { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .aware { grid-template-columns: 1fr; } }

.disclaimer {
  position: relative;
  margin-top: 32px;
  padding: 22px 22px 22px 96px;
  border-radius: 14px;
  background: rgba(0,229,255,.06);
  border: 1px solid rgba(0,229,255,.2);
  color: var(--c-mute);
  font-size: .92rem;
}
.disclaimer strong { color: #fff; }
.disclaimer::before {
  content: '18+';
  position: absolute;
  top: 22px; left: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-grad);
  color: #fff;
  font-family: 'Sora', 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -10px rgba(255,61,138,.65), 0 0 0 3px rgba(11,10,31,.55);
}
@media (max-width: 560px) {
  .disclaimer { padding: 84px 18px 18px; }
  .disclaimer::before { top: 18px; left: 18px; width: 48px; height: 48px; font-size: 14px; }
}

/* Gallery */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.gallery__item {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.04);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
@media (max-width: 880px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }

/* Footer */
.site-footer {
  margin-top: auto;
  background: linear-gradient(180deg,#0b0a1f 0%, #07061a 100%);
  border-top: 1px solid var(--c-line);
  padding: 70px 0 30px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px;
  margin-bottom: 50px;
}
.footer__col h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .16em; color: var(--c-orange-2); margin: 0 0 18px; }
.footer__nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__socials { display: flex; gap: 12px; margin-top: 18px; }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1px solid var(--c-line);
  display: grid; place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.footer__socials a:hover { background: rgba(255,107,26,.18); transform: translateY(-3px); }
.footer__socials svg { width: 20px; height: 20px; }
.subscribe { display: flex; gap: 8px; margin-top: 8px; }
.subscribe input {
  flex: 1; min-width: 0;
  padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-line);
  color: #fff;
  border-radius: 999px;
  font: inherit;
  transition: border-color .3s var(--ease);
}
.subscribe input:focus { outline: none; border-color: var(--c-orange); }
.subscribe button {
  padding: 14px 22px;
  background: var(--c-grad); color: #fff;
  border-radius: 999px; font-weight: 700;
  transition: transform .25s var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.subscribe button:hover { transform: translateY(-2px); }
.footer__bottom {
  border-top: 1px solid var(--c-line);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center;
  font-size: .9rem; color: var(--c-mute);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--left.is-visible, .reveal--right.is-visible { transform: translateX(0); }
@media (max-width: 560px) {
  .reveal--left, .reveal--right { transform: translateY(24px); }
  .reveal--left.is-visible, .reveal--right.is-visible { transform: translateY(0); }
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }

/* Cookie banner */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  max-width: 480px; margin-left: auto;
  padding: 22px;
  border-radius: 18px;
  background: rgba(11,10,31,.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-2);
  z-index: 80;
  transform: translateY(140%);
  transition: transform .5s var(--ease);
}
.cookie.is-visible { transform: translateY(0); }
.cookie p { font-size: .92rem; margin: 0 0 14px; color: var(--c-mute); }
.cookie__row { display: flex; gap: 10px; justify-content: flex-end; }
.cookie__row button { padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: .88rem; }
.cookie__row .accept { background: var(--c-grad); color: #fff; }
.cookie__row .reject { background: rgba(255,255,255,.06); color: var(--c-text); border: 1px solid var(--c-line); }

/* Toast */
.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -200%);
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--c-grad);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: var(--shadow-2);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .55s var(--ease), opacity .35s var(--ease), visibility 0s linear .55s;
  display: flex; align-items: center; gap: 10px;
  max-width: calc(100% - 32px);
}
.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  transition: transform .55s var(--ease), opacity .35s var(--ease), visibility 0s linear 0s;
}
.toast svg { width: 20px; height: 20px; }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(125deg, rgba(11,10,31,.88), rgba(75,47,168,.55) 70%);
  border-bottom: 1px solid var(--c-line);
}
.page-hero--about { background-image: linear-gradient(125deg, rgba(11,10,31,.85), rgba(75,47,168,.5) 60%), url('/assets/img/sections/about-hero.avif'); background-size: cover; background-position: center; }
.page-hero--where { background-image: linear-gradient(125deg, rgba(11,10,31,.85), rgba(75,47,168,.5) 60%), url('/assets/img/sections/arena.avif'); background-size: cover; background-position: center; }
.page-hero--partners { background-image: linear-gradient(125deg, rgba(11,10,31,.85), rgba(255,107,26,.4) 60%), url('/assets/img/sections/prizes-collage.avif'); background-size: cover; background-position: center; }
.page-hero__inner { max-width: 800px; }
.page-hero h1 { font-size: clamp(2rem, 4.8vw, 3.4rem); margin-top: 14px; }
.page-hero p { font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 60ch; }

/* Legal pages */
.legal {
  padding: 140px 0 80px;
}
.legal__body { max-width: 820px; }
.legal__body h2 { margin-top: 2.4em; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body ul { color: var(--c-mute); padding-left: 22px; }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.04) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
  border-radius: 14px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Smaller phones */
@media (max-width: 380px) {
  body { font-size: 15px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .hero { padding: 110px 0 60px; }
  .hero__chip { font-size: 11px; padding: 9px 12px; }
  .subscribe { flex-direction: column; }
  .subscribe button { width: 100%; }
}
@media (max-width: 340px) {
  .container { padding-inline: 12px; }
  .step { padding: 22px; }
  .info-card { padding: 22px; }
  .partner-card { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
