/* GlitchForge — molten industrial forge aesthetic */
:root {
  --bg: #0D0D0D;
  --surface: #1A1512;
  --surface-2: #241C17;
  --accent: #FF7A18;
  --accent-hot: #FF9A3C;
  --secondary: #00C2A8;
  --text: #F4EDE4;
  --muted: #A89888;
  --btn-text: #1A0A00;
  --line: rgba(255, 122, 24, 0.28);
  --line-teal: rgba(0, 194, 168, 0.35);
  --danger: #E85D4C;
  --radius: 2px;
  --max: 1120px;
  --header-h: 72px;
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 122, 24, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(0, 194, 168, 0.08), transparent 50%),
    linear-gradient(180deg, #12100E 0%, var(--bg) 40%, #0A0908 100%);
  background-color: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body.gate-locked,
body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--accent-hot);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 0.6em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--btn-text);
  padding: 0.6rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.96);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--text);
}

.brand img,
.brand-logo {
  width: 42px;
  height: 42px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(105deg, var(--accent) 0%, var(--accent-hot) 45%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 88% 100%, 0 100%);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--accent);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.player-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-actions[hidden],
.player-box[hidden] {
  display: none !important;
}

.player-name {
  font-weight: 700;
  color: var(--secondary);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 92% 100%, 0 100%);
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #E86500 100%);
  color: var(--btn-text);
}

.btn-primary:hover {
  color: var(--btn-text);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  clip-path: none;
  border-radius: var(--radius);
}

.btn-secondary:hover {
  background: rgba(0, 194, 168, 0.12);
  color: var(--secondary);
}

.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line);
  clip-path: none;
  border-radius: var(--radius);
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: forgePulse 8s ease-in-out infinite;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.55) 48%, rgba(13, 13, 13, 0.35) 100%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.95) 0%, transparent 45%);
  pointer-events: none;
}

.hero-glitch {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255, 122, 24, 0.03) 3px,
      rgba(255, 122, 24, 0.03) 4px
    );
  mix-blend-mode: soft-light;
  animation: scanDrift 12s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3.5rem;
  max-width: 640px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.95;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  background: linear-gradient(100deg, var(--text) 0%, var(--accent) 55%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brandCut 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  color: var(--text);
  margin-bottom: 0.75rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 480px;
}

.stat {
  background: rgba(26, 21, 18, 0.85);
  border-left: 3px solid var(--accent);
  padding: 0.85rem 1rem;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 92% 100%, 0 100%);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 560px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.section-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(26, 21, 18, 0.55) 0%, transparent 100%);
  border-top: 1px solid rgba(168, 152, 136, 0.12);
  border-bottom: 1px solid rgba(168, 152, 136, 0.12);
}

/* ---------- Games grid ---------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.game-card {
  background: var(--surface);
  border: 1px solid rgba(168, 152, 136, 0.18);
  clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 0 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.game-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.game-card:nth-child(3n) {
  border-color: rgba(0, 194, 168, 0.25);
}

.game-card:nth-child(3n):hover {
  border-color: var(--secondary);
}

.game-card-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #120F0C;
  border-bottom: 1px solid var(--line);
}

.game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:hover .game-card-media img {
  transform: scale(1.05);
}

.game-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.game-card h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text);
}

.game-card p {
  font-size: 0.92rem;
  margin: 0;
  flex: 1;
}

.game-card .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

/* ---------- Feature split ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-visual {
  position: relative;
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 94% 100%, 0 100%);
  overflow: hidden;
  background: var(--surface);
  min-height: 280px;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.feature-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--secondary));
  z-index: 1;
}

.feature-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.feature-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(168, 152, 136, 0.12);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.step {
  background: var(--surface);
  padding: 1.5rem 1.25rem;
  border-top: 3px solid var(--accent);
  position: relative;
}

.step:nth-child(2) {
  border-top-color: var(--accent-hot);
}

.step:nth-child(3) {
  border-top-color: var(--secondary);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255, 122, 24, 0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.15rem;
  background: rgba(26, 21, 18, 0.7);
  border: 1px solid rgba(168, 152, 136, 0.15);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.2), rgba(0, 194, 168, 0.15));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit h3 {
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
}

.benefit p {
  margin: 0;
  font-size: 0.9rem;
}

/* ---------- CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-teal);
}

.cta-band-media {
  position: absolute;
  inset: 0;
}

.cta-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.78) 55%, rgba(13, 13, 13, 0.55) 100%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  display: grid;
  gap: 1rem;
  max-width: 560px;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0;
}

.cta-band p {
  margin: 0 0 0.5rem;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.08), transparent 50%),
    var(--surface);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.4rem;
}

.page-hero p {
  max-width: 52ch;
  margin: 0;
}

.content-block {
  padding: 3rem 0 4rem;
}

.content-block h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  color: var(--accent-hot);
}

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

.content-block ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.content-block li {
  margin-bottom: 0.45rem;
}

.legal-note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--secondary);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--surface);
  padding: 1.5rem;
  border: 1px solid rgba(168, 152, 136, 0.18);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: #120F0C;
  border: 1px solid rgba(168, 152, 136, 0.25);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0A0908;
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin: 0;
}

.footer-col h3 {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(168, 152, 136, 0.15);
  font-size: 0.85rem;
  color: var(--muted);
}

.disclaimer {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- Overlays ---------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 6, 5, 0.88);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.overlay[hidden] {
  display: none !important;
}

.panel {
  width: min(100%, 420px);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 97% 100%, 0 100%);
  position: relative;
  animation: panelIn 0.35s ease both;
}

.panel-wide {
  width: min(100%, 480px);
}

.panel h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.panel p {
  font-size: 0.95rem;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.panel-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(168, 152, 136, 0.3);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.auth-tabs button {
  flex: 1;
  padding: 0.6rem;
  background: #120F0C;
  border: 1px solid rgba(168, 152, 136, 0.2);
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.auth-tabs button.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 122, 24, 0.08);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  background: var(--surface);
  border: 1px solid var(--line-teal);
  padding: 1rem 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin-inline: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

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

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 0.9rem;
}

/* ---------- Motions ---------- */
@keyframes forgePulse {
  0%, 100% { transform: scale(1); filter: saturate(1); }
  50% { transform: scale(1.03); filter: saturate(1.08) brightness(1.05); }
}

@keyframes scanDrift {
  0% { transform: translateY(0); opacity: 0.5; }
  50% { opacity: 0.85; }
  100% { transform: translateY(12px); opacity: 0.5; }
}

@keyframes brandCut {
  0% { opacity: 0; transform: translateX(-24px) skewX(-4deg); filter: blur(4px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: none; }
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-split,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .brand {
    order: 1;
    min-width: 0;
  }

  .header-actions,
  .player-box {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 0.5rem;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: #0d0d0d;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    order: 4;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(168, 152, 136, 0.15);
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .btn-sm {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }

  .player-name {
    max-width: 90px;
  }
}
