:root {
  --ink: #0b100f;
  --ink-soft: #141c1a;
  --panel: #18221f;
  --fog: #d7e6df;
  --fog-dim: #9bb0a7;
  --ice: #7fe3c8;
  --ice-deep: #3fb89d;
  --ember: #d4784a;
  --ember-soft: #e9a07a;
  --line: rgba(215, 230, 223, 0.14);
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Sora", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--fog);
  background:
    radial-gradient(ellipse 70% 45% at 85% 8%, rgba(212, 120, 74, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 40% at 0% 20%, rgba(127, 227, 200, 0.12), transparent 50%),
    linear-gradient(165deg, #080c0b 0%, #0f1614 40%, #0a100e 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

.noise-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  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");
  mix-blend-mode: soft-light;
}

a {
  color: var(--ice);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--ember-soft);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #f4fbf7;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 16, 15, 0.72);
  backdrop-filter: blur(14px);
}

.site-nav {
  padding: 0.95rem 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #f4fbf7 !important;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  background: linear-gradient(140deg, var(--ice) 0%, var(--ice-deep) 45%, var(--ember) 100%);
  color: var(--ink);
  font-size: 1.05rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
}

.brand-tag {
  margin-top: 0.18rem;
  font-size: 0.68rem;
  color: var(--fog-dim);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.age-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(212, 120, 74, 0.45);
  color: var(--ember-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(212, 120, 74, 0.1);
}

.custom-toggler {
  border: 1px solid var(--line);
  padding: 0.55rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border-radius: 0;
}

.custom-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(127, 227, 200, 0.25);
}

.toggler-line {
  width: 22px;
  height: 2px;
  background: #f4fbf7;
  display: block;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav .nav-link {
  color: var(--fog-dim);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.45rem 0.7rem;
  position: relative;
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--ice);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: #f4fbf7;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
  transform: scaleX(1);
}

.hero-stage {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.06);
  animation: panHero 26s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(8, 12, 11, 0.94) 0%, rgba(8, 12, 11, 0.78) 38%, rgba(8, 12, 11, 0.28) 72%, rgba(8, 12, 11, 0.55) 100%),
    linear-gradient(0deg, rgba(8, 12, 11, 0.88) 0%, transparent 42%);
}

.hero-frame {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(215, 230, 223, 0.16);
  pointer-events: none;
  z-index: 1;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ember);
}

.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;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.45fr);
  gap: 2rem;
  width: 100%;
  align-items: end;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ice);
  margin: 0 0 1rem;
  animation: lift 0.85s ease both;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  max-width: 11ch;
  margin: 0 0 1.25rem;
  animation: lift 0.95s ease 0.08s both;
}

.hero-lead {
  max-width: 32rem;
  font-size: 1.05rem;
  color: var(--fog-dim);
  margin: 0 0 2rem;
  animation: lift 1s ease 0.14s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: lift 1.05s ease 0.2s both;
}

.btn-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.45rem;
  background: var(--ice);
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.btn-pulse:hover {
  color: var(--ink);
  background: var(--ember-soft);
  transform: translateY(-2px);
}

.btn-line {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.35rem;
  border: 1px solid rgba(215, 230, 223, 0.28);
  color: #f4fbf7;
  font-weight: 600;
}

.btn-line:hover {
  border-color: var(--ice);
  color: var(--ice);
}

.hero-side {
  justify-self: end;
  text-align: right;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.85rem;
  animation: lift 1.1s ease 0.24s both;
}

.orbit-ring {
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(127, 227, 200, 0.45);
  border-radius: 50%;
  margin-left: auto;
  position: relative;
  animation: spinSlow 18s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 18px rgba(212, 120, 74, 0.7);
}

.side-label {
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fog-dim);
}

.side-year {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(244, 251, 247, 0.9);
  letter-spacing: -0.05em;
  line-height: 1;
}

.signal-strip {
  border-block: 1px solid var(--line);
  background: rgba(20, 28, 26, 0.85);
  overflow: hidden;
}

.signal-track {
  display: flex;
  gap: 2.5rem;
  padding: 1rem 0;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: var(--fog-dim);
  font-size: 0.88rem;
  font-weight: 500;
}

.signal-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.signal-track i {
  color: var(--ice);
}

.story-section {
  padding: 5.5rem 0 4.5rem;
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -8%;
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  background: radial-gradient(circle, rgba(127, 227, 200, 0.09), transparent 68%);
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem 3.5rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

.section-index {
  margin: 0 0 0.85rem;
  color: var(--ember);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.story-lead h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 12ch;
  margin: 0;
}

.story-body p {
  color: var(--fog-dim);
  margin: 0 0 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--ice);
  border-bottom: 1px solid rgba(127, 227, 200, 0.35);
  padding-bottom: 0.15rem;
}

.text-link:hover {
  color: var(--ember-soft);
  border-color: rgba(233, 160, 122, 0.55);
}

.games-section {
  padding: 1rem 0 5rem;
  position: relative;
}

.games-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.games-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 14ch;
  margin: 0;
}

.games-intro {
  margin: 0;
  color: var(--fog-dim);
  max-width: 34rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.game-tile {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: linear-gradient(180deg, rgba(24, 34, 31, 0.55), rgba(11, 16, 15, 0.2));
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.game-tile:hover {
  border-color: rgba(127, 227, 200, 0.35);
  transform: translateY(-4px);
}

.game-visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  color: inherit;
}

.game-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.game-tile:hover .game-visual img {
  transform: scale(1.06);
}

.game-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 12, 11, 0.72) 100%);
  pointer-events: none;
}

.game-kind {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  background: rgba(11, 16, 15, 0.72);
  border: 1px solid rgba(215, 230, 223, 0.18);
  color: var(--fog);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.game-meta {
  padding: 1.15rem 1.15rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.game-meta h3 {
  margin: 0;
  font-size: 1.35rem;
}

.game-meta h3 a {
  color: #f4fbf7;
}

.game-meta h3 a:hover {
  color: var(--ice);
}

.game-meta p {
  margin: 0;
  color: var(--fog-dim);
  font-size: 0.92rem;
  flex: 1;
}

.btn-play {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  padding: 0.75rem 1.15rem;
  background: transparent;
  border: 1px solid rgba(127, 227, 200, 0.45);
  color: var(--ice);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-play:hover {
  background: var(--ice);
  color: var(--ink);
  border-color: var(--ice);
}

.about-section {
  padding: 5rem 0 4.5rem;
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem 4rem;
  margin-bottom: 2.75rem;
  align-items: start;
}

.about-lead h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
  margin: 0 0 1.25rem;
}

.about-body p {
  color: var(--fog-dim);
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
}

.about-body p:last-of-type {
  margin-bottom: 0;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.about-points article {
  padding-right: 0.5rem;
}

.about-points h3 {
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.about-points h3 i {
  color: var(--ice);
  font-size: 0.95rem;
}

.about-points p {
  margin: 0;
  color: var(--fog-dim);
  font-size: 0.95rem;
}

.experience-section {
  padding: 4.5rem 0 5rem;
  background:
    linear-gradient(180deg, rgba(24, 34, 31, 0.35), transparent 70%),
    rgba(8, 12, 11, 0.35);
  border-block: 1px solid var(--line);
}

.experience-head {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.experience-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.experience-head > p {
  margin: 0;
  color: var(--fog-dim);
  font-size: 1.02rem;
}

.experience-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.experience-steps article {
  padding: 1.5rem 1.35rem;
  border-left: 2px solid rgba(127, 227, 200, 0.35);
  background: rgba(11, 16, 15, 0.35);
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ember);
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.experience-steps h3 {
  font-size: 1.25rem;
  margin: 0 0 0.65rem;
}

.experience-steps p {
  margin: 0;
  color: var(--fog-dim);
  font-size: 0.95rem;
}

.disclaimer-section {
  padding: 5rem 0;
}

.disclaimer-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 2rem 3.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(212, 120, 74, 0.35);
  background:
    linear-gradient(135deg, rgba(212, 120, 74, 0.08), transparent 45%),
    rgba(20, 28, 26, 0.75);
}

.disclaimer-lead h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  max-width: 12ch;
  margin: 0 0 1.1rem;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(212, 120, 74, 0.45);
  color: var(--ember-soft);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  background: rgba(212, 120, 74, 0.1);
}

.disclaimer-body p {
  color: var(--fog-dim);
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
}

.disclaimer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}

.motif-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.motif-row {
  display: grid;
  grid-template-columns: 70px 64px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.motif-row:hover {
  background: rgba(127, 227, 200, 0.04);
  padding-left: 0.65rem;
}

.motif-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: rgba(244, 251, 247, 0.28);
}

.motif-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(127, 227, 200, 0.35);
  color: var(--ice);
  font-size: 1.15rem;
  transform: rotate(45deg);
}

.motif-icon i {
  transform: rotate(-45deg);
}

.motif-copy h3 {
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.motif-copy p {
  margin: 0;
  color: var(--fog-dim);
  max-width: 42rem;
}

.site-footer {
  margin-top: 1rem;
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(8, 12, 11, 0.95)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(215, 230, 223, 0.02) 18px,
      rgba(215, 230, 223, 0.02) 19px
    );
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.footer-blurb {
  margin: 0;
  color: var(--fog-dim);
  max-width: 44rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
}

.site-footer h4 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember-soft);
  margin: 0 0 1rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--fog-dim);
}

.footer-links a:hover {
  color: var(--ice);
}

.footer-note p {
  margin: 0 0 0.85rem;
  color: var(--fog-dim);
  font-size: 0.92rem;
}

.footer-disclaimers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer-disclaimer-item {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: rgba(11, 16, 15, 0.45);
}

.footer-disclaimer-item h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 1rem;
  color: var(--ember-soft);
}

.footer-disclaimer-item p {
  margin: 0;
  color: var(--fog-dim);
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--fog-dim);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-age {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ember-soft);
}

@keyframes panHero {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-2%, 1%, 0);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.9rem;
    padding: 0.9rem;
    background: rgba(20, 28, 26, 0.98);
    border: 1px solid var(--line);
  }

  .site-nav .nav-link::after {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-side {
    justify-self: start;
    text-align: left;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }

  .side-label {
    position: static;
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 0.16em;
  }

  .orbit-ring {
    margin-left: 0;
    width: 72px;
    height: 72px;
  }

  .side-year {
    font-size: 2.2rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .games-head {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .disclaimer-panel {
    grid-template-columns: 1fr;
  }

  .about-points,
  .experience-steps,
  .footer-disclaimers {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .about-points,
  .experience-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero-frame {
    inset: 0.75rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .brand-tag {
    display: none;
  }

  .motif-row {
    grid-template-columns: 48px 1fr;
    gap: 0.85rem;
  }

  .motif-num {
    display: none;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-note {
    grid-column: auto;
  }

  .footer-disclaimers {
    grid-template-columns: 1fr;
  }

  .disclaimer-panel {
    padding: 1.5rem 1.15rem;
  }

  .signal-track {
    animation-duration: 20s;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .orbit-ring,
  .signal-track,
  .hero-brand,
  .hero-copy h1,
  .hero-lead,
  .hero-actions,
  .hero-side {
    animation: none !important;
  }
}

html.ffg-scroll-lock,
body.ffg-scroll-lock {
  overflow: hidden !important;
  height: 100%;
  touch-action: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 7, 0.82);
  backdrop-filter: blur(10px);
}

.age-gate-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 2rem 1.6rem 1.7rem;
  border: 1px solid rgba(212, 120, 74, 0.4);
  background: linear-gradient(160deg, rgba(24, 34, 31, 0.98), rgba(11, 16, 15, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.age-gate-glow {
  position: absolute;
  inset: auto auto -20% -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(127, 227, 200, 0.18), transparent 70%);
  pointer-events: none;
}

.age-gate-kicker {
  margin: 0 0 0.75rem;
  color: var(--ice);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

.age-gate-panel h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}

.age-gate-panel > p {
  color: var(--fog-dim);
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
}

.age-gate-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.2rem 0 1.2rem;
  color: var(--fog);
  font-size: 0.92rem;
  cursor: pointer;
}

.age-gate-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--ice);
  flex-shrink: 0;
}

.age-gate-accept {
  width: 100%;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.age-gate-accept:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.age-gate-note {
  margin: 1rem 0 0 !important;
  font-size: 0.8rem !important;
  color: rgba(155, 176, 167, 0.85) !important;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(14, 22, 20, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.cookie-copy {
  flex: 1 1 280px;
}

.cookie-copy h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.cookie-copy p {
  margin: 0;
  color: var(--fog-dim);
  font-size: 0.88rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-actions .btn-line,
.cookie-actions .btn-pulse {
  cursor: pointer;
  border: 0;
}

.cookie-actions .btn-line {
  background: transparent;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 0%, rgba(127, 227, 200, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 70% at 0% 100%, rgba(212, 120, 74, 0.1), transparent 50%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
  max-width: 16ch;
}

.page-hero .lead {
  max-width: 42rem;
  color: var(--fog-dim);
  margin: 0;
  font-size: 1.05rem;
}

.page-content {
  padding: 3.5rem 0 4.5rem;
}

.prose {
  max-width: 48rem;
}

.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 2.25rem 0 0.85rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.2rem;
  margin: 1.6rem 0 0.55rem;
}

.prose p,
.prose li {
  color: var(--fog-dim);
  font-size: 1.02rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  padding-left: 1.2rem;
  margin: 0 0 1.2rem;
}

.prose li + li {
  margin-top: 0.45rem;
}

.contact-block {
  margin-top: 2rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(127, 227, 200, 0.28);
  background: rgba(24, 34, 31, 0.45);
  max-width: 32rem;
}

.contact-block h2 {
  margin: 0 0 0.65rem;
  font-size: 1.3rem;
}

.contact-block a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ice);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #f4fbf7;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--ice);
  font-weight: 700;
}

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

.faq-list details p {
  margin: 0.75rem 0 0.25rem;
  color: var(--fog-dim);
}

.game-play-section {
  padding: 2.5rem 0 3rem;
}

.game-shell {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(127, 227, 200, 0.12), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(212, 120, 74, 0.14), transparent 42%),
    rgba(14, 22, 20, 0.9);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.game-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  pointer-events: none;
}

.game-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.game-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(127, 227, 200, 0.28);
  color: var(--fog);
  font-size: 0.88rem;
  background: rgba(8, 12, 11, 0.45);
}

.game-stat strong {
  color: var(--ice);
  font-family: var(--font-display);
}

.game-stage {
  position: relative;
  z-index: 1;
  min-height: 320px;
}

.game-message {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--ember-soft);
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1;
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.1rem;
  position: relative;
  z-index: 1;
}

.game-actions button {
  cursor: pointer;
}

.game-notice {
  margin-top: 1.5rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(212, 120, 74, 0.35);
  background: rgba(212, 120, 74, 0.08);
  color: var(--fog-dim);
  font-size: 0.95rem;
}

.game-notice strong {
  color: var(--ember-soft);
}

.slot-machine {
  display: grid;
  gap: 1rem;
}

.slot-window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(127, 227, 200, 0.25);
  background: rgba(8, 12, 11, 0.65);
  box-shadow: inset 0 0 40px rgba(127, 227, 200, 0.08);
}

.slot-reel {
  height: 150px;
  overflow: hidden;
  border: 1px solid rgba(215, 230, 223, 0.12);
  background: linear-gradient(180deg, #101816, #0a100e);
  position: relative;
}

.slot-reel::before,
.slot-reel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  z-index: 2;
  pointer-events: none;
}

.slot-reel::before {
  top: 0;
  background: linear-gradient(180deg, rgba(8, 12, 11, 0.95), transparent);
}

.slot-reel::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(8, 12, 11, 0.95), transparent);
}

.slot-strip {
  display: flex;
  flex-direction: column;
  transition: transform 0.05s linear;
}

.slot-symbol {
  height: 150px;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: var(--ice);
  text-shadow: 0 0 18px rgba(127, 227, 200, 0.55);
}

.slot-symbol i {
  filter: drop-shadow(0 0 12px rgba(212, 120, 74, 0.45));
}

.slot-machine.is-spinning .slot-symbol {
  animation: symbolPulse 0.35s ease infinite alternate;
}

.bj-table {
  display: grid;
  gap: 1.25rem;
}

.bj-row {
  padding: 1rem;
  border: 1px solid rgba(127, 227, 200, 0.2);
  background: rgba(8, 12, 11, 0.5);
}

.bj-row h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--fog-dim);
}

.bj-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-height: 96px;
}

.bj-card {
  width: 68px;
  height: 96px;
  border-radius: 8px;
  border: 1px solid rgba(215, 230, 223, 0.25);
  background: linear-gradient(160deg, #f4fbf7, #d7e6df);
  color: #0b100f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.35rem 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), 0 0 20px rgba(127, 227, 200, 0.15);
  animation: cardIn 0.35s ease both;
}

.bj-card.red {
  color: #b3472f;
}

.bj-card.back {
  background: linear-gradient(145deg, #1b2a26, #0f1916);
  color: var(--ice);
  border-color: rgba(127, 227, 200, 0.35);
  align-items: center;
  justify-content: center;
}

.roulette-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.25rem;
  align-items: center;
}

.roulette-wheel {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    #0f9f8a 0 10%,
    #1b2a26 0 20%,
    #d4784a 0 30%,
    #1b2a26 0 40%,
    #0f9f8a 0 50%,
    #1b2a26 0 60%,
    #d4784a 0 70%,
    #1b2a26 0 80%,
    #0f9f8a 0 90%,
    #1b2a26 0 100%
  );
  box-shadow:
    0 0 0 8px rgba(11, 16, 15, 0.9),
    0 0 0 10px rgba(127, 227, 200, 0.35),
    0 0 40px rgba(127, 227, 200, 0.25);
  transition: transform 4s cubic-bezier(0.12, 0.75, 0.12, 1);
}

.roulette-wheel::before {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, #24332f, #0b100f);
  border: 2px solid rgba(232, 197, 71, 0.35);
}

.roulette-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid var(--ember);
  filter: drop-shadow(0 0 8px rgba(212, 120, 74, 0.8));
  z-index: 2;
}

.roulette-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
}

.roulette-board button {
  border: 1px solid rgba(215, 230, 223, 0.18);
  background: rgba(8, 12, 11, 0.65);
  color: var(--fog);
  padding: 0.65rem 0.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.roulette-board button:hover,
.roulette-board button.is-selected {
  border-color: var(--ice);
  color: var(--ice);
  background: rgba(127, 227, 200, 0.12);
  box-shadow: 0 0 16px rgba(127, 227, 200, 0.2);
}

@keyframes symbolPulse {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 767.98px) {
  .roulette-wrap {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .slot-symbol {
    font-size: 2.1rem;
  }
}

button.btn-pulse,
button.btn-line {
  font: inherit;
}

button.btn-line {
  background: transparent;
}
