@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --void: #0f1218;
  --ink: #171b24;
  --panel: #1f2530;
  --fog: #8b95a7;
  --paper: #f3f6fa;
  --coral: #ff5a3c;
  --coral-deep: #e04328;
  --mint: #7cff9b;
  --mint-deep: #3fd46a;
  --line: rgba(243, 246, 250, 0.14);
  --line-strong: rgba(243, 246, 250, 0.28);
  --glass: rgba(31, 37, 48, 0.78);
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius-sm: 0.55rem;
  --radius: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--paper);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 90, 60, 0.16), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(124, 255, 155, 0.1), transparent 50%),
    var(--void);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar {
  background: linear-gradient(90deg, #ff5a3c 0%, #ff7a4d 45%, #ff5a3c 100%);
  color: #1a0d0a;
  padding: 0.6rem 0;
  font-size: 0.84rem;
  font-weight: 600;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
}

.topbar i {
  font-size: 0.95rem;
}

.site-header {
  background: rgba(15, 18, 24, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.navbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.75rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: var(--coral);
}

.brand-mark i {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.brand-tag {
  margin-top: 0.15rem;
  font-size: 0.7rem;
  color: var(--fog);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.2rem;
}

.nav-desktop a {
  position: relative;
  padding: 0.55rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fog);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--paper);
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  border-color: var(--coral);
  color: var(--coral);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(15, 18, 24, 0.98);
  padding: 0.4rem 0 1rem;
}

.mobile-nav.is-open {
  display: block;
  animation: rise 0.28s ease;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--mint);
}

.mobile-nav a i {
  color: var(--fog);
  font-size: 0.8rem;
}

.hero {
  position: relative;
  min-height: min(90vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(15, 18, 24, 0.35) 0%, rgba(15, 18, 24, 0.55) 42%, rgba(15, 18, 24, 0.96) 100%),
    linear-gradient(90deg, rgba(15, 18, 24, 0.75) 0%, rgba(15, 18, 24, 0.25) 55%, rgba(15, 18, 24, 0.55) 100%),
    url("../images/hero-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  animation: drift 18s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(243, 246, 250, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 246, 250, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}

.hero-content {
  width: 100%;
  padding: 5.5rem 0 4.5rem;
  max-width: 46rem;
  animation: rise 0.8s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
}

.hero-brand em {
  font-style: normal;
  color: var(--coral);
}

.hero-lead {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding: 0.35rem 0.75rem;
  border-left: 3px solid var(--mint);
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(243, 246, 250, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-main,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.btn-main {
  background: var(--coral);
  color: #1a0d0a;
  box-shadow: 0 16px 34px rgba(255, 90, 60, 0.28);
}

.btn-main:hover {
  background: var(--coral-deep);
  color: #1a0d0a;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--paper);
}

.btn-ghost:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
}

.btn-main:focus-visible,
.btn-ghost:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.games-section {
  padding: 5rem 0 5.5rem;
  position: relative;
}

.games-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 60, 0.45), rgba(124, 255, 155, 0.35), transparent);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

.section-text {
  margin: 0;
  color: var(--fog);
  font-size: 1.02rem;
}

.game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 60, 0.45);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.game-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--panel);
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.game-card:hover .game-media img {
  transform: scale(1.06);
}

.game-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.2rem 1.35rem;
  flex: 1;
}

.game-type {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.game-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.game-title a:hover {
  color: var(--coral);
}

.btn-play {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: var(--coral);
  color: #1a0d0a !important;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(255, 90, 60, 0.28);
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.btn-play i {
  font-size: 0.85rem;
  color: inherit;
}

.btn-play:hover,
.btn-play:focus {
  background: var(--coral-deep);
  color: #1a0d0a !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 90, 60, 0.36);
}

.btn-play:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.content-section {
  padding: 5rem 0;
  position: relative;
}

.content-section-alt {
  background:
    linear-gradient(180deg, rgba(31, 37, 48, 0.45), rgba(15, 18, 24, 0.2)),
    radial-gradient(700px 320px at 90% 10%, rgba(124, 255, 155, 0.08), transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head-wide {
  max-width: 48rem;
}

.prose-block p {
  color: rgba(243, 246, 250, 0.84);
  font-size: 1.05rem;
  margin: 0 0 1.15rem;
}

.prose-block p:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  color: var(--mint);
  font-weight: 700;
}

.text-link:hover {
  color: var(--coral);
}

.feature-panel {
  height: 100%;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 18, 24, 0.55);
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 90, 60, 0.14);
  color: var(--coral);
  margin-bottom: 1rem;
}

.feature-panel h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.feature-panel p {
  margin: 0;
  color: var(--fog);
  font-size: 0.98rem;
}

.disclaimer-shell {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 90, 60, 0.28);
  border-radius: calc(var(--radius) + 0.25rem);
  background:
    linear-gradient(145deg, rgba(255, 90, 60, 0.1), rgba(15, 18, 24, 0.35) 42%, rgba(124, 255, 155, 0.06));
}

@media (min-width: 768px) {
  .disclaimer-shell {
    padding: 2.5rem;
  }
}

.disclaimer-points {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0.5rem;
}

.disclaimer-point {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(15, 18, 24, 0.45);
}

.disclaimer-point i {
  color: var(--mint);
  margin-top: 0.2rem;
}

.disclaimer-point strong {
  display: block;
  color: var(--paper);
  margin-bottom: 0.2rem;
}

.disclaimer-point span {
  color: var(--fog);
  font-size: 0.94rem;
}

.quote-panel {
  height: 100%;
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-mark {
  color: var(--coral);
  font-size: 1.4rem;
}

.quote-panel > p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.quote-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.quote-meta strong {
  color: var(--paper);
}

.quote-meta span {
  color: var(--fog);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0e13;
  padding: 3.25rem 0 2.5rem;
  color: var(--fog);
  font-size: 0.92rem;
}

.footer-top {
  display: grid;
  gap: 2.25rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--paper);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
}

.footer-brand-block p {
  margin: 0 0 1rem;
  max-width: 38rem;
  line-height: 1.7;
}

.footer-disclaimer {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--coral);
  background: rgba(255, 90, 60, 0.08);
  color: rgba(243, 246, 250, 0.8);
  font-size: 0.9rem;
}

.footer-columns {
  display: grid;
  gap: 1.75rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(243, 246, 250, 0.04);
  min-height: 4.25rem;
  min-width: 5rem;
}

.footer-badge img {
  max-height: 3rem;
  width: auto;
  object-fit: contain;
}

.footer-badge:hover {
  border-color: rgba(255, 90, 60, 0.45);
}

.footer-copy {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
}

.footer-copy p {
  margin: 0 0 0.4rem;
}

.footer-copy p:last-child {
  margin-bottom: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav,
  .mobile-nav.is-open {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1.35fr 1.4fr;
    align-items: start;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .brand-tag {
    display: none;
  }

  .hero-content {
    padding: 3.5rem 0 3.5rem;
  }

  .topbar {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-content,
  .mobile-nav.is-open,
  .game-media img,
  .cookie-consent.is-visible {
    animation: none;
  }

  .game-card:hover .game-media img {
    transform: none;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

html.scroll-locked,
body.scroll-locked {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 10, 14, 0.82);
  backdrop-filter: blur(10px);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-card {
  width: min(100%, 34rem);
  padding: 1.85rem 1.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 90, 60, 0.35);
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(255, 90, 60, 0.18), transparent 60%),
    linear-gradient(160deg, #1c2330, #12161f 55%, #0f131a);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  animation: rise 0.35s ease both;
}

.age-gate-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}

.age-gate-card p {
  margin: 0 0 1rem;
  color: rgba(243, 246, 250, 0.84);
  font-size: 0.98rem;
}

.age-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.15rem 0 1.35rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(15, 18, 24, 0.55);
}

.age-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--coral);
  flex-shrink: 0;
}

.age-check label {
  color: var(--paper);
  font-size: 0.94rem;
  line-height: 1.45;
}

.age-gate-card .btn-main {
  width: 100%;
}

.age-gate-card .btn-main:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3900;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.05rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: rgba(18, 22, 31, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.cookie-consent.is-visible {
  display: flex;
  animation: cookieIn 0.3s ease both;
}

.cookie-consent[hidden] {
  display: none !important;
  pointer-events: none !important;
}

.cookie-consent p {
  margin: 0;
  flex: 1 1 16rem;
  color: rgba(243, 246, 250, 0.88);
  font-size: 0.92rem;
}

.cookie-consent p a {
  color: var(--mint);
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cookie-actions .btn-main,
[data-cookie-accept] {
  cursor: pointer;
  pointer-events: auto;
  min-height: 2.75rem;
  padding: 0.65rem 1.2rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--coral);
  color: #1a0d0a !important;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(255, 90, 60, 0.28);
}

.cookie-actions .btn-main:hover,
[data-cookie-accept]:hover {
  background: var(--coral-deep);
  color: #1a0d0a !important;
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(255, 90, 60, 0.12), transparent 55%),
    radial-gradient(600px 260px at 100% 0%, rgba(124, 255, 155, 0.08), transparent 50%);
}

.page-hero h1,
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--paper);
}

.page-hero .lead,
.page-hero-text {
  margin: 0;
  max-width: 46rem;
  color: rgba(243, 246, 250, 0.84);
  font-size: 1.08rem;
  line-height: 1.65;
}

.page-content {
  padding: 3.25rem 0 4.5rem;
}

.page-content .prose-block {
  max-width: 52rem;
}

.page-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
  margin: 2rem 0 0.85rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124, 255, 155, 0.35);
  background: rgba(124, 255, 155, 0.08);
  color: var(--mint);
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-email:hover {
  color: var(--paper);
  border-color: var(--coral);
  background: rgba(255, 90, 60, 0.12);
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.55rem;
}

.faq-item p {
  margin: 0;
  color: rgba(243, 246, 250, 0.84);
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: var(--line);
  --bs-accordion-btn-color: var(--paper);
  --bs-accordion-btn-bg: rgba(31, 37, 48, 0.72);
  --bs-accordion-active-color: var(--paper);
  --bs-accordion-active-bg: rgba(255, 90, 60, 0.12);
  --bs-accordion-btn-focus-border-color: rgba(255, 90, 60, 0.45);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(255, 90, 60, 0.18);
  --bs-accordion-body-padding-x: 1.2rem;
  --bs-accordion-body-padding-y: 1.1rem;
  --bs-accordion-btn-padding-x: 1.2rem;
  --bs-accordion-btn-padding-y: 1.05rem;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237cff9b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff5a3c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: rgba(15, 18, 24, 0.72);
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--paper) !important;
  background: rgba(31, 37, 48, 0.85) !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
}

.accordion-button:not(.collapsed) {
  color: var(--paper) !important;
  background: rgba(255, 90, 60, 0.14) !important;
}

.accordion-button:hover {
  background: rgba(255, 90, 60, 0.1) !important;
}

.accordion-button:focus {
  border-color: rgba(255, 90, 60, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(255, 90, 60, 0.18) !important;
}

.accordion-button::after {
  background-size: 1rem;
  width: 1rem;
  height: 1rem;
}

.accordion-body {
  color: rgba(243, 246, 250, 0.86);
  background: rgba(12, 15, 21, 0.92);
  line-height: 1.7;
  font-size: 0.98rem;
}

.accordion-body a {
  color: var(--mint);
  font-weight: 700;
}

.accordion-body a:hover {
  color: var(--coral);
}

.compliance-banner {
  margin: 1.25rem 0 0;
  padding: 0.95rem 1.1rem;
  border-left: 3px solid var(--mint);
  background: rgba(124, 255, 155, 0.08);
  color: rgba(243, 246, 250, 0.88);
  font-size: 0.92rem;
}

.game-play-section {
  padding: 2.5rem 0 1rem;
}

.game-play-shell {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.2rem);
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(255, 90, 60, 0.16), transparent 55%),
    radial-gradient(600px 260px at 90% 20%, rgba(124, 255, 155, 0.1), transparent 50%),
    #141922;
  padding: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.game-disclaimer {
  margin-top: 2rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(255, 90, 60, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 90, 60, 0.07);
}

.game-disclaimer h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.game-disclaimer p {
  margin: 0 0 0.75rem;
  color: rgba(243, 246, 250, 0.86);
}

.game-disclaimer p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .age-gate-card {
    padding: 2.15rem;
  }

  .game-play-shell {
    padding: 1.75rem;
  }

  .cookie-consent {
    left: max(1rem, calc(50% - 28rem));
    right: max(1rem, calc(50% - 28rem));
    width: auto;
    max-width: 56rem;
    margin: 0 auto;
    transform: none;
  }
}
