/* thrillora-hub.games — Jackpot World editorial promo (dark / neon accent) */
:root {
  --bg0: #07090e;
  --bg1: #0d1219;
  --surface: #141c28;
  --surface-2: #1a2433;
  --ink: #e8edf5;
  --muted: #9aa8bc;
  --accent: #ff4d6a;
  --accent-dim: rgba(255, 77, 106, 0.15);
  --cyan: #2ee6d6;
  --cyan-dim: rgba(46, 230, 214, 0.12);
  --line: rgba(232, 237, 245, 0.08);
  --glow: 0 0 40px rgba(255, 77, 106, 0.25);
  --radius: 10px;
  --radius-lg: 20px;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg0);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(255, 77, 106, 0.18), transparent 50%),
    radial-gradient(ellipse 90% 60% at 100% 10%, rgba(46, 230, 214, 0.12), transparent 45%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 40%);
  min-height: 100vh;
}

a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}
a:hover {
  color: #5ff5e8;
  text-decoration: underline;
}

img.thr-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

/* Age gate */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(7, 9, 14, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-overlay.hidden {
  display: none;
}

.age-panel {
  width: min(460px, 100%);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--glow), 0 24px 80px rgba(0, 0, 0, 0.5);
  padding: 2rem 2rem 1.75rem;
  position: relative;
}

.age-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.age-panel-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  border: 2px solid var(--cyan-dim);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.age-panel h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.age-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
}

.age-slider-captcha {
  margin: 1.25rem 0;
}

.age-slider-captcha label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.slider-track {
  position: relative;
  height: 48px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  overflow: hidden;
}

.slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan-dim), var(--accent-dim));
  pointer-events: none;
  border-radius: 999px 0 0 999px;
}

.slider-track input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: grab;
  z-index: 2;
}

.age-cta {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  color: #0a0c10;
  background: linear-gradient(135deg, var(--cyan), #7ff8eb);
  box-shadow: 0 8px 24px rgba(46, 230, 214, 0.35);
}

.age-cta:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.age-hint {
  font-size: 0.8rem !important;
  margin-top: 0.75rem !important;
  opacity: 0.85;
}

/* Shell */
.thr-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

/* Top bar */
.thr-strip {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

/* Header */
.thr-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.thr-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
}
.thr-brand:hover {
  text-decoration: none;
  color: var(--accent);
}

.thr-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.thr-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
}

@media (min-width: 841px) {
  .thr-nav {
    flex: 1;
    justify-content: center;
  }
}
.thr-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}
.thr-nav a:hover {
  color: var(--ink);
}

.thr-nav-toggle {
  display: none;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0.45rem 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
}

.thr-nav-panel {
  display: contents;
}

@media (max-width: 840px) {
  .thr-nav-toggle {
    display: inline-flex;
  }
  .thr-nav-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0.75rem 0 0;
    border-top: 1px solid var(--line);
    margin-top: 0.5rem;
  }
  .thr-nav-panel.open {
    display: flex;
  }
}

/* CTA badge */
.thr-play-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
}
.thr-play-badge img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.thr-header-cta .thr-play-badge {
  max-width: 168px;
}

/* Welcome / store copy block */
.thr-welcome {
  margin: 2.25rem 0 1.5rem;
  padding: 1.5rem 1.5rem 1.35rem;
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}

.thr-welcome strong {
  color: var(--cyan);
  font-weight: 700;
}

.thr-welcome p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}
.thr-welcome p:last-child {
  margin-bottom: 0;
}

/* Hero */
.thr-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 2rem;
}

@media (max-width: 900px) {
  .thr-hero {
    grid-template-columns: 1fr;
  }
}

.thr-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.thr-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.thr-lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38ch;
}

.thr-logo-cluster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  max-width: 320px;
  margin: 0 auto;
}

.thr-logo-cell {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.65rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.thr-logo-cell:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 140px;
  margin: 0 auto;
  aspect-ratio: 1;
}

/* Video */
.thr-video-wrap {
  margin: 2rem 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.thr-video-wrap iframe {
  width: 100%;
  aspect-ratio: 1335 / 751;
  height: auto;
  min-height: 200px;
  display: block;
  border: 0;
}

.thr-video-cap {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

/* Feature grid */
.thr-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 0.35rem;
  color: var(--cyan);
}

.thr-section-sub {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 52ch;
}

.thr-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.thr-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.2s ease, border-color 0.2s;
}

.thr-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 77, 106, 0.35);
}

.thr-shot {
  aspect-ratio: 9 / 16;
  max-height: 280px;
  margin: 0 auto;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}

.thr-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0;
  color: var(--accent);
}

.thr-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  flex: 1;
}

.thr-card-foot {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

.thr-icon-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

/* Alternating rows */
.thr-split-section {
  margin: 3rem 0;
}

.thr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
  .thr-split {
    grid-template-columns: 1fr;
  }
}

.thr-split.rev .thr-split-visual {
  order: 2;
}
.thr-split.rev .thr-split-copy {
  order: 1;
}

@media (max-width: 800px) {
  .thr-split.rev .thr-split-visual,
  .thr-split.rev .thr-split-copy {
    order: unset;
  }
}

.thr-split-visual {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-height: 200px;
  display: grid;
  place-items: center;
}

.thr-split-visual-inner {
  width: min(200px, 70vw);
  height: min(200px, 70vw);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--cyan-dim);
}

.thr-split-copy h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cyan);
  margin: 0 0 0.6rem;
}

.thr-split-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

/* Page blocks */
.thr-page-hero {
  padding: 2rem 0 1rem;
}

.thr-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.thr-prose {
  color: var(--muted);
}
.thr-prose p {
  margin: 0 0 1rem;
}
.thr-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.thr-prose h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}

.thr-inline-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.thr-inline-logos > div {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 0.35rem;
}

/* CTA block */
.thr-cta-band {
  text-align: center;
  padding: 3rem 1.5rem;
  margin: 2.5rem 0 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface) 0%, #0f1622 100%);
  border: 1px solid var(--line);
}

.thr-cta-band .thr-icon-round {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
}

.thr-cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
}

.thr-cta-band p {
  margin: 0 auto 1.25rem;
  color: var(--muted);
  max-width: 46ch;
}

.thr-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Footer */
.thr-footer {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.thr-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.thr-footer-brand {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  max-width: 420px;
}

.thr-footer-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--surface-2);
}

.thr-footer-copy {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.thr-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}
.thr-footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
}

.thr-legal-note {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.9;
  margin: 1rem 0 0;
  max-width: 900px;
}
