/* =========================================================
   Spin Charm Club — Neon Arcade theme
   UK social casino | 18+ | free virtual coins only
   ========================================================= */

/* --- Variables ------------------------------------------ */
:root {
  --bg:          #06080f;
  --surface:     #0b1120;
  --surface-2:   #101829;
  --surface-3:   #141f32;
  --border:      rgba(0, 212, 255, 0.18);
  --border-glow: rgba(0, 212, 255, 0.65);
  --cyan:        #00d4ff;
  --cyan-dim:    rgba(0, 212, 255, 0.12);
  --purple:      #b000ff;
  --purple-dim:  rgba(176, 0, 255, 0.12);
  --green:       #00ff88;
  --green-dim:   rgba(0, 255, 136, 0.12);
  --text:        #e0eaff;
  --text-2:      #8a9ccc;
  --text-3:      #445070;
  --font-display: 'Orbitron', 'Courier New', monospace;
  --font-body:    'Exo 2', system-ui, sans-serif;
  --radius:      2px;
  --radius-lg:   4px;
  --transition:  0.18s ease;
  --glow-cyan:   0 0 12px rgba(0, 212, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.2);
  --glow-purple: 0 0 12px rgba(176, 0, 255, 0.5), 0 0 30px rgba(176, 0, 255, 0.2);
  --glow-green:  0 0 12px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 255, 136, 0.2);
}

/* --- Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea { font-family: inherit; }

/* --- Container ------------------------------------------ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Circuit background --------------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* --- Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.btn--cta {
  background: var(--green);
  color: #020a04;
  box-shadow: var(--glow-green);
}
.btn--cta:hover {
  background: #20ffaa;
  box-shadow: 0 0 20px rgba(0,255,136,0.7), 0 0 50px rgba(0,255,136,0.3);
  transform: translateY(-1px);
  color: #020a04;
}
.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
}
.btn--sm { font-size: 0.68rem; padding: 8px 18px; }
.btn--full { width: 100%; }
.btn--purple {
  background: var(--purple);
  color: #fff;
  box-shadow: var(--glow-purple);
}
.btn--purple:hover {
  background: #c820ff;
  box-shadow: 0 0 20px rgba(176,0,255,0.7), 0 0 50px rgba(176,0,255,0.3);
  transform: translateY(-1px);
  color: #fff;
}

/* --- Age Gate ------------------------------------------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 8, 15, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.age-gate[hidden] { display: none; }
.age-gate__box {
  background: var(--surface);
  border: 1px solid var(--border-glow);
  box-shadow: var(--glow-cyan), 0 0 80px rgba(0,212,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
}
.age-gate__logo { margin-bottom: 28px; }
.age-gate__headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 12px;
}
.age-gate__sub {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.age-gate__rg { font-size: 0.78rem; color: var(--text-3); }
.age-gate__rg a { color: var(--text-2); }

/* --- Cookie Banner -------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.85rem; color: var(--text-2); flex: 1; min-width: 200px; }
.cookie-banner__actions { display: flex; gap: 8px; }

/* --- Modal ---------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 15, 0.85);
  backdrop-filter: blur(6px);
}
.modal__box {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--glow-purple);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-3);
  line-height: 1;
  transition: color var(--transition);
}
.modal__close:hover { color: var(--cyan); }
.modal__eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.modal__sub {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 28px;
}
.modal__header { margin-bottom: 4px; }
.modal__form { display: flex; flex-direction: column; gap: 16px; }
.modal__terms {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* --- Form ----------------------------------------------- */
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-row input,
.modal__form textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-row input:focus,
.modal__form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--cyan);
  cursor: pointer;
}
.form-check label {
  font-size: 0.82rem;
  color: var(--text-2);
  cursor: pointer;
  line-height: 1.5;
}
.form-error { font-size: 0.75rem; color: #ff5577; }
.form-error--general {
  background: rgba(255,85,119,0.08);
  border: 1px solid rgba(255,85,119,0.3);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #ff5577;
}

/* --- Logo ----------------------------------------------- */
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}
.logo-accent { color: var(--cyan); }

/* --- Site Header ---------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(6, 8, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.site-logo { text-decoration: none; flex-shrink: 0; }
.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.site-nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--transition);
}
.site-nav__link:hover { color: var(--cyan); }
.site-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.coin-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 5px 12px;
}
.coin-icon { width: 14px; height: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-2);
  border-radius: 1px;
  transition: all var(--transition);
}

/* --- Hero ----------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,212,255,0.015) 3px,
    rgba(0,212,255,0.015) 4px
  );
  animation: scanline-move 8s linear infinite;
  pointer-events: none;
}
@keyframes scanline-move {
  0% { background-position: 0 0; }
  100% { background-position: 0 -100px; }
}
.hero__glow-left {
  position: absolute;
  left: -200px;
  top: 20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,0,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__glow-right {
  position: absolute;
  right: -100px;
  bottom: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero__content { max-width: 540px; }
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--purple);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero__stat { text-align: left; }
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
  display: block;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
  height: 460px;
}
.hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero__card:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}
.hero__card--tall { grid-row: span 2; }
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(6,8,15,0.9));
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}
.hero__card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0,212,255,0.08);
  transition: opacity var(--transition);
}
.hero__card:hover .hero__card-glow { opacity: 1; }

/* --- Section common ------------------------------------- */
.section { position: relative; z-index: 1; padding: 80px 0; }
.section-header { margin-bottom: 48px; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--purple);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.section-sub { font-size: 0.95rem; color: var(--text-2); max-width: 560px; }

/* --- Games Lobby ---------------------------------------- */
.lobby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  animation: card-in 0.4s ease both;
}
.game-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.game-card:nth-child(1)  { animation-delay: 0.05s; }
.game-card:nth-child(2)  { animation-delay: 0.10s; }
.game-card:nth-child(3)  { animation-delay: 0.15s; }
.game-card:nth-child(4)  { animation-delay: 0.20s; }
.game-card:nth-child(5)  { animation-delay: 0.25s; }
.game-card:nth-child(6)  { animation-delay: 0.30s; }
.game-card:nth-child(7)  { animation-delay: 0.35s; }
.game-card:nth-child(8)  { animation-delay: 0.40s; }
.game-card:nth-child(9)  { animation-delay: 0.45s; }
.game-card:nth-child(10) { animation-delay: 0.50s; }
.game-card:nth-child(11) { animation-delay: 0.55s; }
.game-card:nth-child(12) { animation-delay: 0.60s; }
.game-card__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
.game-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.game-card:hover .game-card__thumb img { transform: scale(1.05); }
.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,212,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__play-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-green);
}
.game-card__play-icon svg { width: 18px; height: 18px; fill: #020a04; }
.game-card__body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.game-card__title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}
.game-card__provider {
  font-size: 0.68rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.game-card__cta {
  margin-top: auto;
  padding-top: 10px;
}
.game-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cyan);
  background: var(--cyan-dim);
  transition: all var(--transition);
}
.game-card:hover .game-card__btn {
  background: var(--cyan);
  color: #020a04;
  border-color: var(--cyan);
}

/* --- About Section -------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.about-card:hover { border-color: var(--purple); }
.about-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--cyan);
}
.about-card__icon svg { width: 100%; height: 100%; }
.about-card__title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.about-card__text { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }

/* --- Site Footer ---------------------------------------- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 60px;
}
.rg-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: rgba(176,0,255,0.06);
  border: 1px solid rgba(176,0,255,0.2);
  border-radius: var(--radius);
  margin-bottom: 36px;
}
.rg-strip__age {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: var(--radius);
  padding: 4px 10px;
  flex-shrink: 0;
}
.rg-strip__label { font-size: 0.82rem; color: var(--text-2); }
.rg-strip__helpline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan);
}
.rg-strip__partners { display: flex; gap: 16px; align-items: center; margin-left: auto; flex-wrap: wrap; }
.rg-partner-link img { height: 28px; width: auto; opacity: 0.9; transition: opacity var(--transition); }
.rg-partner-link:hover img { opacity: 1; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 28px;
}
.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-2);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--cyan); }
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-disclaimer a { color: var(--text-2); }
.footer-bottom {
  font-size: 0.75rem;
  color: var(--text-3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-bottom__framework { opacity: 0.6; }

/* --- Page Hero (inner pages) ---------------------------- */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, transparent 100%);
}
.page-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.page-hero__sub {
  font-size: 0.95rem;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Prose (compliance pages) --------------------------- */
.prose {
  position: relative;
  z-index: 1;
  padding: 60px 0 80px;
  max-width: 820px;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
  margin: 40px 0 14px;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 10px;
}
.prose p { color: var(--text-2); margin-bottom: 16px; line-height: 1.75; font-size: 0.92rem; }
.prose ul, .prose ol { color: var(--text-2); padding-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; font-size: 0.92rem; line-height: 1.7; }
.prose strong { color: var(--text); }
.prose a { color: var(--cyan); }
.prose a:hover { color: #fff; }
.prose .alert {
  background: rgba(0,212,255,0.06);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.88rem;
  color: var(--text-2);
}

/* --- Contact Form --------------------------------------- */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
}
.contact-form .form-row { margin-bottom: 16px; }
.contact-form textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  min-height: 120px;
  resize: vertical;
}
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}
.contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-2);
}
.contact-info-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  min-width: 70px;
  padding-top: 1px;
}
.contact-success {
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 0.88rem;
  color: var(--green);
  margin-top: 16px;
  display: none;
}

/* --- Game Page ------------------------------------------ */
.game-page { position: relative; z-index: 1; }
.game-hero {
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.game-hero__left { display: flex; align-items: center; gap: 16px; }
.game-back {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.game-back:hover { color: var(--cyan); }
.game-back svg { width: 14px; height: 14px; }
.game-hero__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.game-hero__provider {
  font-size: 0.72rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.game-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  margin: 0;
}
.game-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.game-desc {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-2);
  max-width: 700px;
}

/* --- RG Page -------------------------------------------- */
.rg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.rg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.rg-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.rg-card__q {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.rg-partners-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.rg-partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}
.rg-partner-card img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.rg-partner-card__name {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--text-2);
  letter-spacing: 0.08em;
}
.rg-partner-card__link { font-size: 0.82rem; color: var(--cyan); }

/* --- Animations ----------------------------------------- */
@keyframes glow-pulse {
  0%, 100% { box-shadow: var(--glow-cyan); }
  50% { box-shadow: 0 0 20px rgba(0,212,255,0.8), 0 0 60px rgba(0,212,255,0.3); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* --- Responsive ----------------------------------------- */
@media (max-width: 1024px) {
  .lobby-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .rg-cards   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero { min-height: auto; padding: 60px 0 48px; }
  .lobby-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .rg-cards   { grid-template-columns: 1fr; }
  .site-nav   { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 20px;
    z-index: 490;
  }
  .game-frame-wrap { aspect-ratio: 4 / 5; }
}
@media (max-width: 480px) {
  .lobby-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .age-gate__box { padding: 32px 24px; }
  .modal__box { padding: 28px 20px; }
  .contact-form { padding: 24px 20px; }
  .rg-strip { flex-direction: column; align-items: flex-start; }
  .rg-strip__partners { margin-left: 0; }
}
