:root {
  --ink: #12141c;
  --ink-soft: #2a3142;
  --signal: #1f6bff;
  --signal-deep: #154fd1;
  --citrus: #ffd23f;
  --citrus-deep: #efb900;
  --paper: #eef1f6;
  --paper-strong: #f8f9fc;
  --fog: #d7dde8;
  --line: rgba(18, 20, 28, 0.12);
  --shadow: 0 28px 50px rgba(18, 20, 28, 0.16);
  --radius: 10px;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Sora", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(120deg, rgba(31, 107, 255, 0.08), transparent 42%),
    linear-gradient(0deg, transparent 24px, rgba(18, 20, 28, 0.035) 25px),
    linear-gradient(90deg, transparent 24px, rgba(18, 20, 28, 0.035) 25px),
    radial-gradient(900px 420px at 100% 0%, rgba(255, 210, 63, 0.22), transparent 60%),
    linear-gradient(180deg, #f4f6fa 0%, var(--paper) 50%, #e7ecf5 100%);
  background-size: auto, 26px 26px, 26px 26px, auto, auto;
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.age-topbar {
  background: var(--ink);
  color: #f4f6fa;
  padding: 0.7rem 0;
  border-bottom: 3px solid var(--citrus);
}

.age-topbar__text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  justify-content: center;
  text-align: center;
}

.age-topbar__text i {
  color: var(--citrus);
  margin-top: 0.12rem;
  flex-shrink: 0;
}

.site-header {
  background: rgba(248, 249, 252, 0.92);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-lockup__mark {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--citrus);
}

.brand-lockup__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-lockup__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-lockup__tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--signal);
  margin-top: 0.15rem;
}

.brand-lockup--footer .brand-lockup__mark {
  width: 40px;
  height: 40px;
  border-color: var(--citrus);
  box-shadow: 4px 4px 0 rgba(255, 210, 63, 0.35);
}

.brand-lockup--footer .brand-lockup__name {
  color: #f8f9fc;
  font-size: 1.05rem;
}

.brand-lockup--footer .brand-lockup__tag {
  color: var(--citrus);
}

.site-nav__toggler {
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0.45rem 0.5rem;
  background: #fff;
  box-shadow: none;
}

.site-nav__toggler:focus {
  box-shadow: none;
}

.hamburger {
  width: 22px;
  height: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav__toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav__toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.site-nav__toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0.45rem 0.7rem;
  position: relative;
  border-radius: 0;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--ink);
  background: transparent;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.86rem;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--signal);
}

.btn-nav:hover,
.btn-nav:focus {
  transform: translate(-1px, -1px);
  color: #fff !important;
  box-shadow: 6px 6px 0 var(--signal);
}

.hero {
  position: relative;
  padding: 4.75rem 0 5.5rem;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(31, 107, 255, 0.14), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(255, 210, 63, 0.2), transparent 30%);
  pointer-events: none;
}

.hero__beam {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 48vw;
  height: 120%;
  background: linear-gradient(115deg, transparent 30%, rgba(31, 107, 255, 0.08) 48%, transparent 68%);
  transform: skewX(-12deg);
  pointer-events: none;
  animation: beam-shift 10s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 35rem;
  animation: rise-in 0.85s ease both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--citrus);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__eyebrow i {
  color: var(--signal);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.hero__brand {
  display: block;
  font-size: clamp(2.9rem, 6.4vw, 4.6rem);
  color: var(--signal);
  margin-bottom: 0.4rem;
  text-shadow: 3px 3px 0 rgba(255, 210, 63, 0.65);
}

.hero__lead {
  font-size: 1.05rem;
  color: rgba(18, 20, 28, 0.78);
  margin-bottom: 1.8rem;
  max-width: 31rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.9rem;
}

.btn-primary-soft,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.3rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

.btn-primary-soft {
  background: var(--signal);
  color: #fff;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary-soft:hover,
.btn-primary-soft:focus {
  color: #fff;
  background: var(--signal-deep);
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-ghost {
  background: #fff;
  border: 2px solid var(--ink);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--fog);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: var(--citrus);
  box-shadow: 6px 6px 0 var(--ink);
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero__point-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--ink);
  color: var(--signal);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  z-index: 1;
  animation: float-in 1s ease 0.12s both;
  padding: 1rem 0 1rem 1rem;
}

.hero__frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--signal);
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
}

.hero__image {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center;
  animation: gentle-pan 12s ease-in-out infinite alternate;
}

.hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  background: rgba(18, 20, 28, 0.86);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero__caption i {
  color: var(--citrus);
}

.hero__slash {
  position: absolute;
  top: 8%;
  left: -2%;
  width: 74px;
  height: 18px;
  background: var(--citrus);
  transform: rotate(-18deg);
  border: 2px solid var(--ink);
  animation: slash-pop 4.5s ease-in-out infinite;
  z-index: 2;
}

.hero__dot {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: rgba(31, 107, 255, 0.18);
  right: -8px;
  bottom: 12%;
  animation: pulse-soft 5.5s ease-in-out infinite;
  z-index: 0;
}

.games-section {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(238, 241, 246, 0.9) 100%);
  border-top: 1px solid var(--line);
}

.games-section__intro {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.games-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--signal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.games-section__eyebrow i {
  color: var(--signal);
}

.games-section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.games-section__lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(18, 20, 28, 0.74);
  font-size: 1rem;
}

.game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 6px 6px 0 rgba(31, 107, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(31, 107, 255, 0.28);
}

.game-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
}

.game-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.05);
}

.game-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.2rem 1.2rem 1.35rem;
}

.game-card__type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
}

.game-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  line-height: 1.15;
}

.game-card__title a {
  color: var(--ink);
}

.game-card__title a:hover,
.game-card__title a:focus {
  color: var(--signal);
}

.game-card__text {
  margin-bottom: 1.15rem;
  color: rgba(18, 20, 28, 0.72);
  font-size: 0.92rem;
  flex: 1;
}

.btn-game-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.7rem 1.15rem;
  border-radius: 8px;
  background: var(--citrus);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
}

.btn-game-play:hover,
.btn-game-play:focus {
  color: var(--ink);
  background: #ffe27a;
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

.content-section {
  padding: 4.75rem 0;
  border-top: 1px solid var(--line);
}

.content-section--alt {
  background:
    linear-gradient(135deg, rgba(31, 107, 255, 0.06), transparent 45%),
    rgba(255, 255, 255, 0.55);
}

.content-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--citrus);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.content-section__eyebrow i {
  color: var(--signal);
}

.content-section__eyebrow--on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #f4f6fa;
  border-color: rgba(255, 210, 63, 0.7);
  box-shadow: 3px 3px 0 rgba(255, 210, 63, 0.35);
}

.content-section__eyebrow--on-dark i {
  color: var(--citrus);
}

.content-section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1rem;
}

.content-section__lead {
  max-width: 42rem;
  margin: 0 0 0.5rem;
  color: rgba(18, 20, 28, 0.74);
  font-size: 1.05rem;
}

.content-section__cta {
  margin-top: 0.5rem;
}

.content-panel {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 1.6rem 1.7rem;
  box-shadow: 7px 7px 0 rgba(31, 107, 255, 0.16);
}

.content-panel p {
  margin-bottom: 1rem;
  color: rgba(18, 20, 28, 0.8);
  font-size: 1rem;
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.feature-block {
  height: 100%;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 1.45rem 1.4rem 1.55rem;
  box-shadow: 5px 5px 0 rgba(18, 20, 28, 0.08);
}

.feature-block__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 107, 255, 0.1);
  border: 1.5px solid var(--ink);
  color: var(--signal);
  margin-bottom: 0.95rem;
  font-size: 1.05rem;
}

.feature-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.feature-block p {
  margin: 0;
  color: rgba(18, 20, 28, 0.74);
  font-size: 0.95rem;
}

.disclaimer-section {
  padding: 1.5rem 0 4.75rem;
}

.disclaimer-panel {
  background:
    linear-gradient(145deg, #151821 0%, #1a2740 55%, #12305f 100%);
  color: #f4f6fa;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  box-shadow: 8px 8px 0 var(--citrus);
}

.disclaimer-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 0;
}

.disclaimer-panel p {
  color: rgba(244, 246, 250, 0.84);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.btn-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  background: var(--citrus);
  color: var(--ink);
  border: 2px solid #fff;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
  font-weight: 700;
  font-size: 0.9rem;
}

.btn-disclaimer:hover,
.btn-disclaimer:focus {
  color: var(--ink);
  background: #ffe27a;
  transform: translate(-1px, -1px);
}

.site-footer {
  margin-top: 0;
  padding: 3.4rem 0 1.6rem;
  background:
    linear-gradient(135deg, rgba(31, 107, 255, 0.18), transparent 40%),
    linear-gradient(180deg, #151821 0%, #0f1117 100%);
  color: #f4f6fa;
  border-top: 3px solid var(--citrus);
}

.footer-blurb {
  margin: 1.15rem 0 1.25rem;
  color: rgba(244, 246, 250, 0.76);
  font-size: 0.94rem;
  max-width: 28rem;
}

.footer-badge {
  display: inline-block;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-badge img {
  display: block;
  width: 160px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.95rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  justify-content: flex-start;
}

.footer-links--stacked {
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(244, 246, 250, 0.82);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--citrus);
  border-bottom-color: var(--citrus);
}

.footer-disclaimers {
  margin-top: 2.4rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(244, 246, 250, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-disclaimers p {
  margin-bottom: 0.9rem;
  color: rgba(244, 246, 250, 0.72);
  font-size: 0.9rem;
}

.footer-disclaimers p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(244, 246, 250, 0.12);
  font-size: 0.84rem;
  color: rgba(244, 246, 250, 0.62);
  text-align: center;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(30px) translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

@keyframes beam-shift {
  from {
    transform: skewX(-12deg) translateX(0);
  }
  to {
    transform: skewX(-12deg) translateX(-30px);
  }
}

@keyframes slash-pop {
  0%,
  100% {
    transform: rotate(-18deg) scale(1);
  }
  50% {
    transform: rotate(-10deg) scale(1.08);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes gentle-pan {
  from {
    transform: scale(1.03) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-10px);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.9rem;
    padding: 0.85rem;
    border-radius: 10px;
    background: #fff;
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 rgba(31, 107, 255, 0.2);
  }

  .navbar-nav .nav-link {
    padding: 0.7rem 0.75rem;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    background: rgba(31, 107, 255, 0.08);
  }

  .btn-nav {
    width: 100%;
    margin-top: 0.4rem;
  }

  .hero {
    padding: 3.2rem 0 3.8rem;
  }

  .games-section {
    padding: 3.2rem 0 3.6rem;
  }

  .content-section,
  .disclaimer-section {
    padding-top: 3.2rem;
    padding-bottom: 3.4rem;
  }

  .disclaimer-panel {
    padding: 1.6rem 1.25rem;
  }

  .hero__visual {
    padding: 0.5rem;
    max-width: 500px;
    margin-inline: auto;
  }

  .hero__frame {
    clip-path: none;
    box-shadow: 8px 8px 0 var(--signal);
  }

  .hero__image {
    max-height: 520px;
  }

  .age-topbar__text {
    font-size: 0.74rem;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .brand-lockup__tag {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn-primary-soft,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero__slash {
    width: 54px;
    height: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

html.is-locked,
body.is-locked {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(18, 20, 28, 0.28);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}

.age-gate.is-open {
  display: flex;
}

.age-gate__panel {
  width: min(100%, 420px);
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 1.5rem 1.35rem 1.4rem;
  box-shadow: 8px 8px 0 rgba(31, 107, 255, 0.35);
  text-align: center;
}

.age-gate__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
}

.age-gate__panel h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.age-gate__panel p {
  margin-bottom: 1.15rem;
  color: rgba(18, 20, 28, 0.76);
  font-size: 0.92rem;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.btn-age-yes,
.btn-age-no,
.btn-cookie-accept,
.btn-cookie-decline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.05rem;
  border-radius: 8px;
  border: 2px solid var(--ink);
  font-weight: 700;
  font-size: 0.86rem;
}

.btn-age-yes,
.btn-cookie-accept {
  background: var(--signal);
  color: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.btn-age-yes:hover,
.btn-cookie-accept:hover {
  background: var(--signal-deep);
  color: #fff;
}

.btn-age-no,
.btn-cookie-decline {
  background: #fff;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--fog);
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3900;
  display: none;
}

.cookie-consent.is-open {
  display: block;
}

.cookie-consent__panel {
  margin: 0 auto;
  width: min(100%, 920px);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  box-shadow: 6px 6px 0 rgba(255, 210, 63, 0.45);
}

.cookie-consent__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cookie-consent__copy p:last-child {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(18, 20, 28, 0.74);
  max-width: 42rem;
}

.cookie-consent__copy a {
  color: var(--signal);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.page-hero {
  padding: 3.4rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--citrus);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 0.85rem;
}

.page-hero__lead {
  max-width: 46rem;
  margin: 0;
  color: rgba(18, 20, 28, 0.76);
  font-size: 1.05rem;
}

.page-body {
  padding: 2.8rem 0 4.5rem;
}

.prose-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
  box-shadow: 6px 6px 0 rgba(31, 107, 255, 0.14);
  margin-bottom: 1.25rem;
}

.prose-card h2,
.prose-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.prose-card h2 {
  font-size: 1.55rem;
}

.prose-card h3 {
  font-size: 1.2rem;
}

.prose-card p,
.prose-card li {
  color: rgba(18, 20, 28, 0.78);
  font-size: 0.98rem;
}

.prose-card p:last-child,
.prose-card ul:last-child {
  margin-bottom: 0;
}

.prose-card ul {
  padding-left: 1.15rem;
  margin-bottom: 1rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--citrus);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 4px 4px 0 var(--ink);
}

.contact-email:hover {
  background: #ffe27a;
  color: var(--ink);
}

.game-page-intro {
  padding: 2.8rem 0 1.2rem;
}

.game-stage-wrap {
  padding: 0 0 2.5rem;
}

.game-disclaimer {
  padding: 0 0 4rem;
}

@media (max-width: 575.98px) {
  .cookie-consent__actions {
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-decline {
    flex: 1;
  }

  .age-gate__actions {
    flex-direction: column;
  }

  .btn-age-yes,
  .btn-age-no {
    width: 100%;
  }
}

