:root {
  --bg: #070a0f;
  --bg-mid: #0b0e14;
  --bg-elevated: #121722;
  --bg-card: #141a26;
  --bg-card-hover: #1a2230;
  --border: rgba(212, 175, 55, 0.28);
  --border-strong: rgba(212, 175, 55, 0.45);
  --gold: #d4af37;
  --gold-light: #f0d875;
  --gold-dark: #9a7b1a;
  --gold-dim: rgba(212, 175, 55, 0.85);
  --text: #e8ecf4;
  --muted: #94a0b8;
  --accent-blue: rgba(96, 165, 250, 0.15);
  --radius: 14px;
  --radius-sm: 10px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Outfit", "DM Sans", system-ui, sans-serif;
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.12);
  --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-deco-glow {
    animation: none;
    opacity: 0.85;
    transform: none;
  }

  .btn-primary::after {
    display: none;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  background-color: var(--bg-mid);
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    radial-gradient(ellipse 120% 80% at 0% -20%, rgba(212, 175, 55, 0.14), transparent 50%),
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(59, 130, 246, 0.1), transparent 45%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212, 175, 55, 0.06), transparent 55%);
  background-size:
    48px 48px,
    48px 48px,
    100% 100%,
    100% 100%,
    100% 100%;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.35rem 4rem;
}

/* Top alert strip — dark bar + gold accent, still high visibility */
.critical-banner {
  position: relative;
  z-index: 50;
  text-align: center;
  padding: 0.9rem 1.25rem 1rem;
  font-size: clamp(0.9rem, 2.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fffef5;
  background: linear-gradient(180deg, #1a1510 0%, #0f0d0a 100%);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold), #f5e6a8, var(--gold), transparent) 1;
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(212, 175, 55, 0.25);
}

.critical-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(180, 83, 9, 0.2), transparent 30%, transparent 70%, rgba(180, 83, 9, 0.2));
  pointer-events: none;
}

.critical-banner strong {
  display: inline-block;
  margin-right: 0.35em;
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.45);
}

.critical-banner .sub {
  display: block;
  margin-top: 0.45rem;
  font-weight: 600;
  font-size: 0.88em;
  letter-spacing: 0.04em;
  opacity: 0.92;
  color: var(--muted);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0 1.1rem;
  margin-bottom: 0.25rem;
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(7, 10, 15, 0.97) 0%, rgba(11, 14, 20, 0.92) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    var(--shadow-gold);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.logo-mark:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.2);
  text-decoration: none;
}

.logo-mark img {
  width: 30px;
  height: 30px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex: 1;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  text-decoration: none;
}

.main-nav a[aria-current="page"] {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.35);
  text-decoration: none;
}

.header-cta {
  flex-shrink: 0;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(180deg, #f0dc78 0%, var(--gold) 40%, var(--gold-dark) 100%);
  color: #1a1408;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 20px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(212, 175, 55, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.06);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: center;
  padding: 2.75rem 0 2.5rem;
}

.hero-copy {
  text-align: left;
}

.hero-copy .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff8e0 0%, var(--gold-light) 25%, var(--gold) 55%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 24px rgba(212, 175, 55, 0.15));
}

.hero .lead {
  max-width: 34rem;
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
}

.hero-deco {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-deco-glow {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 65%);
  filter: blur(40px);
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from {
    opacity: 0.7;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-deco-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(30, 38, 52, 0.95), rgba(15, 20, 30, 0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.hero-deco-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), transparent 40%, transparent 60%, rgba(212, 175, 55, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-deco-line {
  display: block;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.08));
}

.hero-deco-line:nth-child(2) {
  width: 75%;
  opacity: 0.85;
}

.hero-deco-line:nth-child(3) {
  width: 55%;
  opacity: 0.65;
}

/* Section bands */
.section-band {
  padding: 2.5rem 1.5rem;
  margin: 2rem -1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.12);
  background: linear-gradient(180deg, rgba(18, 23, 34, 0.65), rgba(10, 13, 20, 0.4));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.policy-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.policy-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.policy-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.policy-box .policy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #1a1408;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.policy-box .policy-badge--alt {
  font-size: 1rem;
  background: linear-gradient(180deg, #bfdbfe, #60a5fa);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.35);
}

.policy-box h2 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.policy-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

section.block {
  margin: 3.25rem 0;
}

section.block h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold-light);
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
}

section.block .intro {
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 1.6rem;
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.3rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), var(--shadow-gold);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.notice {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem 1.2rem 3.25rem;
  margin: 1.25rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.notice::before {
  content: "◆";
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 0.9;
}

.notice.warn {
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.2), rgba(30, 27, 22, 0.95));
  border-color: rgba(245, 158, 11, 0.35);
}

.notice.warn::before {
  content: "⚠";
  font-size: 1.1rem;
  color: #fbbf24;
}

.notice--info {
  border-color: rgba(96, 165, 250, 0.35);
  background: linear-gradient(135deg, var(--accent-blue), rgba(18, 23, 34, 0.92));
}

.notice--info::before {
  content: "◆";
  color: #7dd3fc;
}

.notice h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
}

.notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Game showcase — reference layout */
.game-showcase {
  margin-top: 1.75rem;
}

.game-showcase-main {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 1.75rem 2rem;
  align-items: stretch;
}

.game-lead-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.game-lead-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-heading);
}

.game-lead-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.94rem;
  flex: 1;
}

.game-lead-card .btn {
  align-self: flex-start;
}

.preview-frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  padding: 10px;
  background: linear-gradient(145deg, rgba(25, 32, 48, 0.98), rgba(10, 14, 22, 0.99));
  border: 1px solid var(--border);
  box-shadow:
    var(--shadow-card),
    0 0 60px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.preview-frame::before,
.preview-frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
  opacity: 0.75;
}

.preview-frame::before {
  top: 6px;
  left: 6px;
  border-width: 2px 0 0 2px;
  border-radius: 6px 0 0 0;
}

.preview-frame::after {
  bottom: 6px;
  right: 6px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 6px 0;
}

.preview-frame .thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
}

.preview-frame--card {
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  border-bottom: none;
  padding: 8px;
}

.preview-frame--card::before,
.preview-frame--card::after {
  width: 14px;
  height: 14px;
}

.game-showcase-aside {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.game-showcase-aside .notice {
  margin: 0;
}

.tier-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.tier-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card), #101620);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.tier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 55%);
  pointer-events: none;
}

.tier-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 32px rgba(212, 175, 55, 0.12);
}

.tier-card .label {
  position: relative;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.tier-card .value {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  margin: 0.5rem 0;
  background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.tier-card p {
  position: relative;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.responsible h2 {
  color: #fb7185;
  text-shadow: 0 0 40px rgba(251, 113, 133, 0.2);
}

.site-footer {
  margin-top: 4rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--border);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.2);
}

.footer-brand-wrap {
  text-align: center;
  margin-bottom: 1.75rem;
}

.footer-brand-wrap .logo-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.footer-brand-wrap .logo-mark img {
  width: 36px;
  height: 36px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.footer-cols h4 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.9;
  font-family: var(--font-heading);
}

.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-cols li {
  margin-bottom: 0.45rem;
}

.footer-cols a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-cols a:hover {
  color: var(--gold-light);
}

.support-strip {
  background: linear-gradient(180deg, rgba(18, 23, 34, 0.95), rgba(12, 16, 24, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.support-strip > p:first-child {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.rg-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.rg-logos a {
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.rg-logos a:hover {
  opacity: 1;
  transform: scale(1.06);
  text-decoration: none;
}

.rg-logos img {
  height: 42px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  opacity: 0.9;
}

/* Inner pages */
.page-hero {
  padding: 2.25rem 0 1.25rem;
}

.page-hero h1 {
  font-weight: 800;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
}

.page-hero .lede {
  color: var(--muted);
  max-width: 720px;
  margin: 0;
  font-size: 1.02rem;
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.18rem;
  margin: 2rem 0 0.55rem;
}

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

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.96rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.35rem;
  margin-top: 1.75rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.game-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), var(--shadow-gold);
}

.game-card .thumb {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  width: 100%;
  background: var(--bg-elevated);
}

.game-card .body {
  padding: 1.2rem 1.3rem;
}

.game-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-heading);
}

.game-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-deco {
    min-height: 220px;
    order: -1;
  }

  .game-showcase-main {
    grid-template-columns: 1fr;
  }

  .game-lead-card .btn {
    align-self: stretch;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .header-cta {
    width: 100%;
  }

  .header-cta .btn {
    width: 100%;
  }

  .section-band {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
