:root {
  --bg: #090b0f;
  --surface: #11141a;
  --surface-soft: #161a21;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f6f7f8;
  --muted: #a3a8b2;
  --yellow: #ffd21c;
  --yellow-bright: #ffe765;
  --purple: #9c3bff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 210, 28, 0.08), transparent 24rem),
    radial-gradient(circle at 8% 45%, rgba(156, 59, 255, 0.05), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.topbar {
  width: min(calc(100% - 40px), var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 950;
  font-style: italic;
  font-size: 21px;
  letter-spacing: -0.8px;
}
.brand > span:last-child > span { color: var(--yellow); }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--yellow);
  border-radius: 50%;
  font-style: normal;
  box-shadow: 0 0 24px rgba(255, 210, 28, 0.3);
}
nav { display: flex; gap: 28px; margin-left: auto; }
nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 650; }
nav a:hover { color: #fff; }
.mini-cta {
  text-decoration: none;
  padding: 10px 17px;
  border: 1px solid rgba(255, 210, 28, 0.35);
  border-radius: 9px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

main, footer { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.hero {
  min-height: 585px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 42px;
  padding: 72px 0 52px;
}
.eyebrow, .section-number {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 18px; height: 2px; margin: 0 8px 3px 0; background: var(--yellow); }
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 0.98;
  letter-spacing: -4px;
  text-wrap: balance;
}
.lead { max-width: 670px; margin: 26px 0 0; color: #bec2c9; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; gap: 16px; min-height: 52px; padding: 0 22px; border-radius: 10px; text-decoration: none; font-weight: 850; }
.button-primary { color: #111; background: linear-gradient(135deg, var(--yellow-bright), var(--yellow)); box-shadow: 0 12px 35px rgba(255, 210, 28, 0.16); }
.button-primary:hover { transform: translateY(-2px); }
.button-secondary { color: #fff; border: 1px solid var(--line); background: rgba(255,255,255,0.03); }
.age-note { margin: 18px 0 0; color: #6f7580; font-size: 12px; }

.storm-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 54% 47%, rgba(255, 226, 91, 0.24), transparent 6%),
    radial-gradient(circle at 55% 50%, rgba(255, 210, 28, 0.14), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(156, 59, 255, 0.17), transparent 28%),
    linear-gradient(155deg, #15120b, #080a0e 65%);
  box-shadow: inset 0 0 80px rgba(0,0,0,0.7), 0 32px 90px rgba(0,0,0,0.3);
}
.storm-visual::before, .storm-visual::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 70%;
  top: -10%;
  background: linear-gradient(var(--yellow), transparent);
  transform: rotate(42deg);
  filter: drop-shadow(0 0 9px var(--yellow));
}
.storm-visual::before { left: 46%; }
.storm-visual::after { left: 71%; top: 25%; height: 50%; transform: rotate(-48deg); }
.storm-visual p { position: absolute; bottom: 22px; left: 26px; margin: 0; color: rgba(255,255,255,0.34); font-size: 10px; letter-spacing: 3px; font-weight: 800; }
.storm-ring { position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(255, 210, 28, 0.24); border-radius: 50%; transform: translate(-50%,-50%); }
.ring-one { width: 310px; height: 310px; }
.ring-two { width: 220px; height: 220px; border-style: dashed; }
.cloud { position: absolute; border-radius: 50%; background: linear-gradient(145deg, #3a3d42, #101216 70%); box-shadow: inset 12px 15px 18px rgba(255,255,255,0.08), 0 20px 30px #000; }
.cloud-one { width: 190px; height: 190px; left: 31%; top: 30%; }
.cloud-two { width: 155px; height: 155px; left: 51%; top: 38%; }
.bolt { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%) rotate(8deg); color: var(--yellow); font-size: 145px; line-height: 1; text-shadow: 0 0 16px rgba(255, 210, 28, 0.8), 0 0 55px rgba(255, 210, 28, 0.55); }
.spark { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 22px 5px var(--yellow); }
.spark-one { right: 14%; top: 21%; }
.spark-two { left: 17%; bottom: 20%; width: 4px; height: 4px; }

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
}
.status-strip div { position: relative; min-height: 90px; padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
.status-strip div + div { border-left: 1px solid var(--line); }
.status-strip strong { font-size: 15px; }
.status-strip small { margin-top: 2px; color: var(--muted); }
.status-dot { position: absolute; top: 15px; right: 15px; width: 7px; height: 7px; border-radius: 50%; background: #48e882; box-shadow: 0 0 12px #48e882; }

.content { padding: 84px 0 30px; }
.section { padding: 54px 0; border-top: 1px solid var(--line); scroll-margin-top: 32px; }
.section h2 { max-width: 760px; margin: 0 0 22px; font-size: clamp(29px, 3.3vw, 45px); line-height: 1.1; letter-spacing: -1.7px; text-wrap: balance; }
.section p:not(.section-number) { max-width: 790px; margin: 0 0 16px; color: #b8bdc6; }
.feature-section { padding: 70px max(28px, 6vw); border: 1px solid rgba(255, 210, 28, 0.2); border-radius: 24px; background: linear-gradient(135deg, rgba(255, 210, 28, 0.07), rgba(255,255,255,0.02) 52%, rgba(156,59,255,0.04)); }
.feature-section h2 { font-size: clamp(34px, 4vw, 54px); }
.text-link { display: inline-block; margin-top: 10px; color: var(--yellow); font-weight: 800; text-decoration: none; }
.two-column { display: block; }
.two-column .section p { max-width: 790px; }
.promo-section, .payment-section, .telegram-section { display: grid; grid-template-columns: 1fr; align-items: start; gap: 28px; }
.telegram-callout { max-width: 560px; padding: 28px; border: 1px solid rgba(156,59,255,0.28); border-radius: 18px; background: radial-gradient(circle at 100% 0, rgba(156,59,255,0.22), transparent 55%), #131019; }
.telegram-callout span { color: #c889ff; font-size: 10px; letter-spacing: 1.5px; font-weight: 900; }
.telegram-callout strong { display: block; margin: 8px 0; font-size: 23px; line-height: 1.15; }
.telegram-callout p { font-size: 14px; }
.telegram-callout a { color: #fff; font-weight: 800; text-decoration: none; }
.wide-section p { max-width: 920px; }
.game-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.game-tags span { padding: 9px 14px; border: 1px solid var(--line); border-radius: 100px; color: #c5c9d0; font-size: 13px; }
.payment-list { display: grid; gap: 9px; max-width: 560px; }
.payment-list span, .payment-list strong { padding: 14px 17px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,0.025); }
.payment-list strong { color: #111; border-color: var(--yellow); background: var(--yellow); }
.telegram-section { margin-top: 24px; padding: 54px; border: 1px solid rgba(156,59,255,0.25); border-radius: 24px; background: radial-gradient(circle at 95% 50%, rgba(156,59,255,0.17), transparent 35%), var(--surface); }
.telegram-button { display: flex; align-items: center; gap: 2px; width: min(100%, 430px); padding: 18px 20px; border-radius: 12px; background: #fff; color: #121318; text-decoration: none; font-weight: 900; }
.telegram-button span { color: #777c86; }
.telegram-button b { margin-left: auto; }

footer { min-height: 165px; padding: 44px 0; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 5px 40px; border-top: 1px solid var(--line); color: #777d88; font-size: 12px; }
.footer-brand { grid-row: 1 / 3; }
footer p { margin: 0; text-align: right; }
footer strong { color: var(--yellow); }

@media (max-width: 900px) {
  nav { display: none; }
  .mini-cta { margin-left: auto; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 56px; }
  .storm-visual { min-height: 330px; }
  .status-strip { grid-template-columns: 1fr 1fr; }
  .status-strip div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .status-strip div:nth-child(4) { border-top: 1px solid var(--line); }
  .two-column { grid-template-columns: 1fr; gap: 0; }
  .promo-section, .payment-section, .telegram-section { grid-template-columns: 1fr; gap: 28px; }
  .telegram-section { padding: 40px 30px; }
}

@media (max-width: 580px) {
  .topbar, main, footer { width: min(calc(100% - 28px), var(--max)); }
  .topbar { min-height: 64px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 30px; height: 30px; }
  .mini-cta { padding: 8px 11px; font-size: 11px; }
  .hero { gap: 32px; padding-top: 44px; }
  h1 { font-size: 41px; letter-spacing: -2.4px; }
  .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { justify-content: center; }
  .storm-visual { min-height: 280px; border-radius: 20px; }
  .ring-one { width: 230px; height: 230px; }
  .ring-two { width: 165px; height: 165px; }
  .cloud-one { width: 145px; height: 145px; left: 27%; }
  .cloud-two { width: 110px; height: 110px; left: 52%; }
  .bolt { font-size: 110px; }
  .status-strip { grid-template-columns: 1fr; }
  .status-strip div + div { border-left: 0; border-top: 1px solid var(--line); }
  .content { padding-top: 56px; }
  .section { padding: 43px 0; }
  .feature-section { padding: 42px 25px; }
  .section h2 { font-size: 31px; letter-spacing: -1px; }
  .telegram-section { margin-inline: -2px; padding: 35px 23px; }
  footer { grid-template-columns: 1fr; }
  .footer-brand { grid-row: auto; margin-bottom: 18px; }
  footer p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
