@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700;800&family=Sora:wght@300;400;500;600;700&display=swap");

:root {
  --gm-bg: #070b10;
  --gm-bg-soft: #0d141d;
  --gm-surface: #121b27;
  --gm-surface-2: #182433;
  --gm-line: rgba(148, 178, 204, 0.18);
  --gm-steel: #9eb3c7;
  --gm-chrome: #e8f1f8;
  --gm-muted: #8fa3b8;
  --gm-accent: #1fd6c3;
  --gm-accent-2: #4db8ff;
  --gm-accent-deep: #0ea5a0;
  --gm-glow: rgba(31, 214, 195, 0.35);
  --gm-danger-soft: #f0b429;
  --gm-radius: 1.25rem;
  --gm-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Orbitron", 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(--gm-chrome);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(77, 184, 255, 0.16), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(31, 214, 195, 0.12), transparent 50%),
    linear-gradient(180deg, var(--gm-bg) 0%, var(--gm-bg-soft) 45%, #091019 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gm-topbar {
  background: linear-gradient(90deg, #101820, #152033 50%, #101820);
  border-bottom: 1px solid var(--gm-line);
  color: var(--gm-steel);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.gm-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  text-align: center;
}

.gm-topbar i {
  color: var(--gm-danger-soft);
  font-size: 0.95rem;
}

.gm-navbar {
  background: rgba(10, 16, 24, 0.92);
  border-bottom: 1px solid var(--gm-line);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0;
}

.gm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.gm-brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(31, 214, 195, 0.25), rgba(77, 184, 255, 0.08)),
    linear-gradient(145deg, #1a2736, #0f1722);
  border: 1px solid rgba(31, 214, 195, 0.45);
  box-shadow: 0 0 24px var(--gm-glow);
  color: var(--gm-accent);
  font-size: 1.15rem;
}

.gm-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.gm-brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--gm-chrome);
  text-transform: uppercase;
}

.gm-brand-sub {
  font-size: 0.68rem;
  color: var(--gm-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.gm-nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gm-steel) !important;
  padding: 0.45rem 0.85rem !important;
  border-radius: 999px;
}

.gm-nav-link:hover,
.gm-nav-link:focus,
.gm-nav-link.active {
  color: var(--gm-chrome) !important;
  background: rgba(31, 214, 195, 0.08);
}

.gm-nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gm-accent), var(--gm-accent-2));
}

.gm-toggler {
  border: 1px solid var(--gm-line);
  background: var(--gm-surface);
  color: var(--gm-chrome);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.gm-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 214, 195, 0.25);
}

.gm-toggler .navbar-toggler-icon {
  background-image: none;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gm-toggler i {
  font-size: 1.15rem;
  color: var(--gm-accent);
}

.gm-hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.gm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 178, 204, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 178, 204, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

.gm-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.gm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gm-accent);
  margin-bottom: 1.1rem;
  animation: gmRise 0.8s ease both;
}

.gm-kicker i {
  font-size: 0.9rem;
}

.gm-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin: 0 0 1.15rem;
  background: linear-gradient(120deg, #ffffff 10%, #b8d4ea 45%, #1fd6c3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gmRise 0.9s ease 0.08s both;
}

.gm-hero-text {
  color: var(--gm-muted);
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 1.85rem;
  animation: gmRise 1s ease 0.16s both;
}

.gm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: gmRise 1.05s ease 0.24s both;
}

.gm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.gm-btn-primary {
  background: linear-gradient(120deg, var(--gm-accent-deep), var(--gm-accent) 55%, var(--gm-accent-2));
  color: #041018;
  box-shadow: 0 12px 30px rgba(31, 214, 195, 0.28);
}

.gm-btn-primary:hover {
  color: #041018;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(31, 214, 195, 0.4);
}

.gm-btn-ghost {
  background: rgba(18, 27, 39, 0.7);
  border-color: var(--gm-line);
  color: var(--gm-chrome);
}

.gm-btn-ghost:hover {
  color: var(--gm-chrome);
  border-color: rgba(31, 214, 195, 0.45);
  transform: translateY(-2px);
}

.gm-hero-visual {
  position: relative;
  z-index: 1;
  animation: gmFloatIn 1.1s ease 0.2s both;
}

.gm-hero-frame {
  position: relative;
  border-radius: calc(var(--gm-radius) + 0.35rem);
  padding: 0.7rem;
  background:
    linear-gradient(160deg, rgba(31, 214, 195, 0.35), rgba(77, 184, 255, 0.08) 40%, rgba(18, 27, 39, 0.2));
  box-shadow: var(--gm-shadow);
}

.gm-hero-frame::before {
  content: "";
  position: absolute;
  inset: -18% -8% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 214, 195, 0.35), transparent 70%);
  filter: blur(10px);
  z-index: 0;
  animation: gmPulse 4.5s ease-in-out infinite;
}

.gm-hero-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--gm-radius);
  border: 1px solid rgba(232, 241, 248, 0.08);
}

.gm-hero-orbit {
  position: absolute;
  z-index: 2;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(12, 18, 28, 0.88);
  border: 1px solid rgba(31, 214, 195, 0.4);
  color: var(--gm-accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  animation: gmBob 3.8s ease-in-out infinite;
}

.gm-hero-orbit.one {
  top: 8%;
  left: -0.4rem;
}

.gm-hero-orbit.two {
  bottom: 14%;
  right: -0.35rem;
  animation-delay: 0.8s;
  color: var(--gm-accent-2);
  border-color: rgba(77, 184, 255, 0.45);
}

.gm-games {
  position: relative;
  padding: 1rem 0 5rem;
}

.gm-section-head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.gm-section-head .gm-kicker {
  justify-content: center;
}

.gm-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.85rem;
  color: var(--gm-chrome);
}

.gm-section-text {
  margin: 0;
  color: var(--gm-muted);
  font-size: 1rem;
}

.gm-game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(165deg, rgba(24, 36, 51, 0.95), rgba(12, 18, 28, 0.98));
  border: 1px solid var(--gm-line);
  border-radius: calc(var(--gm-radius) + 0.15rem);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gm-game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 214, 195, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 28px rgba(31, 214, 195, 0.12);
}

.gm-game-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gm-surface-2);
}

.gm-game-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 16, 0.75));
  pointer-events: none;
}

.gm-game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gm-game-card:hover .gm-game-media img {
  transform: scale(1.05);
}

.gm-game-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.25rem 1.4rem;
  gap: 0.65rem;
}

.gm-game-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gm-game-title a {
  color: var(--gm-chrome);
}

.gm-game-title a:hover {
  color: var(--gm-accent);
}

.gm-game-copy {
  margin: 0;
  color: var(--gm-muted);
  font-size: 0.9rem;
  flex: 1;
}

.gm-btn-game {
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
}

.gm-about,
.gm-process,
.gm-values,
.gm-disclaimer,
.gm-contact-cta {
  padding: 4.5rem 0;
}

.gm-section-title-left {
  text-align: left;
}

.gm-prose {
  color: var(--gm-muted);
  font-size: 1.02rem;
  margin: 0 0 1.05rem;
}

.gm-prose-light {
  margin-bottom: 0;
}

.gm-about-panel .gm-btn {
  margin-top: 0.35rem;
}

.gm-feature {
  height: 100%;
  padding: 1.35rem 1.25rem;
  border-radius: var(--gm-radius);
  background: linear-gradient(160deg, rgba(24, 36, 51, 0.9), rgba(10, 16, 24, 0.95));
  border: 1px solid var(--gm-line);
}

.gm-feature i {
  color: var(--gm-accent);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.gm-feature h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}

.gm-feature p {
  margin: 0;
  color: var(--gm-muted);
  font-size: 0.92rem;
}

.gm-process {
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(77, 184, 255, 0.08), transparent 70%),
    rgba(9, 14, 22, 0.55);
  border-block: 1px solid var(--gm-line);
}

.gm-step {
  position: relative;
  height: 100%;
  padding: 1.7rem 1.4rem 1.55rem;
  border-radius: calc(var(--gm-radius) + 0.1rem);
  background: rgba(18, 27, 39, 0.88);
  border: 1px solid var(--gm-line);
}

.gm-step-index {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(31, 214, 195, 0.7);
}

.gm-step-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--gm-accent-2);
  background: rgba(77, 184, 255, 0.1);
  border: 1px solid rgba(77, 184, 255, 0.28);
}

.gm-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.7rem;
}

.gm-step p {
  margin: 0;
  color: var(--gm-muted);
  font-size: 0.95rem;
}

.gm-value-list {
  display: grid;
  gap: 1rem;
}

.gm-value-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.3rem;
  border-radius: var(--gm-radius);
  background: rgba(18, 27, 39, 0.75);
  border: 1px solid var(--gm-line);
}

.gm-value-item > i {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  color: var(--gm-accent);
  background: rgba(31, 214, 195, 0.1);
  border: 1px solid rgba(31, 214, 195, 0.28);
}

.gm-value-item h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}

.gm-value-item p {
  margin: 0;
  color: var(--gm-muted);
  font-size: 0.95rem;
}

.gm-disclaimer {
  padding-top: 2rem;
}

.gm-disclaimer-shell {
  padding: 2rem;
  border-radius: calc(var(--gm-radius) + 0.35rem);
  background:
    linear-gradient(145deg, rgba(24, 36, 51, 0.95), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(240, 180, 41, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.gm-disclaimer-block h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.9rem;
  color: var(--gm-chrome);
}

.gm-disclaimer-block p {
  color: var(--gm-muted);
  font-size: 0.98rem;
  margin: 0 0 0.9rem;
}

.gm-disclaimer-block p:last-child {
  margin-bottom: 0;
}

.gm-disclaimer-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--gm-danger-soft);
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.35);
}

.gm-disclaimer-note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--gm-line);
  color: var(--gm-steel);
}

.gm-disclaimer-note i {
  color: var(--gm-accent-2);
  margin-top: 0.2rem;
}

.gm-disclaimer-note p {
  margin: 0;
  font-size: 0.95rem;
}

.gm-disclaimer-note a {
  color: var(--gm-accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.gm-contact-cta {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.gm-cta-shell {
  padding: 2.2rem 2rem;
  border-radius: calc(var(--gm-radius) + 0.25rem);
  background:
    linear-gradient(120deg, rgba(31, 214, 195, 0.12), rgba(77, 184, 255, 0.08)),
    rgba(18, 27, 39, 0.92);
  border: 1px solid var(--gm-line);
}

.gm-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gm-footer {
  border-top: 1px solid var(--gm-line);
  background: rgba(7, 11, 16, 0.96);
  padding: 3.2rem 0 1.6rem;
  color: var(--gm-muted);
  font-size: 0.9rem;
}

.gm-footer-brand {
  margin-bottom: 1rem;
}

.gm-footer-lead {
  margin: 0 0 1.15rem;
  max-width: 28rem;
  line-height: 1.7;
}

.gm-footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gm-footer-badge:hover {
  transform: translateY(-2px);
  box-shadow: none;
  opacity: 0.9;
}

.gm-footer-badge img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.gm-footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gm-chrome);
  margin: 0 0 1rem;
}

.gm-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.gm-footer-links a {
  color: var(--gm-muted);
}

.gm-footer-links a:hover {
  color: var(--gm-accent);
}

.gm-footer-disclaimers {
  margin-top: 2.2rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: rgba(18, 27, 39, 0.75);
  border: 1px solid var(--gm-line);
}

.gm-footer-disclaimers p {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  line-height: 1.7;
}

.gm-footer-disclaimers p:last-child {
  margin-bottom: 0;
}

.gm-footer-disclaimers strong {
  color: var(--gm-chrome);
  font-weight: 600;
}

.gm-footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gm-line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.gm-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}

.gm-footer a:hover {
  color: var(--gm-accent);
}

@keyframes gmRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gmFloatIn {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes gmPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@keyframes gmBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 991.98px) {
  .gm-navbar .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: var(--gm-surface);
    border: 1px solid var(--gm-line);
  }

  .gm-nav-link {
    display: block;
    margin: 0.15rem 0;
  }

  .gm-nav-link.active::after {
    display: none;
  }

  .gm-hero {
    padding: 3rem 0 3.5rem;
  }

  .gm-hero-visual {
    margin-top: 2.4rem;
  }

  .gm-hero-orbit.one {
    left: 0.4rem;
  }

  .gm-hero-orbit.two {
    right: 0.4rem;
  }
}

@media (max-width: 575.98px) {
  .gm-topbar-inner {
    font-size: 0.74rem;
    padding: 0.65rem 0.25rem;
  }

  .gm-brand-sub {
    display: none;
  }

  .gm-hero-title {
    font-size: 2rem;
  }

  .gm-hero-actions .gm-btn {
    width: 100%;
  }

  .gm-btn-game {
    width: 100%;
  }

  .gm-about,
  .gm-process,
  .gm-values,
  .gm-disclaimer,
  .gm-contact-cta {
    padding: 3.2rem 0;
  }

  .gm-disclaimer-shell,
  .gm-cta-shell {
    padding: 1.5rem 1.2rem;
  }

  .gm-cta-actions .gm-btn {
    width: 100%;
  }

  .gm-footer-badge img {
    width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.gm-no-scroll {
  overflow: hidden !important;
  height: 100%;
}

.gm-age-gate {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(7, 11, 16, 0.42);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}

.gm-age-gate[hidden],
.gm-cookie[hidden],
.gm-age-restricted[hidden],
#gmAgeCard[hidden] {
  display: none !important;
}

.gm-age-card {
  width: min(100%, 420px);
  padding: 1.7rem 1.5rem 1.55rem;
  border-radius: 1.2rem;
  background: linear-gradient(160deg, rgba(18, 27, 39, 0.96), rgba(10, 16, 24, 0.98));
  border: 1px solid rgba(31, 214, 195, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.gm-age-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.9rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  color: var(--gm-accent);
  background: rgba(31, 214, 195, 0.12);
  border: 1px solid rgba(31, 214, 195, 0.35);
}

.gm-age-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.7rem;
  letter-spacing: 0.04em;
}

.gm-age-card p {
  margin: 0 0 1.25rem;
  color: var(--gm-muted);
  font-size: 0.95rem;
}

.gm-age-actions,
.gm-cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gm-age-restricted .gm-age-icon {
  color: #f0b429;
  background: rgba(240, 180, 41, 0.1);
  border-color: rgba(240, 180, 41, 0.35);
}

.gm-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2500;
}

.gm-cookie-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(12, 18, 28, 0.96);
  border: 1px solid var(--gm-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.gm-cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  color: var(--gm-steel);
  font-size: 0.9rem;
}

.gm-cookie-inner a {
  color: var(--gm-accent);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.gm-cookie-actions {
  flex-direction: row;
  flex-wrap: wrap;
}

.gm-btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.gm-page-hero {
  padding: 3.4rem 0 2rem;
}

.gm-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.9rem;
  background: linear-gradient(120deg, #ffffff 10%, #b8d4ea 45%, #1fd6c3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gm-page-hero p {
  max-width: 46rem;
  margin: 0;
  color: var(--gm-muted);
  font-size: 1.05rem;
}

.gm-page-content {
  padding: 0 0 4.5rem;
}

.gm-content-card {
  padding: 1.6rem 1.5rem;
  border-radius: var(--gm-radius);
  background: rgba(18, 27, 39, 0.78);
  border: 1px solid var(--gm-line);
  margin-bottom: 1.15rem;
}

.gm-content-card h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
}

.gm-content-card h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin: 1.1rem 0 0.55rem;
}

.gm-content-card p,
.gm-content-card li {
  color: var(--gm-muted);
  font-size: 0.98rem;
}

.gm-content-card p {
  margin: 0 0 0.85rem;
}

.gm-content-card p:last-child,
.gm-content-card ul:last-child {
  margin-bottom: 0;
}

.gm-content-card ul {
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
}

.gm-email-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  color: var(--gm-chrome);
  background: rgba(31, 214, 195, 0.1);
  border: 1px solid rgba(31, 214, 195, 0.35);
  font-weight: 600;
}

.gm-email-pill:hover {
  color: var(--gm-accent);
}

.gm-faq details {
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
  border-radius: 0.9rem;
  background: rgba(18, 27, 39, 0.78);
  border: 1px solid var(--gm-line);
}

.gm-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--gm-chrome);
}

.gm-faq details p {
  margin: 0.75rem 0 0;
  color: var(--gm-muted);
}

.gm-play-shell {
  margin: 0 0 2rem;
  padding: 1.4rem;
  border-radius: calc(var(--gm-radius) + 0.35rem);
  background:
    radial-gradient(600px 260px at 50% 0%, var(--game-glow, rgba(31, 214, 195, 0.25)), transparent 70%),
    linear-gradient(165deg, rgba(24, 36, 51, 0.95), rgba(8, 12, 18, 0.98));
  border: 1px solid rgba(31, 214, 195, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.gm-game-hud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.gm-game-hud-item {
  min-width: 140px;
}

.gm-game-hud-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gm-muted);
  margin-bottom: 0.35rem;
}

.gm-meter {
  width: 180px;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gm-meter-fill {
  height: 100%;
  width: 20%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--game-accent, #1fd6c3), #4db8ff);
  box-shadow: 0 0 16px var(--game-glow, rgba(31, 214, 195, 0.45));
  transition: width 0.35s ease;
}

.gm-combo-count {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--game-accent, #1fd6c3);
}

.gm-game-stage {
  position: relative;
  padding: 1.4rem 1rem 1.2rem;
  border-radius: 1.1rem;
  background: rgba(5, 8, 12, 0.72);
  border: 1px solid rgba(232, 241, 248, 0.1);
  overflow: hidden;
}

.gm-game-stage::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto;
  height: 180px;
  background: radial-gradient(circle, var(--game-glow, rgba(31, 214, 195, 0.35)), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.gm-game-stage.is-spinning {
  box-shadow: inset 0 0 40px var(--game-glow, rgba(31, 214, 195, 0.2));
}

.gm-game-stage.is-match {
  animation: gmMatchFlash 1s ease;
}

.gm-reels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto;
}

.gm-reel {
  height: 210px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(18, 27, 39, 0.95), rgba(8, 12, 20, 0.98));
  border: 1px solid color-mix(in srgb, var(--game-accent, #1fd6c3) 40%, transparent);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 0, 0, 0.2);
}

.gm-reel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 70px;
  transform: translateY(-50%);
  border-block: 1px solid color-mix(in srgb, var(--game-accent, #1fd6c3) 55%, transparent);
  box-shadow: inset 0 0 24px var(--game-glow, rgba(31, 214, 195, 0.2));
  pointer-events: none;
  z-index: 2;
}

.gm-reel-strip {
  will-change: transform;
}

.gm-reel-cell {
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--gm-chrome);
}

.gm-reel-cell i {
  font-size: 1.45rem;
  color: var(--game-accent, #1fd6c3);
  filter: drop-shadow(0 0 10px var(--game-glow, rgba(31, 214, 195, 0.55)));
}

.gm-reel-cell span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gm-muted);
}

.gm-game-controls {
  position: relative;
  z-index: 1;
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.gm-spin-btn {
  min-width: 180px;
  box-shadow: 0 0 28px var(--game-glow, rgba(31, 214, 195, 0.35));
}

.gm-spin-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.gm-game-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--gm-steel);
  font-size: 0.95rem;
  text-align: center;
}

.gm-game-art {
  margin-bottom: 1.25rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--gm-line);
}

.gm-game-art img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

@keyframes gmMatchFlash {
  0%,
  100% {
    box-shadow: inset 0 0 0 transparent;
  }
  40% {
    box-shadow: inset 0 0 50px var(--game-glow, rgba(31, 214, 195, 0.35)), 0 0 40px var(--game-glow, rgba(31, 214, 195, 0.25));
  }
}

@media (max-width: 575.98px) {
  .gm-reels {
    gap: 0.45rem;
  }

  .gm-reel {
    height: 180px;
  }

  .gm-reel-cell {
    height: 60px;
  }

  .gm-cookie-actions {
    width: 100%;
  }

  .gm-cookie-actions .gm-btn {
    flex: 1;
  }
}
