@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* metric-matched fallback for the display webfont — reduces font-swap
   reflow (CLS) on first paint by aligning the system-ui fallback box
   size to Onest's typical glyph metrics before the webfont loads */
@font-face {
  font-family: "tn-display-fallback";
  src: local("Arial");
  size-adjust: 104%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

:root {
  --tn-bg: #0d1526;
  --tn-bg-deep: #08101d;
  --tn-surface: #152036;
  --tn-surface-2: #1b2a46;
  --tn-line: #2b3d5c;
  --tn-ink: #f2f5fb;
  --tn-ink-dim: #a7b3c9;
  --tn-primary: #2457c4;
  --tn-primary-rgb: 36, 87, 196;
  --tn-accent: #5e86e8;
  --tn-accent-rgb: 94, 134, 232;
  --tn-cta: #2457c4;
  --tn-cta-hover: #1c449e;
  --tn-gold: #f2b74a;
  --tn-ff-display: "Onest", "tn-display-fallback", system-ui, "Segoe UI", Arial, sans-serif;
  --tn-ff-body: "PT Sans", system-ui, "Segoe UI", Arial, sans-serif;
  --tn-fs-body: 1rem;
  --tn-fs-small: 0.8125rem;
  --tn-fs-card: 1.2rem;
  --tn-fs-h2: clamp(1.4rem, 1.05rem + 1.6vw, 2rem);
  --tn-fs-hero: clamp(1.7rem, 1.05rem + 3vw, 2.7rem);
  --tn-lh: 1.64;
  --tn-r-xs: 6px;
  --tn-r-s: 10px;
  --tn-r-m: 16px;
  --tn-r-pill: 999px;
  --tn-header-h: 62px;
  --tn-rail-w: 252px;
  --tn-gap-section: 68px;
  --tn-gap-section-mob: 44px;
  --tn-gap: 20px;
  --tn-ease-in: cubic-bezier(0.19, 1, 0.22, 1);
  --tn-ease-out: cubic-bezier(0.6, 0, 0.9, 0.2);
  --tn-ease-tog: cubic-bezier(0.68, -0.05, 0.32, 1.05);
  --tn-t-fast: 150ms;
  --tn-t-med: 260ms;
  --tn-t-slow: 380ms;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--tn-header-h) + 16px);
  overflow-x: clip;
  color-scheme: dark;
  background-color: var(--tn-bg);
}

body {
  background: var(--tn-bg) radial-gradient(ellipse 820px 480px at -6% 4%, rgba(94, 134, 232, 0.16), transparent 58%),
              radial-gradient(ellipse 760px 520px at 108% 92%, rgba(36, 87, 196, 0.18), transparent 55%);
  background-attachment: fixed;
  background-color: var(--tn-bg);
  color: var(--tn-ink);
  font-family: var(--tn-ff-body);
  font-size: var(--tn-fs-body);
  line-height: var(--tn-lh);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { background: transparent; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: var(--tn-accent); text-decoration: none; }
ul, ol { padding-left: 1.4em; }

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--tn-bg), 0 0 0 4px var(--tn-primary);
}

::selection { background: rgba(var(--tn-primary-rgb), 0.35); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--tn-bg-deep); }
::-webkit-scrollbar-thumb { background: var(--tn-line); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--tn-ink-dim); }

.nowrap { white-space: nowrap; }

.tn-shell {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .tn-shell { padding-inline: 24px; }
}
.tn-shell--flush { padding-inline: 0; }

.skip-link {
  position: absolute;
  left: 8px; top: 8px; z-index: 300;
  padding: 10px 18px;
  border-radius: var(--tn-r-s);
  background: var(--tn-cta);
  color: #fff;
  transform: translateY(-200%);
  transition: transform var(--tn-t-fast) var(--tn-ease-in);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ============ LEFT PERSISTENT SIDEBAR RAIL ============ */
.tn-shell-flex {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
}
.tn-main-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tn-aside {
  flex-shrink: 0;
  width: var(--tn-rail-w);
  background: var(--tn-bg-deep);
  border-right: 1px solid var(--tn-line);
  display: none;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 120;
}
.tn-aside__head { display: none; }
.tn-aside__brand {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 20px 14px;
  min-height: var(--tn-header-h);
}
.tn-aside__brand svg { height: 24px; width: auto; color: var(--tn-ink); }
.tn-aside__pill {
  margin: 0 16px 18px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border-radius: var(--tn-r-pill);
  background: var(--tn-surface);
  box-shadow: inset 0 0 0 1px var(--tn-line);
  font-size: var(--tn-fs-small);
  color: var(--tn-ink-dim);
  width: max-content;
}
.tn-pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34d17c;
  animation: tn-pulse-dot 1.4s ease-in-out infinite;
}
@keyframes tn-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}
.tn-aside__nav {
  padding: 4px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tn-aside-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--tn-r-s);
  color: var(--tn-ink-dim);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--tn-t-fast) var(--tn-ease-tog), color var(--tn-t-fast) var(--tn-ease-tog);
}
.tn-aside-link:hover { background: var(--tn-surface); color: var(--tn-ink); }
.tn-aside-link.is-active {
  background: linear-gradient(90deg, rgba(var(--tn-primary-rgb), 0.22), transparent);
  color: var(--tn-ink);
  box-shadow: inset 2px 0 0 var(--tn-accent);
}
.tn-aside__cta {
  padding: 12px 16px 20px;
  border-top: 1px solid var(--tn-line);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tn-aside__safe {
  padding: 14px 16px 20px;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--tn-fs-small);
  color: var(--tn-ink-dim);
}
.tn-aside__age {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--tn-accent);
  font-family: var(--tn-ff-display);
  font-weight: 700; font-size: 0.72rem;
}

@media (min-width: 1100px) {
  .tn-aside { display: flex; }
}

/* mobile/tablet: aside becomes off-canvas drawer */
@media (max-width: 1099px) {
  .tn-aside {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(300px, 86vw);
    transform: translateX(-100%);
    transition: transform var(--tn-t-slow) var(--tn-ease-tog);
    z-index: 220;
  }
  .tn-aside.is-open { transform: translateX(0); display: flex; }
  .tn-aside__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px 6px;
  }
  .tn-aside-close {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--tn-r-s);
    color: var(--tn-ink-dim);
    font-size: 1.2rem;
  }
  .tn-aside-close:hover { background: var(--tn-surface); color: var(--tn-ink); }
}

.tn-scrim {
  position: fixed; inset: 0;
  z-index: 210;
  background: rgba(3, 6, 13, 0.66);
  opacity: 0; pointer-events: none;
  transition: opacity var(--tn-t-med) var(--tn-ease-tog);
}
.tn-scrim.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 1100px) { .tn-scrim { display: none; } }

/* ============ TOP HEADER (slim, burger + logo + CTA only) ============ */
.tn-header {
  position: sticky;
  top: 0;
  z-index: 140;
  background: var(--tn-bg-deep);
  border-bottom: 1px solid var(--tn-line);
}
.tn-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--tn-header-h);
}
.tn-burger {
  width: 44px; height: 44px; flex-shrink: 0;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  padding: 10px 11px;
  border-radius: var(--tn-r-s);
  transition: background var(--tn-t-fast) var(--tn-ease-tog);
}
.tn-burger:hover { background: var(--tn-surface); }
.tn-burger span {
  display: block; height: 2px; border-radius: var(--tn-r-pill);
  background: var(--tn-ink);
  transition: transform var(--tn-t-med) var(--tn-ease-tog), opacity var(--tn-t-med) var(--tn-ease-tog);
}
.tn-burger span:nth-child(1) { width: 100%; }
.tn-burger span:nth-child(2) { width: 66%; }
.tn-burger span:nth-child(3) { width: 86%; }
.tn-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tn-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tn-burger[aria-expanded="true"] span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

.tn-header__brand {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 44px;
}
.tn-header__brand svg { height: 22px; width: auto; color: var(--tn-ink); }
.tn-header__brand span { font-family: var(--tn-ff-display); font-weight: 700; font-size: 1rem; }
.tn-header__spacer { flex: 1; }
.tn-header__actions { display: flex; align-items: center; gap: 8px; }
.tn-header__cta {
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: var(--tn-r-s);
  font-weight: 700;
  font-size: 0.86rem;
  transition: background var(--tn-t-med) var(--tn-ease-tog), box-shadow var(--tn-t-med) var(--tn-ease-tog);
}
.tn-header__cta--ghost {
  background: rgba(242, 245, 251, 0.06);
  box-shadow: inset 0 0 0 1px rgba(242, 245, 251, 0.28);
  color: var(--tn-ink);
  display: none;
}
.tn-header__cta--solid {
  background: var(--tn-cta);
  color: #fff;
}
.tn-header__cta--solid:hover { background: var(--tn-cta-hover); }

@media (min-width: 1100px) {
  .tn-burger { display: none; }
  .tn-header { display: none; }
}
@media (min-width: 560px) and (max-width: 1099px) {
  .tn-header__cta--ghost { display: inline-flex; }
}

/* ============ HERO — single card, diagonal clip visual ============ */
.tn-hero { padding-block: clamp(20px, 3.4vw, 34px) 6px; }
.tn-hero__viewport {
  position: relative;
  overflow: clip;
  border-radius: var(--tn-r-m);
  background: linear-gradient(155deg, var(--tn-surface) 0%, var(--tn-bg-deep) 120%);
  border: 1px solid var(--tn-line);
}
.tn-hero__viewport::before {
  content: "";
  position: absolute;
  top: -140px; left: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--tn-primary-rgb), 0.32), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.tn-hero__slide {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 30px 22px;
}
.tn-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--tn-ff-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tn-accent);
}
.tn-hero__eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--tn-accent); border-radius: 2px; }
.tn-hero__title {
  margin-top: 14px;
  font-family: var(--tn-ff-display);
  font-weight: 700;
  font-size: var(--tn-fs-hero);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.tn-hero__lead {
  margin-top: 12px;
  max-width: 54ch;
  color: var(--tn-ink-dim);
  font-size: 0.98rem;
}
.tn-hero__row { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; }
.tn-hero__meta {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  font-size: var(--tn-fs-small);
  color: var(--tn-ink-dim);
}
.tn-hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.tn-hero__age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--tn-accent);
  font-weight: 700; font-size: 0.7rem;
}

.tn-hero__visual {
  position: relative;
  width: 100%;
  min-height: 220px;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  overflow: clip;
  border-radius: 0;
}
.tn-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }

.tn-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--tn-r-s);
  background: var(--tn-cta);
  color: #fff;
  font-weight: 700;
  transition: background var(--tn-t-med) var(--tn-ease-tog);
}
.tn-btn:hover { background: var(--tn-cta-hover); }
.tn-btn--ghost {
  background: rgba(242, 245, 251, 0.06);
  box-shadow: inset 0 0 0 1px rgba(242, 245, 251, 0.32);
}
.tn-btn--ghost:hover { background: rgba(242, 245, 251, 0.12); }
.tn-btn--pulse { position: relative; animation: tn-pulse-glow 2.3s var(--tn-ease-tog) infinite; }
.tn-btn--pulse:hover { animation-play-state: paused; }
@keyframes tn-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--tn-primary-rgb), 0.55); }
  70% { box-shadow: 0 0 0 13px rgba(var(--tn-primary-rgb), 0); }
}

@media (min-width: 860px) {
  .tn-hero__slide {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    padding: 48px 48px 48px 40px;
    min-height: 380px;
  }
  .tn-hero__visual { min-height: 300px; border-radius: 0 var(--tn-r-m) var(--tn-r-m) 0; margin-block: -48px; margin-right: -48px; }
}

/* ---- static win/online/jackpot ticker under hero ---- */
.tn-ticker {
  padding-block: 22px;
  border-top: 1px solid var(--tn-line);
}
.tn-ticker__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
}
@media (min-width: 640px) {
  .tn-ticker__grid { grid-template-columns: repeat(3, 1fr); }
}
.tn-ticker__cell {
  display: flex; flex-direction: column; gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--tn-line);
  border-radius: var(--tn-r-s);
  background: var(--tn-surface);
}
.tn-ticker__label {
  font-family: var(--tn-ff-display);
  font-weight: 600; font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tn-accent);
}
.tn-ticker__value {
  font-family: var(--tn-ff-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-variant-numeric: tabular-nums;
}
.tn-ticker__unit { font-size: 0.82rem; color: var(--tn-ink-dim); }

/* ============ MAIN CONTENT AREA ============ */
.tn-main { min-width: 0; flex: 1; }
.tn-main > .tn-shell > * + * { margin-block-start: var(--tn-gap-section-mob); }
@media (min-width: 768px) {
  .tn-main > .tn-shell > * + * { margin-block-start: var(--tn-gap-section); }
}

.tn-article-section { }

/* ============ copy-block (article typography) ============ */
.tn-copy { word-wrap: break-word; overflow-wrap: break-word; max-width: 800px; }
.tn-copy :is(h1, h2, h3, p):first-child { margin-top: 0; }
.tn-copy p { margin: 0 0 1.2em; line-height: var(--tn-lh); color: var(--tn-ink-dim); }
.tn-copy strong, .tn-copy b { font-weight: 700; color: var(--tn-ink); }
.tn-copy h1, .tn-copy h2, .tn-copy h3 { margin: 1.3em 0 0.7em; line-height: 1.26; color: var(--tn-ink); }
.tn-copy ul, .tn-copy ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.tn-copy ul { list-style-type: none; padding-left: 0.2em; }
.tn-copy ul > li { position: relative; padding-left: 1.5em; }
.tn-copy ul > li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 2px;
  background: linear-gradient(135deg, var(--tn-primary), var(--tn-accent));
  transform: rotate(45deg);
}
.tn-copy ol { list-style-type: decimal; }
.tn-copy li { margin-bottom: 0.55em; color: var(--tn-ink-dim); }
.tn-copy li::marker { color: var(--tn-accent); }
.tn-copy a { color: var(--tn-accent); text-decoration: underline; transition: color var(--tn-t-fast); }
.tn-copy a:hover { color: var(--tn-ink); }
.tn-copy > *:last-child { margin-bottom: 0; }

.tn-copy h1 {
  font-family: var(--tn-ff-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 1.2rem + 2.1vw, 2.5rem);
  line-height: 1.14;
}
.tn-copy h2 {
  font-family: var(--tn-ff-display);
  font-weight: 700;
  font-size: var(--tn-fs-h2);
  padding-left: 16px;
  position: relative;
}
.tn-copy h2::before {
  content: "";
  position: absolute; left: 0; top: 0.14em; bottom: 0.14em;
  width: 4px;
  border-radius: var(--tn-r-pill);
  background: linear-gradient(180deg, var(--tn-primary), var(--tn-accent));
}
.tn-copy h3 {
  font-family: var(--tn-ff-display);
  font-weight: 600;
  font-size: 1.24rem;
}

/* ---- table wrap (mobile overflow-x) ---- */
.tn-table-wrap {
  margin: 1.6em 0 2em;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--tn-line) var(--tn-bg-deep);
  border: 1px solid var(--tn-line);
  border-radius: var(--tn-r-m);
}
.tn-table-wrap table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.93em;
  background: var(--tn-surface);
}
.tn-table-wrap th, .tn-table-wrap td {
  padding: 0.8em 1em;
  border-bottom: 1px solid var(--tn-line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: break-word;
}
.tn-table-wrap tr:last-child td { border-bottom: none; }
.tn-table-wrap th {
  font-family: var(--tn-ff-display);
  font-weight: 700;
  background: var(--tn-surface-2);
  color: var(--tn-ink);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tn-table-wrap td { color: var(--tn-ink-dim); }
.tn-table-wrap td:first-child { color: var(--tn-ink); font-weight: 600; }

/* ---- note-box callouts ---- */
.tn-note {
  margin: 1.8em 0;
  padding: 16px 18px;
  border-left: 3px solid var(--tn-accent);
  border-radius: var(--tn-r-s);
  background: var(--tn-surface);
  font-size: 0.95rem;
  color: var(--tn-ink-dim);
  transition: border-width var(--tn-t-fast) var(--tn-ease-tog), transform var(--tn-t-fast) var(--tn-ease-tog);
}
.tn-note:hover { border-left-width: 5px; transform: translateX(2px); }
.tn-note strong { color: var(--tn-ink); }
.tn-note--warn { border-left-color: var(--tn-gold); }

/* ---- mid-cta band ---- */
.tn-mid-cta {
  margin: 2em 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--tn-r-m);
  background: linear-gradient(135deg, var(--tn-surface) 0%, var(--tn-surface-2) 100%);
  border: 1px solid rgba(var(--tn-primary-rgb), 0.35);
}
.tn-mid-cta__text {
  font-family: var(--tn-ff-display);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--tn-ink);
  max-width: 46ch;
}
.tn-mid-cta__text span { color: var(--tn-accent); }

/* ============ numbered steps (registration) ============ */
.tn-steps { counter-reset: tn-step; display: grid; gap: 14px; margin: 1.6em 0 2em; }
.tn-step {
  counter-increment: tn-step;
  position: relative;
  display: flex; gap: 14px;
  padding: 16px 16px 16px 14px;
  border: 1px solid var(--tn-line);
  border-radius: var(--tn-r-m);
  background: var(--tn-surface);
  transition: border-color var(--tn-t-med) var(--tn-ease-tog);
}
.tn-step:hover { border-color: var(--tn-accent); }
.tn-step::before {
  content: counter(tn-step);
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tn-primary), var(--tn-accent));
  color: #fff;
  font-family: var(--tn-ff-display);
  font-weight: 700; font-size: 0.95rem;
}
.tn-step__body { color: var(--tn-ink-dim); padding-top: 3px; }
.tn-step__body strong { color: var(--tn-ink); }
@media (min-width: 640px) { .tn-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ============ datastrip (KPI) ============ */
.tn-datastrip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 560px) { .tn-datastrip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.tn-datastrip__item {
  padding: 16px 14px;
  border: 1px solid var(--tn-line);
  border-radius: var(--tn-r-m);
  background: var(--tn-surface);
  text-align: center;
}
.tn-datastrip__num { font-family: var(--tn-ff-display); font-weight: 700; font-size: 1.5rem; color: var(--tn-accent); }
.tn-datastrip__label { font-size: var(--tn-fs-small); color: var(--tn-ink-dim); margin-top: 4px; }

/* ============ section head ============ */
.tn-strip-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.tn-strip-head__group { display: flex; flex-direction: column; gap: 4px; }
.tn-strip-head__title { font-family: var(--tn-ff-display); font-weight: 700; font-size: var(--tn-fs-h2); line-height: 1.2; }
.tn-strip-head__link { font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
.tn-carousel-nav { display: none; gap: 8px; }
.tn-nav-btn {
  width: 36px; height: 36px; border-radius: var(--tn-r-s);
  background: var(--tn-surface-2); border: 1px solid var(--tn-line);
  color: var(--tn-ink-dim);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color var(--tn-t-fast), border-color var(--tn-t-fast);
}
.tn-nav-btn:hover { color: var(--tn-ink); border-color: var(--tn-accent); }
@media (min-width: 640px) { .tn-carousel-nav { display: flex; } }

/* ============ games grid — portrait carousel + hover overlay CTA ============ */
.tn-games-carousel {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 4px 10px;
  scrollbar-width: none;
}
.tn-games-carousel::-webkit-scrollbar { display: none; }
.tn-slot-card {
  flex: 0 0 168px;
  scroll-snap-align: start;
  position: relative;
  display: block;
  border-radius: var(--tn-r-m);
  overflow: clip;
  border: 1px solid var(--tn-line);
  background: var(--tn-surface);
  transition: border-color var(--tn-t-med) var(--tn-ease-tog), transform var(--tn-t-med) var(--tn-ease-tog);
}
@media (min-width: 480px) { .tn-slot-card { flex-basis: 190px; } }
@media (min-width: 860px) { .tn-slot-card { flex-basis: 210px; } }
.tn-slot-card:hover { border-color: var(--tn-accent); transform: translateY(-3px); }
.tn-slot-card__media { position: relative; aspect-ratio: 3 / 4; overflow: clip; background: var(--tn-surface-2); }
.tn-slot-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--tn-t-slow) var(--tn-ease-tog); }
.tn-slot-card:hover .tn-slot-card__media img { transform: scale(1.06); }
.tn-slot-card__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 16, 29, 0.88) 100%);
  opacity: 0;
  transition: opacity var(--tn-t-med) var(--tn-ease-tog);
}
.tn-slot-card:hover .tn-slot-card__overlay,
.tn-slot-card:focus-visible .tn-slot-card__overlay { opacity: 1; }
.tn-slot-card__cta {
  margin-bottom: 12px;
  padding: 8px 18px;
  border-radius: var(--tn-r-pill);
  background: #fff; color: var(--tn-bg-deep);
  font-weight: 700; font-size: 0.82rem;
}
.tn-slot-card__body { padding: 10px 12px; display: flex; flex-direction: column; gap: 3px; }
.tn-slot-card__title { font-weight: 700; font-size: 0.9rem; color: var(--tn-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tn-slot-card__provider { font-size: 0.76rem; color: var(--tn-ink-dim); }

/* ============ providers marquee ============ */
.tn-providers-strip { overflow: hidden; }
.tn-providers-strip__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.tn-providers-strip__track {
  display: flex; width: max-content; align-items: center;
  padding-block: 6px;
  animation: tn-providers-flow 30s linear infinite;
}
.tn-providers-strip__track:hover { animation-play-state: paused; }
@keyframes tn-providers-flow { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tn-providers-strip__cell {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 132px; height: 54px;
  margin-right: 12px;
  padding: 10px 16px;
  border: 1px solid var(--tn-line);
  border-radius: var(--tn-r-m);
  background: var(--tn-surface);
  transition: border-color var(--tn-t-fast), background var(--tn-t-fast);
}
.tn-providers-strip__cell:hover { border-color: var(--tn-accent); background: var(--tn-surface-2); }
.tn-providers-strip__cell img {
  max-width: 100%; max-height: 24px; object-fit: contain;
  filter: brightness(0) invert(0.86); opacity: 0.88;
  transition: filter var(--tn-t-fast), opacity var(--tn-t-fast);
}
.tn-providers-strip__cell:hover img { filter: brightness(0) invert(1); opacity: 1; }
.tn-providers-strip__cell--text {
  font-family: var(--tn-ff-display); font-weight: 600; font-size: 0.9rem;
  color: var(--tn-ink-dim); letter-spacing: 0.01em;
}
.tn-providers-strip__cell--text:hover { color: var(--tn-ink); }

/* ============ payments strip ============ */
.tn-payments-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.tn-payments-strip__cell {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 80px; height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--tn-line);
  border-radius: var(--tn-r-s);
  background: var(--tn-surface);
}
.tn-payments-strip__cell img { max-width: 100%; max-height: 20px; object-fit: contain; opacity: 0.92; }

/* ============ bonus — plain table + prose, NO cards ============ */
.tn-bonus-block { max-width: 800px; }
.tn-bonus-block h3 { margin-top: 1.5em; }

/* ============ CTA band (two-col asymmetric diagonal glow) ============ */
.tn-cta-band {
  position: relative;
  overflow: clip;
  padding: clamp(28px, 5.6vw, 46px) 26px;
  border-radius: var(--tn-r-m);
  background: linear-gradient(120deg, var(--tn-surface) 0%, var(--tn-bg-deep) 78%);
  border: 1px solid var(--tn-line);
  display: grid;
  gap: 20px;
}
.tn-cta-band::after {
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 320px;
  background: radial-gradient(circle, rgba(var(--tn-primary-rgb), 0.3), transparent 70%);
  pointer-events: none;
  transform: rotate(-12deg);
}
.tn-cta-band__title {
  position: relative;
  font-family: var(--tn-ff-display); font-weight: 700;
  font-size: var(--tn-fs-h2); max-width: 30ch;
}
.tn-cta-band__sub { position: relative; color: var(--tn-ink-dim); max-width: 48ch; }
.tn-cta-band__row { position: relative; display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 760px) {
  .tn-cta-band { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); align-items: center; }
  .tn-cta-band__row { justify-content: flex-end; }
}

/* ============ FAQ — plain numbered Q&A list, no JS accordion ============ */
.tn-faq-list {
  counter-reset: tn-faq;
  display: flex; flex-direction: column; gap: 0;
  margin-top: 6px;
  border-top: 1px solid var(--tn-line);
}
.tn-faq-item {
  counter-increment: tn-faq;
  padding: 20px 0;
  border-bottom: 1px solid var(--tn-line);
}
.tn-faq-item__q {
  position: relative;
  padding-left: 40px;
  font-family: var(--tn-ff-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--tn-ink);
  line-height: 1.4;
}
.tn-faq-item__q::before {
  content: counter(tn-faq, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--tn-ff-display);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--tn-accent);
  letter-spacing: 0.02em;
}
.tn-faq-item__a {
  margin-top: 10px;
  padding-left: 40px;
  color: var(--tn-ink-dim);
}

/* ============ back to top FAB ============ */
.tn-top-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 180;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--tn-surface);
  box-shadow: inset 0 0 0 1px var(--tn-line), 0 6px 16px rgba(0,0,0,0.35);
  color: var(--tn-ink);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--tn-t-med) var(--tn-ease-tog), transform var(--tn-t-med) var(--tn-ease-tog);
}
.tn-top-fab.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.tn-top-fab svg { width: 18px; height: 18px; }
@media (min-width: 1100px) { .tn-top-fab { right: 24px; bottom: 24px; } }

/* ============ sticky mobile bottom CTA ============ */
.tn-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  display: flex;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--tn-bg-deep);
  border-top: 1px solid var(--tn-line);
  transform: translateY(0);
  transition: transform var(--tn-t-med) var(--tn-ease-tog);
}
.tn-sticky-cta.is-hidden { transform: translateY(110%); }
.tn-sticky-cta a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; border-radius: var(--tn-r-s);
  background: var(--tn-cta); color: #fff; font-weight: 700;
}
@media (min-width: 1100px) { .tn-sticky-cta { display: none; } }

/* ============ reveal-on-scroll ============ */
.tn-reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--tn-t-slow) var(--tn-ease-in), transform var(--tn-t-slow) var(--tn-ease-in); }
.tn-reveal.is-visible { opacity: 1; transform: translateY(0); }
html:not(.js-enabled) .tn-reveal { opacity: 1; transform: none; }

/* ============ FOOTER — brand + 3 cols + inline legal ============ */
.tn-footer {
  margin-block-start: var(--tn-gap-section-mob);
  padding-block: 40px 24px;
  background: var(--tn-bg-deep);
  border-top: 1px solid var(--tn-line);
}
@media (min-width: 768px) { .tn-footer { margin-block-start: var(--tn-gap-section); } }
.tn-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tn-line);
}
@media (min-width: 640px) { .tn-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .tn-footer__grid { grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: var(--tn-gap); } }
.tn-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.tn-footer__brand svg { height: 24px; width: auto; opacity: 0.94; color: var(--tn-ink); }
.tn-footer__tagline { font-size: 0.9rem; color: var(--tn-ink-dim); max-width: 34ch; }
.tn-footer__age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--tn-accent); color: var(--tn-accent);
  font-family: var(--tn-ff-display); font-weight: 800; font-size: 0.86rem;
}
.tn-footer__col-title {
  font-family: var(--tn-ff-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--tn-accent);
  margin-bottom: 10px;
}
.tn-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.tn-footer__col a {
  display: inline-flex; align-items: center; min-height: 40px;
  color: var(--tn-ink-dim); font-size: 0.92rem;
  transition: color var(--tn-t-fast);
}
.tn-footer__col a:hover { color: var(--tn-accent); }
.tn-footer__legal {
  padding-top: 16px;
  display: flex; flex-wrap: wrap; row-gap: 8px; align-items: center; justify-content: space-between;
  color: var(--tn-ink-dim); font-size: 0.8rem;
}
.tn-footer__legal-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tn-footer__disclaimer { margin-top: 12px; max-width: 74ch; color: var(--tn-ink-dim); font-size: 0.78rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tn-btn--pulse, .tn-providers-strip__track, .tn-pulse-dot { animation: none; }
  .tn-aside, .tn-top-fab, .tn-sticky-cta, .tn-reveal { transition: none; }
}

/* fix: hide dead games-carousel arrows (only 4 slots, nothing to scroll) */


/* enrichment: hero mascot scene */
.tn-hero__visual{position:relative;overflow:hidden;background:radial-gradient(680px 420px at 70% 24%, rgba(94,134,232,.30), transparent 60%),linear-gradient(150deg,#16224a 0%,#101a36 60%,#0d1526 100%);}
.tn-hero__visual > svg,.tn-hero__emblem{opacity:.12 !important;}
.tn-hero__mascot{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;object-position:bottom center;z-index:2;pointer-events:none;filter:drop-shadow(0 18px 36px rgba(0,0,0,.5));}

/* ---- product screenshots / figures ---- */
.tn-figure{margin:24px 0;border:1px solid var(--tn-line);border-radius:var(--tn-r-m);overflow:hidden;background:var(--tn-surface-2);box-shadow:0 10px 30px rgba(5,10,22,.35);}
.tn-figure__img{display:block;width:100%;height:auto;}
.tn-figure__cap{padding:11px 16px;font-size:var(--tn-fs-small);line-height:1.5;color:var(--tn-ink-dim);border-top:1px solid var(--tn-line);}
.tn-figure--modal{max-width:380px;}
.tn-figure--banner{max-width:520px;}

/* carousel nav disabled state */
.tn-nav-btn:disabled{opacity:.32;cursor:default;pointer-events:none}
