:root {
  --void: #100c0a;
  --ink: #1a1410;
  --clay: #2b211b;
  --ember: #ff5c39;
  --ember-deep: #e03f22;
  --lime: #b8f25a;
  --lime-soft: #d4ff8f;
  --cream: #f4eadc;
  --sand: #d8c4ae;
  --muted: #9a8774;
  --line: rgba(244, 234, 220, 0.12);
  --glow-ember: rgba(255, 92, 57, 0.35);
  --glow-lime: rgba(184, 242, 90, 0.28);
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Figtree", sans-serif;
  --ease: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --cut: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--sand);
  background-color: var(--void);
  background-image:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(255, 92, 57, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 10%, rgba(184, 242, 90, 0.1), transparent 50%),
    linear-gradient(165deg, #160f0c 0%, var(--void) 45%, #0d0a08 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lime);
  text-decoration: none;
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

a:hover,
a:focus-visible {
  color: var(--cream);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--cream);
  line-height: 1.05;
}

.site-header {
  position: relative;
  z-index: 30;
  background: rgba(16, 12, 10, 0.88);
  border-bottom: 1px solid var(--line);
}

.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.85rem;
  color: var(--cream);
}

.brand:hover,
.brand:focus-visible {
  color: var(--cream);
  transform: translateX(2px);
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  background: linear-gradient(160deg, var(--ember), #ff8a4c 55%, var(--lime));
  color: var(--void);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 8px 0 0 rgba(184, 242, 90, 0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.1rem;
}

.nav-desktop a {
  position: relative;
  color: var(--sand);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.8rem;
  letter-spacing: -0.01em;
}

.nav-desktop a::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible,
.nav-desktop a.active {
  color: var(--cream);
}

.nav-desktop a:hover::before,
.nav-desktop a:focus-visible::before,
.nav-desktop a.active::before {
  transform: scaleX(1);
}

.nav-toggle {
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  clip-path: var(--cut);
  background: var(--clay);
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px var(--line);
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle[aria-expanded="true"] {
  background: var(--ember);
  color: var(--void);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #160f0c;
  padding: 0.5rem 0 1.1rem;
}

.mobile-nav.is-open {
  display: block;
  animation: riseIn 0.35s ease;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--sand);
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(244, 234, 220, 0.08);
  font-weight: 600;
  font-size: 1.08rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.mobile-nav a::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--ember);
  border-bottom: 2px solid var(--ember);
  transform: rotate(-45deg);
  opacity: 0.7;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a.active {
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: min(94vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.06);
  animation: kenBurns 22s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(16, 12, 10, 0.92) 0%, rgba(16, 12, 10, 0.55) 42%, rgba(16, 12, 10, 0.35) 68%, rgba(16, 12, 10, 0.78) 100%),
    linear-gradient(180deg, rgba(16, 12, 10, 0.2) 0%, rgba(16, 12, 10, 0.88) 100%);
}

.hero-frame {
  position: absolute;
  inset: 1.25rem;
  z-index: -1;
  border: 1px solid rgba(244, 234, 220, 0.18);
  pointer-events: none;
  max-width: calc(100% - 2.5rem);
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--lime);
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.hero-frame::after {
  right: -1px;
  bottom: -1px;
  border-left: 0;
  border-top: 0;
  border-color: var(--ember);
}

.hero-side-label {
  display: none;
}

.hero-content {
  position: relative;
  padding: 4.5rem 0 4rem;
  max-width: 42rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  background: rgba(255, 92, 57, 0.12);
  border-left: 3px solid var(--ember);
  color: var(--cream);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(3.2rem, 11vw, 6.4rem);
  margin: 0 0 1rem;
  text-transform: uppercase;
  line-height: 0.88;
  animation: riseIn 0.8s var(--ease) both;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream);
  text-stroke: 1.5px var(--cream);
}

.hero-lead {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--sand);
  max-width: 33rem;
  margin: 0 0 2rem;
  animation: riseIn 0.9s var(--ease) 0.08s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: riseIn 1s var(--ease) 0.14s both;
}

a.btn-swoop,
button.btn-swoop {
  font-family: var(--font-body);
  cursor: pointer;
}

button.btn-swoop:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-swoop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.45rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  clip-path: var(--cut);
  border: 0;
}

.btn-swoop:hover,
.btn-swoop:focus-visible {
  transform: translateY(-3px);
}

.btn-primary-swoop {
  background: var(--ember);
  color: var(--void);
  box-shadow: 6px 6px 0 var(--lime);
}

.btn-primary-swoop:hover,
.btn-primary-swoop:focus-visible {
  background: var(--lime);
  color: var(--void);
  box-shadow: 6px 6px 0 var(--ember);
}

.btn-ghost-swoop {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(244, 234, 220, 0.35);
}

.btn-ghost-swoop:hover,
.btn-ghost-swoop:focus-visible {
  color: var(--void);
  background: var(--cream);
  box-shadow: inset 0 0 0 1.5px var(--cream);
}

.marquee-strip {
  position: relative;
  background: var(--lime);
  color: var(--void);
  overflow: hidden;
  border-top: 2px solid var(--void);
  border-bottom: 2px solid var(--void);
  margin: 0;
  z-index: 5;
  width: 100%;
  max-width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 0.85rem 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
}

.marquee-track i {
  font-size: 0.7rem;
  opacity: 0.7;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.75rem;
  max-width: 40rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: var(--ember);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  margin: 0;
  text-transform: uppercase;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  gap: 1.15rem;
}

.feature-tile {
  position: relative;
  padding: 1.85rem 1.6rem;
  background: linear-gradient(155deg, rgba(43, 33, 27, 0.95), rgba(26, 20, 16, 0.98));
  border: 1px solid var(--line);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  overflow: hidden;
}

.feature-tile:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
}

.feature-tile:nth-child(2) {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%, 0 88%);
}

.feature-tile:nth-child(3) {
  clip-path: polygon(0 12%, 8% 0, 100% 0, 100% 100%, 0 100%);
}

.feature-tile::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--lime);
  transform: rotate(45deg);
}

.feature-tile:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: rgba(255, 92, 57, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  background: rgba(255, 92, 57, 0.12);
  color: var(--ember);
  font-size: 1.15rem;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.feature-tile h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
}

.games-grid {
  display: grid;
  gap: 1.25rem;
}

.game-card {
  background: linear-gradient(165deg, rgba(43, 33, 27, 0.98), rgba(16, 12, 10, 0.98));
  border: 1px solid var(--line);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 92, 57, 0.45);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
}

.game-media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.game-card:hover .game-media img {
  transform: scale(1.06);
}

.game-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(16, 12, 10, 0.72));
  pointer-events: none;
}

.game-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.game-type {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ember);
}

.game-body h3 {
  margin: 0;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.game-body h3 a {
  color: var(--cream);
}

.game-body h3 a:hover,
.game-body h3 a:focus-visible {
  color: var(--lime);
}

.game-play {
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(43, 33, 27, 0.35), transparent 70%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-layout {
  display: grid;
  gap: 1.75rem;
}

.about-intro h2 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  margin: 0;
  text-transform: uppercase;
}

.about-copy {
  display: grid;
  gap: 1.1rem;
}

.about-copy p {
  margin: 0;
  color: var(--sand);
  font-size: 1.05rem;
  max-width: 44rem;
}

.about-copy .btn-swoop {
  width: fit-content;
  margin-top: 0.35rem;
}

.flow-layout {
  display: grid;
  gap: 2.25rem;
}

.flow-steps {
  display: grid;
  gap: 1.1rem;
}

.flow-step {
  padding: 1.5rem 1.35rem;
  background: linear-gradient(155deg, rgba(43, 33, 27, 0.95), rgba(26, 20, 16, 0.98));
  border: 1px solid var(--line);
  border-left: 3px solid var(--ember);
}

.flow-index {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--lime);
  margin-bottom: 0.7rem;
  font-weight: 800;
}

.flow-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
}

.disclaimer-panel {
  padding: 2.2rem 1.5rem;
  background:
    linear-gradient(145deg, rgba(255, 92, 57, 0.12), transparent 40%),
    linear-gradient(180deg, #221914, #14100d);
  border: 1px solid rgba(255, 92, 57, 0.28);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.disclaimer-head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.disclaimer-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin: 0;
  text-transform: uppercase;
}

.disclaimer-grid {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.disclaimer-block {
  padding: 1.25rem 1.15rem;
  background: rgba(16, 12, 10, 0.55);
  border: 1px solid var(--line);
}

.disclaimer-block h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.disclaimer-block h3 i {
  color: var(--ember);
}

.disclaimer-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.disclaimer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.pulse-band {
  position: relative;
  margin-top: 0.5rem;
  padding: 2.4rem 1.6rem;
  background:
    linear-gradient(125deg, rgba(255, 92, 57, 0.16), transparent 42%),
    linear-gradient(160deg, #261c16, #17120e);
  border: 1px solid rgba(255, 92, 57, 0.28);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 97% 100%, 0 100%);
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.pulse-band::before {
  content: "SS";
  position: absolute;
  right: -0.2rem;
  bottom: -1.4rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 800;
  color: rgba(244, 234, 220, 0.04);
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.pulse-band h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.pulse-band p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

.stat-row {
  display: grid;
  gap: 0.85rem;
}

.stat-item {
  padding: 1rem 1.1rem;
  background: rgba(16, 12, 10, 0.55);
  border-left: 3px solid var(--lime);
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 1rem;
  padding: 3.75rem 0 1.6rem;
  background: #0c0907;
  border-top: 3px solid var(--ember);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 35%;
  height: 3px;
  background: var(--lime);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted);
  margin: 0 0 0.85rem;
  max-width: 26rem;
}

.footer-disclaimer {
  color: var(--sand) !important;
  font-size: 0.92rem;
  border-left: 3px solid var(--lime);
  padding-left: 0.85rem;
}

.footer-badge {
  display: inline-flex;
  margin-top: 1.15rem;
  padding: 0.55rem 0.7rem;
  background: rgba(244, 234, 220, 0.08);
  border: 1px solid var(--line);
}

.footer-badge img {
  width: auto;
  height: 2.25rem;
  max-width: 10rem;
  object-fit: contain;
}

.footer-notice {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.2rem;
  background: rgba(43, 33, 27, 0.65);
  border: 1px solid var(--line);
}

.footer-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-notice strong {
  color: var(--cream);
}

.footer-col h4 {
  font-size: 0.78rem;
  margin-bottom: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--sand);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--ember);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--clay);
  color: var(--cream);
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--ember);
  color: var(--void);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 234, 220, 0.1);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
}

@keyframes kenBurns {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-2%, -1.5%, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .marquee-strip {
    transform: rotate(-1.1deg) scale(1.02);
    margin: -0.35rem 0 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .mobile-nav,
  .mobile-nav.is-open {
    display: none;
  }

  .hero-side-label {
    display: flex;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    gap: 0.75rem;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(244, 234, 220, 0.55);
    z-index: 2;
  }

  .hero-side-label i {
    color: var(--ember);
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }

  .flow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .disclaimer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-tile:nth-child(2) {
    transform: translateY(1.4rem);
  }

  .feature-tile:nth-child(2):hover {
    transform: translateY(0.7rem) rotate(-0.4deg);
  }

  .pulse-band {
    grid-template-columns: 1.35fr 1fr;
    padding: 3rem 2.5rem;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .hero-content {
    padding: 7rem 0 5.5rem;
  }

  .hero-frame {
    inset: 1.75rem 2rem;
  }

  .section-head {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    max-width: none;
  }

  .section-head .section-eyebrow {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .marquee-track {
    transform: none;
  }
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

.age-gate,
.age-restricted {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(16, 12, 10, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.age-gate[hidden],
.age-restricted[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.age-dialog,
.age-restricted-card {
  width: min(100%, 26rem);
  padding: 1.75rem 1.5rem;
  background: linear-gradient(165deg, #2b211b, #17120e);
  border: 1px solid rgba(255, 92, 57, 0.35);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.age-dialog h2,
.age-restricted-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.age-dialog p,
.age-restricted-card p {
  margin: 0 0 1.35rem;
  color: var(--sand);
}

.age-actions {
  display: grid;
  gap: 0.75rem;
}

.age-actions .btn-swoop {
  width: 100%;
}

.btn-decline-swoop {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(244, 234, 220, 0.3);
}

.btn-decline-swoop:hover,
.btn-decline-swoop:focus-visible {
  background: rgba(255, 92, 57, 0.15);
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px var(--ember);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 190;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(26, 20, 16, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner p {
  margin: 0;
  color: var(--sand);
  font-size: 0.92rem;
  flex: 1 1 16rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-actions .btn-swoop {
  padding: 0.7rem 1.1rem;
  font-size: 0.88rem;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 80% at 0% 0%, rgba(255, 92, 57, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(43, 33, 27, 0.45), transparent);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

.page-hero p {
  margin: 0;
  max-width: 42rem;
  color: var(--sand);
  font-size: 1.08rem;
}

.content-wrap {
  padding: 3.5rem 0 4.5rem;
}

.content-block {
  display: grid;
  gap: 1.1rem;
  max-width: 48rem;
}

.content-block p,
.policy-block p,
.faq-item p {
  margin: 0;
  color: var(--sand);
}

.content-block h2,
.policy-block h2 {
  margin: 1.5rem 0 0.35rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
}

.content-block h2:first-child,
.policy-block h2:first-child {
  margin-top: 0;
}

.policy-block {
  display: grid;
  gap: 1rem;
  max-width: 50rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 50rem;
}

.faq-item {
  padding: 1.35rem 1.25rem;
  background: linear-gradient(155deg, rgba(43, 33, 27, 0.95), rgba(26, 20, 16, 0.98));
  border: 1px solid var(--line);
  border-left: 3px solid var(--ember);
}

.faq-item h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.contact-panel {
  padding: 1.75rem 1.5rem;
  max-width: 36rem;
  background: linear-gradient(155deg, rgba(43, 33, 27, 0.95), rgba(26, 20, 16, 0.98));
  border: 1px solid var(--line);
}

.contact-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.contact-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lime);
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--cream);
}

.game-stage-wrap {
  padding: 2.5rem 0 1.5rem;
}

.game-stage {
  position: relative;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 92, 57, 0.18), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(184, 242, 90, 0.12), transparent 35%),
    linear-gradient(165deg, #241a14, #120e0b);
  border: 1px solid rgba(255, 92, 57, 0.28);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 92, 57, 0.12);
}

.game-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(184, 242, 90, 0.05), transparent 70%);
}

.game-disclaimer {
  margin-top: 1.75rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(26, 20, 16, 0.75);
  max-width: 52rem;
}

.game-disclaimer h2 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.game-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: 50%;
    right: auto;
    bottom: 1.5rem;
    width: min(920px, calc(100% - 3rem));
    transform: translateX(-50%);
  }

  .age-actions {
    grid-template-columns: 1fr 1fr;
  }
}
