/* Visual system adapted from favbet-site: navy surfaces, FAVBET magenta, cyan signal accents. */
:root {
  color-scheme: dark;
  --ink-950: #03071f;
  --ink-900: #070e3a;
  --ink-850: #0a1450;
  --ink-800: #0d1a62;
  --beam: #2f6bff;
  --signal: #34e3ff;
  --fav: #e6007e;
  --fav-hot: #ff3ba0;
  --text: #e8edff;
  --soft: #c7d0f5;
  --muted: #94a3d8;
  --dim: #6b7cb8;
  --line: rgba(120, 150, 255, .16);
  --line-2: rgba(120, 150, 255, .3);
  --up: #25d07a;
  --down: #ff5a6e;
  --display: "Helvetica Neue", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --maxw: 1240px;
  --prose: 74ch;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.2, .7, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink-950);
  font-family: var(--body);
  font-size: clamp(.98rem, .94rem + .18vw, 1.07rem);
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; border-radius: 6px; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip {
  position: fixed;
  z-index: 500;
  inset: 0 auto auto -9999px;
  padding: .72rem 1rem;
  color: #fff;
  background: var(--fav);
  border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }
.progress {
  position: fixed;
  z-index: 220;
  inset: 0 0 auto;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--fav), var(--beam), var(--signal));
  will-change: transform;
}

.hdr {
  position: sticky;
  z-index: 200;
  top: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.hdr.stuck {
  background: rgba(4, 8, 32, .9);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.hdr__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 76px;
  padding-block: .55rem;
  gap: .65rem clamp(.8rem, 2vw, 1.7rem);
}
.logo {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: .43rem;
  padding: .2rem 0;
  color: #ff007d;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.logo__mark { width: 24px; height: 24px; flex: none; background: url("../pictures/favicon.png") center / contain no-repeat; }
.logo__word {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: .015em;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 1.7vw, 1.45rem);
  color: var(--muted);
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  padding: .45rem 0;
  white-space: nowrap;
  transition: color .2s;
}
.nav a::after {
  position: absolute;
  right: 0;
  bottom: .1rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--fav);
  transition: transform .25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.hdr__actions { display: flex; flex: none; align-items: center; gap: .5rem; margin-inline-start: auto; }
.lang-switch {
  display: inline-flex;
  flex: none;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: rgba(9, 18, 66, .6);
}
.lang-switch a {
  min-width: 38px;
  padding: .42rem .5rem;
  color: var(--dim);
  border-radius: 7px;
  font-family: var(--mono);
  font-size: .7rem;
  line-height: 1;
  text-align: center;
  letter-spacing: .06em;
  transition: color .2s, background .2s;
}
.lang-switch a:hover { color: #fff; }
.lang-switch a[aria-current="true"] { color: #fff; background: var(--fav); }

.btn {
  --glow: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1.2rem;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .76rem;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .25s, background .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn::before {
  position: absolute;
  z-index: -1;
  inset: -42%;
  content: "";
  opacity: 0;
  background: radial-gradient(170px circle at var(--bx, 50%) var(--by, 50%), var(--glow), transparent 65%);
  transition: opacity .3s;
}
.btn:hover::before { opacity: 1; }
.btn--fav {
  --glow: rgba(255, 255, 255, .42);
  background: var(--fav);
  box-shadow: 0 13px 38px -17px rgba(230, 0, 126, .98);
}
.btn--fav:hover { background: var(--fav-hot); box-shadow: 0 17px 44px -14px rgba(255, 59, 160, .8); }
.btn--ghost { --glow: rgba(52, 227, 255, .34); border-color: var(--line-2); background: rgba(20, 34, 100, .42); }
.btn--ghost:hover { border-color: var(--signal); box-shadow: 0 12px 34px -20px rgba(52, 227, 255, .9); }
.btn--lg { min-height: 52px; padding: .96rem 1.65rem; font-size: .82rem; border-radius: 13px; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-block: clamp(3.2rem, 7vw, 6.8rem) clamp(3.8rem, 7.5vw, 6rem);
  background:
    radial-gradient(110% 90% at 8% 110%, rgba(47, 107, 255, .72), transparent 60%),
    radial-gradient(80% 74% at 96% 2%, rgba(52, 227, 255, .2), transparent 64%),
    linear-gradient(166deg, #0a1350 0%, #0d1a62 48%, #050a2e 100%);
}
.hero__spot {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(440px circle at var(--mx, 50%) var(--my, 40%), rgba(52, 227, 255, .14), transparent 70%);
  transition: opacity .5s;
}
.hero.lit .hero__spot { opacity: 1; }
.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(80% 72% at 50% 36%, #000, transparent 82%);
  mask-image: radial-gradient(80% 72% at 50% 36%, #000, transparent 82%);
}
.hero__in { display: grid; align-items: center; gap: clamp(2.5rem, 6vw, 5rem); }
.hero__in--article { max-width: 980px; }
.hero__copy { min-width: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  padding: .42rem .78rem;
  color: var(--signal);
  border: 1px solid rgba(52, 227, 255, .3);
  border-radius: 999px;
  background: rgba(52, 227, 255, .06);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .095em;
  text-transform: uppercase;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--up); box-shadow: 0 0 13px rgba(37, 208, 122, .85); }
.hero h1 {
  max-width: 16ch;
  margin: 1.25rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.55rem, 2rem + 3.2vw, 5.5rem);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.042em;
  text-wrap: balance;
}
.hero h1 em { color: var(--fav); font-style: normal; }
.hero__lead { max-width: 59ch; margin: 1.35rem 0 0; color: var(--muted); font-size: clamp(1.05rem, .98rem + .43vw, 1.35rem); line-height: 1.55; text-wrap: pretty; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__points { display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; margin: 1.25rem 0 0; padding: 0; color: var(--dim); font-size: .79rem; list-style: none; }
.hero__points li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__points li::before { width: 6px; height: 6px; content: ""; border-radius: 50%; background: var(--fav); }
.hero__panel {
  position: relative;
  width: min(100%, 465px);
  min-height: 400px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(28, 46, 132, .9), rgba(7, 14, 58, .95));
  box-shadow: 0 42px 90px -42px rgba(0, 0, 0, .95), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.hero__panel::before {
  position: absolute;
  inset: -28% -10% auto auto;
  width: 330px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(52, 227, 255, .34);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(52, 227, 255, .035), 0 0 0 96px rgba(52, 227, 255, .025);
}
.panel__top { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.2rem; color: var(--muted); border-bottom: 1px dashed var(--line-2); font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.panel__status { display: inline-flex; align-items: center; gap: .45rem; color: var(--signal); }
.panel__status::before { width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--up); box-shadow: 0 0 12px rgba(37, 208, 122, .8); }
.panel__shield { position: relative; display: grid; width: 190px; aspect-ratio: 1; margin: 3.2rem auto 2.3rem; place-items: center; }
.panel__shield::before {
  position: absolute;
  inset: 2px;
  content: "";
  background: linear-gradient(145deg, rgba(52, 227, 255, .2), rgba(47, 107, 255, .05));
  clip-path: polygon(50% 0, 88% 14%, 84% 60%, 68% 84%, 50% 100%, 32% 84%, 16% 60%, 12% 14%);
  border: 2px solid var(--signal);
}
.panel__check { z-index: 1; width: 64px; height: 35px; transform: rotate(-45deg) translate(5px, -5px); border-bottom: 7px solid #fff; border-left: 7px solid #fff; }
.panel__route { margin: 0 1.2rem 1.2rem; padding: .85rem 1rem; overflow: hidden; color: var(--soft); border: 1px solid var(--line); border-radius: 11px; background: rgba(0, 0, 0, .24); font-family: var(--mono); font-size: .77rem; text-overflow: ellipsis; white-space: nowrap; }
.panel__route b { color: var(--fav-hot); font-weight: 700; }

/* Interactive bonus wheel, restored from the favbet-site visual system. */
.dot-live {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 0 0 rgba(37, 208, 122, .6);
  animation: live-beat 2s infinite;
}
@keyframes live-beat {
  70% { box-shadow: 0 0 0 9px rgba(37, 208, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 208, 122, 0); }
}
.wheelbox {
  position: relative;
  width: min(100%, 500px);
  margin-inline: auto;
  padding: 1.3rem 1.3rem 1.5rem;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(28, 46, 132, .92), rgba(7, 14, 58, .96));
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .92), inset 0 1px 0 rgba(255, 255, 255, .08);
  isolation: isolate;
}
.wheelbox::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  padding: 1px;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(52, 227, 255, .58), transparent 38%, transparent 62%, rgba(230, 0, 126, .6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.wheelbox__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding-bottom: 1rem;
  color: var(--muted);
  border-bottom: 1px dashed var(--line-2);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.wheelbox__badge { display: inline-flex; align-items: center; gap: .48rem; color: var(--signal); white-space: nowrap; }
.wheel-stage { display: flex; align-items: center; gap: .35rem; margin-top: 1.05rem; }
.disc { position: relative; flex: 1 1 auto; min-width: 0; aspect-ratio: 1; cursor: pointer; }
.disc__svg { width: 100%; height: auto; }
.disc__spin { transform-box: view-box; transform-origin: 50% 50%; transition: transform 4.8s cubic-bezier(.14, .82, .2, 1); }
.wheel-bulb { transform-box: fill-box; transform-origin: center; animation: bulb-pulse 1.7s ease-in-out infinite alternate; }
@keyframes bulb-pulse { to { opacity: .35; transform: scale(.72); } }
.pin {
  position: absolute;
  z-index: 2;
  top: -2px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 20px solid var(--fav);
  border-inline: 11px solid transparent;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .6));
  translate: -50% 0;
  transition: translate .12s var(--ease);
}
.disc.knock .pin { translate: -50% -3px; }
.lever {
  position: relative;
  display: flex;
  flex: 0 0 46px;
  align-self: center;
  align-items: center;
  justify-content: flex-end;
  height: 150px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
}
.lever__base { width: 34px; height: 14px; border: 1px solid var(--line-2); border-radius: 5px; background: linear-gradient(#1b2a72, #0a1244); }
.lever__arm {
  position: absolute;
  bottom: 9px;
  left: 50%;
  width: 9px;
  height: 118px;
  border-radius: 5px;
  background: linear-gradient(90deg, #5a6ba8, #c9d4ff 45%, #4d5c95);
  translate: -50% 0;
  transform-origin: 50% 100%;
  transition: transform .5s var(--ease);
}
.lever__ball {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--fav-hot), #a3005a 70%);
  box-shadow: 0 0 22px -4px rgba(255, 59, 160, .85), inset 0 -3px 6px rgba(0, 0, 0, .45);
  translate: -50% 0;
}
.lever:hover .lever__arm { transform: rotate(7deg); }
.lever.pulled .lever__arm { transform: rotate(30deg); }
.lever:disabled { cursor: progress; }
.lever:disabled .lever__ball { opacity: .55; }
.wout { display: flex; min-height: 124px; margin-top: 1.05rem; padding-top: 1.05rem; border-top: 1px dashed var(--line-2); flex-direction: column; justify-content: center; }
.wout__hint { margin: 0; color: var(--dim); font-size: .78rem; text-align: center; }
.wout__hint b { display: block; margin-top: .35rem; color: var(--signal); font-family: var(--mono); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.wout__label { margin: 0; color: var(--dim); font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.wout__prize { margin: .35rem 0 0; color: #fff; font-size: clamp(1rem, .9rem + .38vw, 1.25rem); font-weight: 700; line-height: 1.3; text-wrap: balance; }
.wout__btns { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.wout__btns .btn { flex: 1 1 auto; }
.wout__res { animation: wheel-pop .45s var(--ease) both; }
@keyframes wheel-pop { from { opacity: 0; transform: translateY(10px); } }

/* Moving topic ticker: same motion language as the source, without invented live odds. */
.tick {
  position: relative;
  overflow: hidden;
  padding-block: .72rem;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--ink-950), var(--ink-900) 50%, var(--ink-950));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.tick__track { display: flex; width: max-content; animation: ticker-slide 40s linear infinite; }
.tick:hover .tick__track, .tick:focus .tick__track { animation-play-state: paused; }
@keyframes ticker-slide { to { transform: translate3d(-50%, 0, 0); } }
.tick__run { display: flex; flex: none; gap: 2.5rem; padding-inline: 1.25rem; }
.tick__i { display: inline-flex; align-items: center; gap: .7rem; color: var(--muted); font-size: .78rem; white-space: nowrap; }
.tick__i b { color: var(--text); font-weight: 650; }
.tick__tag { padding: .14rem .5rem; color: var(--fav-hot); border: 1px solid var(--line-2); border-radius: 6px; font-family: var(--mono); font-size: .72rem; }
.tick__pulse { width: 5px; height: 5px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 10px rgba(52, 227, 255, .8); }

/* Responsive carousel restored from favbet-site, with corrected dynamic snap points. */
.feature-carousel {
  padding-block: clamp(3.8rem, 8vw, 6.5rem);
  background: radial-gradient(90% 60% at 15% 0%, rgba(47, 107, 255, .16), transparent 62%), radial-gradient(70% 55% at 95% 90%, rgba(230, 0, 126, .1), transparent 65%);
  content-visibility: auto;
  contain-intrinsic-size: auto 650px;
}
.feature-carousel__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.feature-carousel__head h2 { margin: .5rem 0 0; font-family: var(--display); font-size: clamp(2rem, 1.55rem + 1.8vw, 3.35rem); font-weight: 850; line-height: 1; letter-spacing: -.035em; text-wrap: balance; }
.feature-carousel__head p:not(.kicker) { max-width: 54ch; margin: .75rem 0 0; color: var(--muted); }
.kicker { margin: 0; color: var(--fav); font-family: var(--mono); font-size: .73rem; letter-spacing: .15em; text-transform: uppercase; }
.carousel-controls { display: flex; align-items: center; gap: .6rem; margin-inline-start: auto; }
.carousel-control {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--muted);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: rgba(20, 34, 100, .28);
  cursor: pointer;
  place-items: center;
  transition: background .22s, color .22s, border-color .22s, transform .22s;
}
.carousel-control:hover:not(:disabled) { color: #fff; border-color: var(--fav); background: var(--fav); transform: translateY(-2px); }
.carousel-control:disabled { cursor: not-allowed; opacity: .3; }
.carousel-rail {
  display: flex;
  gap: 1.1rem;
  padding: .6rem 0 1.8rem;
  overflow-x: auto;
  cursor: grab;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-rail::-webkit-scrollbar { display: none; }
.carousel-rail.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.carousel-rail.dragging .carousel-card { pointer-events: none; }
.carousel-card {
  --card-hue: var(--beam);
  position: relative;
  display: flex;
  min-height: 340px;
  flex: 0 0 clamp(255px, 78vw, 340px);
  padding: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(20, 36, 110, .76), rgba(6, 12, 48, .92));
  isolation: isolate;
  flex-direction: column;
  scroll-snap-align: start;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.carousel-card::before { position: absolute; z-index: -1; inset: 0; content: ""; opacity: .75; background: radial-gradient(120% 80% at 80% 0%, var(--card-hue), transparent 62%); transition: opacity .35s; }
.carousel-card:hover { border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .92); transform: translateY(-6px); }
.carousel-card:hover::before { opacity: 1; }
.carousel-card__tag { align-self: flex-start; padding: .3rem .6rem; color: var(--signal); border: 1px solid var(--line-2); border-radius: 6px; background: rgba(0, 0, 0, .35); font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.carousel-card__tag--hot { color: #fff; border-color: transparent; background: var(--fav); }
.carousel-card h3 { margin: auto 0 .65rem; font-family: var(--display); font-size: clamp(1.45rem, 1.25rem + .6vw, 2rem); font-weight: 850; line-height: 1.02; letter-spacing: -.03em; }
.carousel-card p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.55; }
.carousel-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.carousel-card__num { color: #fff; font-family: var(--mono); font-size: 1.12rem; font-weight: 650; font-variant-numeric: tabular-nums; }
.carousel-card__num i { display: block; margin-top: .15rem; color: var(--dim); font-size: .62em; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.carousel-card__go { display: grid; width: 38px; height: 38px; flex: none; border: 1px solid var(--line-2); border-radius: 50%; place-items: center; transition: background .25s, border-color .25s, transform .25s var(--ease); }
.carousel-card:hover .carousel-card__go { border-color: var(--fav); background: var(--fav); transform: translateX(3px); }
.carousel-dots { display: flex; min-height: 8px; gap: .45rem; justify-content: center; }
.carousel-dot { width: 22px; height: 4px; padding: 0; border: 0; border-radius: 2px; background: var(--line-2); cursor: pointer; transition: background .3s, width .3s var(--ease); }
.carousel-dot[aria-current="true"] { width: 38px; background: var(--fav); }

.content {
  position: relative;
  padding-block: clamp(3.8rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-950), rgba(10, 20, 80, .34));
}
.prose { max-width: var(--prose); margin-inline: auto; }
.prose > :first-child { margin-top: 0; }
.prose h2, .prose h3 { color: #fff; font-family: var(--display); text-wrap: balance; scroll-margin-top: 110px; }
.prose h2 { margin: 3rem 0 1rem; font-size: clamp(1.65rem, 1.38rem + 1vw, 2.35rem); line-height: 1.12; letter-spacing: -.025em; }
.prose h3 { margin: 2.1rem 0 .75rem; font-size: clamp(1.2rem, 1.08rem + .48vw, 1.55rem); line-height: 1.25; }
.prose p { margin: 0 0 1.15rem; color: var(--soft); }
.prose ul, .prose ol { margin: 0 0 1.45rem; padding-inline-start: 1.35rem; color: var(--soft); }
.prose li { margin-bottom: .55rem; }
.prose li::marker { color: var(--fav); font-family: var(--mono); font-weight: 700; }
.prose strong { color: #fff; }
.prose code { padding: .16rem .38rem; color: var(--signal); border: 1px solid var(--line); border-radius: 5px; background: rgba(52, 227, 255, .055); font-family: var(--mono); font-size: .9em; }
.prose a { color: var(--signal); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: #fff; text-decoration-color: var(--fav); }
.prose blockquote { position: relative; margin: 1.8rem 0; padding: .35rem 0 .35rem 1.35rem; color: var(--muted); border-inline-start: 3px solid var(--fav); font-size: clamp(1.05rem, 1rem + .3vw, 1.25rem); line-height: 1.55; }
.prose blockquote p { margin: 0; color: inherit; }
.table-scroll { margin: 1.4rem 0 2rem; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(6, 12, 48, .58); }
.prose table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: .88rem; }
.prose th, .prose td { padding: .78rem 1rem; border-bottom: 1px solid var(--line); text-align: start; vertical-align: top; }
.prose th { color: var(--dim); background: rgba(0, 0, 0, .28); font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.prose tbody tr:last-child td { border-bottom: 0; }
.prose tbody tr:hover { background: rgba(47, 107, 255, .08); }
.article-visual { position: relative; margin: clamp(2rem, 5vw, 3.5rem) 0; overflow: hidden; border: 1px solid var(--line-2); border-radius: var(--radius-lg); background: var(--ink-900); box-shadow: 0 34px 70px -40px rgba(0, 0, 0, .95); }
.article-visual::after { position: absolute; inset: 0; content: ""; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .045); border-radius: inherit; }
.article-visual img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.context-note { margin-top: 3rem; padding: 1.35rem 1.45rem; color: var(--soft); border: 1px solid var(--line-2); border-radius: var(--radius); background: linear-gradient(145deg, rgba(47, 107, 255, .11), rgba(230, 0, 126, .055)); }
.context-note strong { color: #fff; }
.end-cta { display: grid; align-items: center; gap: 1.25rem; margin-top: 3rem; padding: clamp(1.4rem, 4vw, 2.2rem); border: 1px solid var(--line-2); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(24, 42, 124, .78), rgba(7, 14, 58, .96)); box-shadow: 0 32px 70px -45px #000; }
.end-cta h2 { margin: 0; font-size: clamp(1.4rem, 1.22rem + .75vw, 1.9rem); }
.end-cta p { margin: .45rem 0 0; color: var(--muted); }
.end-cta .btn { justify-self: start; }

.ftr { padding-block: 2.7rem 2rem; border-top: 1px solid var(--line); background: var(--ink-950); }
.ftr__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.ftr__copy { max-width: 62ch; margin: 0; color: var(--dim); font-size: .82rem; }
.ftr__bar { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.3rem; margin-top: 1.8rem; padding-top: 1.4rem; color: var(--dim); border-top: 1px solid var(--line); font-size: .76rem; }
.age { display: grid; flex: none; width: 42px; height: 42px; color: var(--down); border: 2px solid var(--down); border-radius: 50%; place-items: center; font-family: var(--mono); font-size: .8rem; font-weight: 800; }
.ftr__domain { margin-inline-start: auto; color: var(--muted); font-family: var(--mono); }
.rise { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.rise.in { opacity: 1; transform: none; }

@media (min-width: 980px) {
  .hero__in--home { grid-template-columns: minmax(0, 1.02fr) minmax(400px, .98fr); }
  .end-cta { grid-template-columns: 1fr auto; }
  .end-cta .btn { justify-self: end; }
}
@media (max-width: 930px) {
  .hdr__in { row-gap: .45rem; }
  .nav { order: 3; flex-basis: 100%; justify-content: flex-start; overflow-x: auto; padding-top: .25rem; border-top: 1px solid var(--line); scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
}
@media (max-width: 620px) {
  .hdr__in { min-height: 66px; column-gap: .42rem; }
  .hdr__actions { gap: .35rem; }
  .hdr__actions .btn { padding-inline: .68rem; font-size: .67rem; letter-spacing: .025em; }
  .lang-switch a { min-width: 34px; padding-inline: .36rem; }
  .hero { padding-top: 2.7rem; }
  .wheelbox { padding: 1.05rem; border-radius: 20px; }
  .wheelbox__hd { font-size: .66rem; }
  .wout__btns .btn { min-width: 140px; }
  .hero__points { display: grid; }
  .prose table { min-width: 540px; }
  .article-visual { margin-inline: calc(var(--pad) * -.55); border-radius: 14px; }
}
@media (max-width: 410px) {
  .logo { padding-inline: .48rem; }
  .logo__word { display: none; }
  .hdr__actions .btn--fav { padding-inline: .58rem; }
  .hero__actions .btn { width: 100%; }
  .wheelbox__hd { align-items: flex-start; flex-direction: column; }
  .wheel-stage { gap: 0; }
  .lever { flex-basis: 38px; }
  .wout__btns .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .rise { opacity: 1; transform: none; }
}
