@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cinzel:wght@600;800&family=DM+Sans:wght@400;600;700&display=swap");

:root {
  --velvet: #070308;
  --felt: #0b3d2c;
  --felt-deep: #06261c;
  --ink: #fff6d8;
  --muted: #d7c39a;
  --gold: #ffd54a;
  --gold-deep: #c48900;
  --gold-chrome: #ffe9a0;
  --red: #e10600;
  --hot: #ff3b5c;
  --line: #6b4e12;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.45;
  background:
    radial-gradient(900px 420px at 50% -8%, rgba(255, 210, 70, 0.28), transparent 55%),
    radial-gradient(700px 500px at 110% 10%, rgba(225, 6, 0, 0.22), transparent 50%),
    radial-gradient(800px 600px at -10% 80%, rgba(11, 61, 44, 0.55), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,213,74,0.03) 0 2px, transparent 2px 14px),
    var(--velvet);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 230, 140, 0.55) 0 1px, transparent 1.6px);
  background-size: 140px 140px;
  opacity: 0.18;
  animation: twinkle 6s linear infinite;
}

a { color: var(--gold); }
.nav, .hero, .panel, .foot, .flash, .marquee {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.15rem 1.4rem;
}

.marquee {
  overflow: hidden;
  border: 1px solid #d4af37;
  border-radius: 999px;
  background: linear-gradient(90deg, #3a0a0a, #1a0800 40%, #3a0a0a);
  box-shadow: 0 0 24px rgba(255, 180, 0, 0.25), inset 0 0 20px rgba(255, 213, 74, 0.08);
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  font-size: 1.15rem;
  white-space: nowrap;
}
.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 22s linear infinite;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.nav nav { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.nav a:not(.btn) {
  color: #f3e0a6;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}
.brand {
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gold);
  text-decoration: none;
  text-shadow: 0 0 18px rgba(255, 213, 74, 0.45);
}
.inline { display: inline; }
.nav button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: #f3e0a6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #f0d36a;
  background: #1a0c00;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}
.btn.gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8d0 0%, #ffe14a 28%, #ffc400 58%, #c48900 100%);
  color: #3a2200;
  box-shadow: 0 0 28px rgba(255, 200, 40, 0.45), 0 7px 0 #7a4e00;
  animation: pulse 1.8s ease-in-out infinite;
}
.btn.gold::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: shine 2.4s ease-in-out infinite;
}
.btn.gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn.ghost {
  background: rgba(11, 61, 44, 0.55);
  color: #fff4c4;
  box-shadow: inset 0 0 0 1px #d4af37;
}
.btn.small { padding: 0.4rem 0.9rem; font-size: 0.78rem; animation: none; }

.kicker {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  text-shadow: 0 0 16px rgba(255, 213, 74, 0.35);
}
h1, h2, h3 {
  font-family: "Cinzel", serif;
  font-weight: 800;
  margin: 0.15rem 0 0.55rem;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  background: linear-gradient(180deg, #fff6c8, #ffd54a 55%, #c48900);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 #5a3a00);
}
.lede { font-size: 1.15rem; color: var(--muted); max-width: 42rem; }
.disclaimer, .muted, .foot { color: #c9b48a; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.3rem 0; }

.hero {
  position: relative;
  text-align: center;
  padding-top: 0.4rem;
}
.hero .lede, .hero .disclaimer { margin-left: auto; margin-right: auto; }
.hero-balls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem auto 1.1rem;
  max-width: 40rem;
  padding: 1.1rem 1.2rem 1.3rem;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(255, 213, 74, 0.18), transparent 55%),
    linear-gradient(180deg, #0f5a3d, #06261c 70%);
  box-shadow:
    inset 0 0 0 3px #d4af37,
    inset 0 18px 30px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(255, 200, 40, 0.18);
}
.jackpot {
  display: inline-block;
  margin: 0.4rem 0 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: #1a0508;
  border: 1px solid #ffd54a;
  color: #ffe9a0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.16em;
  font-size: 1.35rem;
  box-shadow: 0 0 20px rgba(255, 60, 80, 0.25);
}

.panel {
  background:
    linear-gradient(180deg, rgba(255, 213, 74, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(11, 61, 44, 0.55), rgba(7, 3, 8, 0.92));
  border: 1px solid #d4af37;
  border-radius: 22px;
  margin: 1.1rem auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), inset 0 0 40px rgba(255, 213, 74, 0.04);
}
.panel.narrow { max-width: 560px; }
.grid3, .twins, .pricing { display: grid; gap: 0.9rem; }
.grid3, .twins { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.pricing { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.grid3 article, .twins article, .pricing article, .ticket {
  border: 1px solid #8a6a1c;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: linear-gradient(180deg, rgba(255, 220, 120, 0.08), rgba(0, 0, 0, 0.25));
  box-shadow: inset 0 0 20px rgba(255, 213, 74, 0.05);
}
.pricing .featured {
  outline: 2px solid var(--gold);
  box-shadow: 0 0 28px rgba(255, 200, 40, 0.28);
  transform: scale(1.02);
}
.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  margin: 0.1rem 0;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255, 213, 74, 0.45);
  letter-spacing: 0.04em;
}
.ok { color: #7dffa8; font-weight: 700; }
.flash {
  background: linear-gradient(90deg, #3d1400, #1a0800);
  border: 1px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(255, 180, 0, 0.2);
}
.form { display: grid; gap: 0.7rem; }
.form input:not([type=checkbox]) {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #8a6a1c;
  background: #12080a;
  color: var(--ink);
}
.check { display: flex; gap: 0.5rem; align-items: flex-start; }
.errors { color: #ff9aa8; }

.balls, .hero-balls { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.ball {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: #3a2200;
  background:
    radial-gradient(circle at 32% 28%, #fffef8 0 8%, transparent 11%),
    radial-gradient(circle at 30% 30%, #fff6c2 0%, #ffd54a 38%, #e0a000 68%, #8a5a00 100%);
  box-shadow:
    0 10px 0 #6b4300,
    0 0 22px rgba(255, 210, 70, 0.55),
    0 16px 22px rgba(0, 0, 0, 0.45),
    inset 0 -10px 14px rgba(80, 40, 0, 0.35);
  animation: bob 2.8s ease-in-out infinite;
}
.hero-balls .ball:nth-child(2) { animation-delay: 0.15s; }
.hero-balls .ball:nth-child(3) { animation-delay: 0.3s; }
.hero-balls .ball:nth-child(4) { animation-delay: 0.45s; }
.hero-balls .ball:nth-child(5) { animation-delay: 0.6s; }
.hero-balls .ball:nth-child(6) { animation-delay: 0.75s; }
.hero-balls .ball:nth-child(7) { animation-delay: 0.9s; }
.ball.bonus {
  color: #fff;
  background:
    radial-gradient(circle at 32% 28%, #fff 0 8%, transparent 11%),
    radial-gradient(circle at 30% 30%, #ffb3b8 0%, #ff3b5c 40%, #e10600 72%, #7a0000 100%);
  box-shadow: 0 10px 0 #6a0000, 0 16px 22px rgba(0, 0, 0, 0.45);
}
.balls .ball { width: 3.6rem; height: 3.6rem; font-size: 1.6rem; animation: none; }

.r-hit {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--gold);
  margin: 0.15rem 0;
}
.steps { padding-left: 1.2rem; }
.steps li { margin: 0.35rem 0; }
.foot {
  font-size: 0.85rem;
  text-align: center;
  padding-bottom: 2.2rem;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 22px rgba(255, 200, 40, 0.35), 0 7px 0 #7a4e00; }
  50% { box-shadow: 0 0 36px rgba(255, 220, 80, 0.7), 0 7px 0 #7a4e00; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes twinkle {
  0% { opacity: 0.12; }
  50% { opacity: 0.22; }
  100% { opacity: 0.12; }
}
@keyframes shine {
  0% { left: -40%; }
  55%, 100% { left: 120%; }
}

.signals article { overflow: hidden; }
.viz {
  position: relative;
  height: 176px;
  margin: -0.2rem -0.2rem 0.75rem;
  border-radius: 12px;
  background: #050308;
  overflow: hidden;
}
.viz svg { width: 100%; height: 148px; display: block; }
.viz svg * { transform-box: view-box; }
.viz-readout {
  position: absolute;
  left: 0.6rem;
  bottom: 0.35rem;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-size: 0.95rem;
  text-shadow: 0 0 10px rgba(255, 213, 74, 0.4);
}

.viz-field { background: radial-gradient(circle at 50% 50%, #0c2a22, #050308 70%); }
.field-ring {
  fill: none;
  stroke: #7dce9a;
  stroke-width: 1.2;
  opacity: 0.55;
  transform-origin: 140px 84px;
  animation: spin 10s linear infinite;
}
.field-ring.r2 { animation-duration: 7s; stroke: #ffd54a; opacity: 0.4; }
.field-ring.r3 { animation-duration: 4.5s; animation-direction: reverse; }
.field-line {
  fill: none;
  stroke: #9be7b8;
  stroke-width: 1.6;
  stroke-dasharray: 8 10;
  animation: dash 2.4s linear infinite;
}
.field-line.delay { animation-delay: -1.2s; stroke: #ffd54a; }
.needle { transform-origin: 140px 84px; animation: swing 3.2s ease-in-out infinite; }
.wien { fill: #ffd54a; filter: drop-shadow(0 0 6px #ffd54a); animation: pulse-dot 1.6s ease-in-out infinite; }
.spark { fill: #fff6c8; animation: hop 2.8s ease-in-out infinite; }
.spark.s2 { animation-delay: -0.8s; }
.spark.s3 { animation-delay: -1.6s; }

.viz-sun { background: radial-gradient(circle at 50% 45%, #4a2200, #140308 68%); }
.corona {
  transform-origin: 140px 84px;
  stroke: #ffb300;
  stroke-width: 3.2;
  opacity: 0.85;
  animation: spin 16s linear infinite;
}
.sun-halo {
  fill: rgba(255, 180, 40, 0.22);
  animation: breathe 2.2s ease-in-out infinite;
  transform-origin: 140px 84px;
}
.sun-disc {
  fill: url(#none);
  fill: #ffb000;
  filter: drop-shadow(0 0 16px #ff9a00);
  animation: breathe 2.2s ease-in-out infinite;
  transform-origin: 140px 84px;
}
.spot { fill: #5a2a00; transform-origin: 140px 84px; animation: spin 9s linear infinite; }
.spot.b { animation-duration: 13s; animation-direction: reverse; }
.flare {
  fill: none;
  stroke: #ff6a1a;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 80;
  animation: flare 2.6s ease-in-out infinite;
}
.flare.f2 { animation-delay: -0.8s; stroke: #ffd54a; }
.flare.f3 { animation-delay: -1.5s; }

.viz-stocks { background: linear-gradient(180deg, #08140f, #050308); }
.viz-stocks .grid line { stroke: #2a3a33; stroke-width: 0.6; }
.trace {
  fill: none;
  stroke: #ffd54a;
  stroke-width: 2.2;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px #ffd54a);
}
.trace.twin { stroke: #7dce9a; filter: none; stroke-width: 1.6; }
.candles rect {
  fill: #e10600;
  transform-box: fill-box;
  transform-origin: bottom;
  animation: grow 2.8s ease-in-out infinite;
}
.candles rect.up { fill: #7dce9a; animation-delay: -0.7s; }
.tape {
  position: absolute;
  top: 0.35rem;
  left: 0;
  margin: 0;
  width: 200%;
  color: #ffd54a;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  animation: tape 10s linear infinite;
  white-space: nowrap;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes dash { to { stroke-dashoffset: -80; } }
@keyframes swing {
  0%, 100% { transform: rotate(-18deg); }
  50% { transform: rotate(22deg); }
}
@keyframes hop {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(18px, -10px); opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { r: 4; }
  50% { r: 6.5; }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes flare {
  0%, 100% { stroke-dashoffset: 80; opacity: 0.2; }
  40% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes draw {
  0% { stroke-dashoffset: 420; }
  45%, 55% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -420; }
}
@keyframes grow {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}
@keyframes tape { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .field-ring, .field-line, .needle, .corona, .flare, .trace, .candles rect, .tape, .sun-halo, .sun-disc, .spot, .spark {
    animation: none !important;
  }
}

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  .ball { width: 2.7rem; height: 2.7rem; font-size: 1.2rem; }
  .price { font-size: 2.4rem; }
}
