
:root {
  --bg: #0c0d15;
  --panel: rgba(18, 20, 31, 0.82);
  --panel-strong: rgba(14, 16, 27, 0.96);
  --panel-border: rgba(255, 255, 255, 0.09);
  --text: #eef2f7;
  --muted: #aab4c6;
  --accent: #ff5b63;
  --accent-alt: #17e2d2;
  --gold: #f4c56b;
  --green: #63df9d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --wrap: min(1200px, calc(100% - 2rem));
  --ease: 240ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 91, 99, 0.12), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(23, 226, 210, 0.14), transparent 26%),
    linear-gradient(180deg, #090a10 0%, #0d101a 52%, #08090f 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.wrap { width: var(--wrap); margin: 0 auto; }
.page-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 22%, rgba(255, 91, 99, 0.08), transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(23, 226, 210, 0.08), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(244, 197, 107, 0.05), transparent 18%);
  z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }
section { padding: 2.2rem 0; }
.section-kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .75rem;
  color: var(--accent-alt);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-kicker::before, .eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
}
h1, h2, h3 {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  line-height: 1.15;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); max-width: 12ch; }
h2 { font-size: clamp(1.65rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p { margin: 0 0 1rem; color: var(--muted); }
strong { color: var(--text); }
ul, ol { margin: 1rem 0 1rem 1.2rem; padding: 0; color: var(--muted); }
li + li { margin-top: .55rem; }

.button-primary,
.button-secondary,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .82rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}
.button-primary, .nav-cta {
  background: linear-gradient(120deg, var(--accent), #ff8b52);
  color: #fff;
  box-shadow: 0 18px 36px rgba(255, 91, 99, 0.2);
}
.button-secondary {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: var(--text);
}
.button-primary:hover, .button-secondary:hover, .nav-cta:hover {
  transform: translateY(-2px);
}
.button-primary--small { min-height: 42px; padding: .7rem 1rem; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.masthead.is-scrolled {
  background: rgba(10, 12, 19, 0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.masthead-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  min-height: 84px;
}
.brand img { width: 172px; height: auto; }
.nav-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .55rem .75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
}
.nav-panel a {
  font-size: .95rem;
  color: #d9deea;
  padding: .45rem .7rem;
  border-radius: 999px;
  transition: background var(--ease), color var(--ease);
}
.nav-panel a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  padding: .8rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform var(--ease), opacity var(--ease);
}

.hero-panel { padding-top: 2.4rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 2rem;
  align-items: center;
}
.hero-copy { padding: 2rem 0; }
.lede p { font-size: 1.03rem; }
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin: 1.6rem 0 1.2rem;
}
.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: .75rem;
}
.hero-pills li {
  margin: 0;
  padding: .7rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #d8dfeb;
}
.hero-visual { position: relative; }
.hero-frame,
.media-card,
.content-card,
.insight-card,
.final-banner-inner,
.cookie-notice {
  background: linear-gradient(180deg, rgba(19, 21, 32, 0.94), rgba(11, 13, 20, 0.94));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}
.hero-frame {
  padding: 1rem;
  border-radius: var(--radius-xl);
}
.hero-frame figure,
.media-card figure {
  margin: 0;
}
.hero-frame img,
.media-card img,
.media-card figure img,
.live-media img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
  object-fit: cover;
}
figure figcaption {
  margin-top: .95rem;
  color: #b9c4d6;
  font-size: .92rem;
}
.hero-float {
  position: absolute;
  max-width: 230px;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(16, 18, 27, 0.86);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
}
.hero-float strong { display: block; font-size: 1rem; }
.hero-float span { display: block; margin-top: .35rem; color: var(--muted); font-size: .92rem; }
.card-a { left: -20px; bottom: 24px; }
.card-b { right: -12px; top: 26px; }

.section-intro { max-width: 720px; margin-bottom: 1.4rem; }
.facts-layout,
.double-panel-grid,
.feature-grid,
.security-grid,
.closing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.insight-stack { display: grid; gap: 1rem; }
.insight-card,
.content-card,
.media-card,
.final-banner-inner {
  border-radius: var(--radius-xl);
}
.insight-card,
.content-card { padding: 1.4rem; }
.insight-label {
  display: inline-flex;
  margin-bottom: .85rem;
  color: var(--accent-alt);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.insight-card strong {
  display: block;
  margin-bottom: .45rem;
  font-size: 1.15rem;
}
.content-card--table { overflow: hidden; }
.content-card--table .article-flow { overflow-x: auto; }
.double-panel,
.security-review,
.matrix-section,
.faq-section { padding-top: 1.3rem; }
.feature-grid { align-items: start; }
.media-card { padding: 1rem; }
.content-card--feature { position: relative; overflow: hidden; }
.content-card--feature::after,
.highlight-card::after {
  content: '';
  position: absolute;
  inset: auto -30px -50px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,91,99,0.16), transparent 65%);
  pointer-events: none;
}
.games-grid,
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.live-card .live-media { margin-bottom: 1rem; }
.live-media figure { margin: 0; }
.tabbed-section .tabs {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 1rem;
}
.tab-triggers {
  display: inline-flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.tab-trigger {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #d8e0eb;
  padding: .8rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.tab-trigger.is-active {
  background: linear-gradient(120deg, rgba(255,91,99,0.16), rgba(23,226,210,0.12));
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}
.media-card--small img { min-height: 100%; object-fit: cover; }
.highlight-actions,
.final-actions,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.highlight-actions { margin-top: 1.4rem; }
.badge {
  display: inline-flex;
  padding: .56rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: .88rem;
  font-weight: 700;
}
.final-banner { padding-bottom: 4rem; }
.final-banner-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
  padding: 1.6rem;
}
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.6rem 0 2.3rem;
  background: rgba(0,0,0,0.14);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand img { margin-bottom: 1rem; }
.footer-links h3 { margin-bottom: .85rem; }
.footer-links a {
  display: block;
  color: #d6dde9;
  margin-bottom: .55rem;
}
.footer-note p { margin-top: 1rem; }

.article-flow > *:first-child { margin-top: 0; }
.article-flow table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: .96rem;
}
.article-flow th,
.article-flow td {
  padding: .9rem .85rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}
.article-flow th {
  text-align: left;
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.article-flow tr:last-child td { border-bottom: 0; }
.article-flow h3 {
  margin-top: 1.35rem;
  margin-bottom: .8rem;
}
.article-flow figure { margin: 1.2rem 0 0; }
.article-flow blockquote {
  margin: 1rem 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--accent-alt);
  background: rgba(255,255,255,0.03);
}

.faq-list { display: grid; gap: .9rem; }
.faq-item {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19,21,32,0.94), rgba(11,13,20,0.94));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  background: transparent;
  color: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}
.faq-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  flex: 0 0 18px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-icon::after { opacity: 0; }
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--ease);
}
.faq-panel > * {
  overflow: hidden;
  padding: 0 1.3rem 0;
}
.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}
.faq-item.is-open .faq-panel > * {
  padding-bottom: 1.2rem;
}

.cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  width: min(360px, calc(100vw - 2rem));
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 20px;
}
.cookie-notice p { margin: .35rem 0 0; font-size: .94rem; }
.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 7rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(120deg, rgba(255,91,99,0.92), rgba(255,139,82,0.92));
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--ease), transform var(--ease);
  z-index: 12;
}
.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 120ms; }

@media (max-width: 1080px) {
  .nav-panel {
    position: absolute;
    top: calc(100% + .6rem);
    right: 1rem;
    width: min(320px, calc(100vw - 2rem));
    flex-direction: column;
    align-items: stretch;
    padding: .9rem;
    border-radius: 22px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-panel a { padding: .75rem .85rem; }
  .menu-toggle { display: inline-block; }
  .nav-cta { display: none; }
  .hero-grid,
  .facts-layout,
  .double-panel-grid,
  .feature-grid,
  .games-grid,
  .tab-panel-grid,
  .security-grid,
  .matrix-grid,
  .closing-grid,
  .footer-grid,
  .final-banner-inner {
    grid-template-columns: 1fr;
  }
  .masthead-inner { min-height: 76px; }
}

@media (max-width: 720px) {
  section { padding: 1.6rem 0; }
  .wrap { width: min(100% - 1rem, 1200px); }
  .hero-copy { padding-top: 1rem; }
  .content-card, .insight-card { padding: 1.05rem; }
  .hero-frame, .media-card, .tabs { padding: .8rem !important; }
  .hero-float {
    position: static;
    max-width: none;
    margin-top: .8rem;
  }
  .action-row, .final-actions, .highlight-actions { width: 100%; }
  .action-row a, .final-actions a, .highlight-actions a { width: 100%; }
  .button-primary, .button-secondary { width: 100%; }
  .cookie-notice {
    left: 1rem;
    right: 1rem;
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .article-flow table { min-width: 520px; }
}
