:root {
  --bg: #120c10;
  --bg-soft: #1b1117;
  --panel: rgba(37, 24, 31, 0.9);
  --panel-strong: rgba(49, 28, 38, 0.98);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f8efe8;
  --muted: #cdbdb4;
  --brand: #ff6a3d;
  --brand-strong: #ff8f4e;
  --brand-deep: #d93a27;
  --accent: #ffd166;
  --success: #75d09a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(255, 106, 61, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.09), transparent 24%),
    linear-gradient(180deg, #130b10 0%, #120c10 55%, #0d090c 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 42rem;
  height: 42rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  opacity: 0.14;
}

.site-shell::before {
  top: -12rem;
  left: -12rem;
  background: #ff6a3d;
}

.site-shell::after {
  right: -16rem;
  bottom: -18rem;
  background: #ffca64;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(18, 12, 16, 0.76);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark__dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: 0 0 0 0.35rem rgba(255, 106, 61, 0.14);
}

.brand-mark__text {
  font-size: 1rem;
}

.brand-mark__logo {
  display: block;
  height: 2rem;
  width: auto;
}

.brand-mark--footer .brand-mark__logo {
  height: 1.7rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  color: #000;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--accent), var(--brand-strong));
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 30px rgba(255, 106, 61, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.site-nav a.nav-cta,
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
  color: #000;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  width: 2.9rem;
  height: 2.9rem;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 4.8rem);
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 106, 61, 0.05), rgba(0, 0, 0, 0)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 1.08fr);
  gap: 2.4rem;
  align-items: center;
}

.hero--home__stack {
  display: grid;
  gap: 2rem;
}

.hero__grid--home-bottom {
  align-items: end;
}

.hero__copy {
  max-width: 48rem;
}

.hero__copy--headline {
  max-width: none;
}

.hero--home .hero__copy {
  max-width: none;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.callout-card h3,
.stack-card h3,
.feature-card h3,
.category-card h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  margin: 0;
  max-width: 13.5ch;
  font-size: clamp(2.15rem, 4.4vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero--home h1 {
  max-width: none;
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  text-wrap: pretty;
}

.hero__lede,
.section-heading p,
.feature-card p,
.category-card p,
.callout-card p,
.stack-card p,
.site-footer p,
.faq-list p {
  color: var(--muted);
}

.hero__lede {
  margin: 1.1rem 0 0;
  font-size: 1.08rem;
  max-width: 42rem;
}

.hero--home .hero__lede {
  max-width: 40rem;
  font-size: 1.12rem;
}

.hero-offer {
  display: grid;
  gap: 0.35rem;
  max-width: 31rem;
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 209, 102, 0.26);
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.16), rgba(255, 106, 61, 0.12)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 42px rgba(255, 106, 61, 0.12);
}

.hero-offer__label,
.bonus-banner__kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-offer strong,
.bonus-banner__offer strong {
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
}

.hero-offer__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__actions,
.center-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #000;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: 0 16px 38px rgba(255, 106, 61, 0.22);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero--home .hero__trust {
  max-width: 52rem;
}

.hero__trust span,
.chip-cloud span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.9rem;
}

.hero-card,
.hero-panel,
.callout-card,
.stack-card,
.feature-card,
.category-card,
.stat-card,
.thumb-card,
.game-showcase__item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(48, 28, 37, 0.96), rgba(24, 16, 20, 0.96));
  box-shadow: var(--shadow);
}

.image-link {
  display: block;
  border-radius: inherit;
}

.image-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.image-link .hero-card,
.image-link .thumb-card,
.image-link .game-showcase__item {
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.image-link:hover .hero-card,
.image-link:hover .thumb-card,
.image-link:hover .game-showcase__item,
.image-link:focus-visible .hero-card,
.image-link:focus-visible .thumb-card,
.image-link:focus-visible .game-showcase__item {
  transform: translateY(-3px);
  border-color: rgba(255, 209, 102, 0.32);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
}

.hero-card {
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  min-height: 100%;
  position: relative;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.hero-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem 1.05rem;
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(37, 23, 29, 0.88), rgba(22, 15, 19, 0.94));
  backdrop-filter: blur(12px);
}

.hero-card figcaption strong {
  font-size: 1.12rem;
}

.hero-card figcaption span {
  color: var(--muted);
}

.hero-panel,
.callout-card,
.stack-card {
  padding: 1.25rem;
  border-radius: var(--radius);
}

.hero-panel__row + .hero-panel__row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-panel__row strong {
  display: block;
  color: var(--accent);
  font-size: 1.15rem;
}

.hero-panel__row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 1.5rem 0 3rem;
}

.section--panel {
  padding-top: 2rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.04;
}

.section-heading p {
  margin: 0.9rem 0 0;
}

.stats-grid,
.feature-grid,
.category-grid,
.thumb-grid {
  display: grid;
  gap: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid,
.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.thumb-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.feature-card,
.category-card {
  padding: 1.25rem;
  border-radius: var(--radius);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.two-up {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1.25rem;
  align-items: start;
}

.two-up--gallery {
  align-items: center;
}

.check-list,
.plain-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.check-list li + li,
.plain-list li + li {
  margin-top: 0.7rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--success), var(--accent));
}

.plain-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.thumb-card,
.game-showcase__item {
  overflow: hidden;
  border-radius: 1.1rem;
}

.thumb-card img,
.game-showcase__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.thumb-card figcaption,
.game-showcase__item figcaption {
  padding: 0.8rem 0.95rem 1rem;
}

.game-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.game-showcase__item figcaption strong {
  display: block;
}

.game-showcase__item figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.faq-list summary {
  position: relative;
  padding: 1rem 3rem 1rem 1rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.microcopy {
  font-size: 0.88rem;
}

.bonus-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.bonus-banner__copy,
.bonus-banner__offer {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 209, 102, 0.16);
  background:
    linear-gradient(180deg, rgba(54, 30, 39, 0.95), rgba(27, 17, 23, 0.98));
  box-shadow: var(--shadow);
}

.bonus-banner__offer {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(65, 34, 38, 0.98), rgba(30, 18, 24, 0.98));
}

.bonus-banner__offer p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.12);
}

.mobile-cta-bar {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.9fr);
  gap: 1rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
}

.footer-nav a {
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.prose-page {
  padding: 4rem 0 3rem;
}

.prose-shell {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(46, 29, 36, 0.94), rgba(21, 15, 18, 0.98));
  box-shadow: var(--shadow);
}

.prose-shell h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  font-family: Georgia, "Times New Roman", serif;
}

.prose-shell h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.3rem;
  color: var(--accent);
}

.prose-shell p,
.prose-shell li {
  color: var(--muted);
}

.prose-shell ul {
  padding-left: 1.15rem;
}

@media (max-width: 980px) {
  .hero__grid,
  .two-up,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero--home__stack {
    gap: 1.4rem;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero--home h1 {
    max-width: none;
    font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .category-grid,
  .bonus-banner,
  .game-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(21, 14, 19, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .stats-grid,
  .feature-grid,
  .category-grid,
  .bonus-banner,
  .thumb-grid,
  .game-showcase,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 4.8rem);
    padding-top: 3.3rem;
    align-items: flex-start;
  }

  .hero__copy {
    max-width: none;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.55rem;
  }

  .hero--home h1 {
    font-size: 2.45rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 6.25rem;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(255, 209, 102, 0.22);
    border-radius: 1.15rem;
    background:
      linear-gradient(135deg, rgba(35, 21, 28, 0.96), rgba(22, 15, 20, 0.98));
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
  }

  .mobile-cta-bar__copy {
    display: grid;
    gap: 0.08rem;
    min-width: 0;
  }

  .mobile-cta-bar__copy strong {
    color: var(--accent);
    font-size: 0.96rem;
    line-height: 1.1;
  }

  .mobile-cta-bar__copy span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .mobile-cta-bar__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    color: #000;
    font-weight: 900;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent), var(--brand-strong));
    box-shadow: 0 10px 24px rgba(255, 106, 61, 0.2);
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero--home h1 {
    font-size: 2.1rem;
  }

  .prose-shell,
  .hero-panel,
  .callout-card,
  .stack-card,
  .stat-card,
  .feature-card,
  .category-card {
    padding: 1rem;
  }
}
