/* ============================================================
   IMPACT LABS — Homepage Styles
   Structural pattern shared with Impact Inked / Flat2VR Studios
   (nav / hero-carousel / games-grid / footer), Impact Labs' own
   green-on-black brand + Chivo Mono display type.
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-darkest:   #05100a;
  --bg-dark:      #081812;
  --bg-card:      #0f221a;
  --bg-card-hover:#132a20;
  --green:        #00ec8a;
  --green-dim:    #06c876;
  --blue:         #00b0ff;
  --coin:         #e1e100;
  --text:         #f3fbf6;
  --text-muted:   #9aa9a0;
  --border:       rgba(255, 255, 255, 0.08);
  --radius:       12px;
  --nav-h:        64px;
  --font-display: 'Chivo Mono', monospace;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(ellipse 1400px 900px at 12% 0%, rgba(0, 236, 138, 0.14), transparent 55%),
    radial-gradient(ellipse 1200px 800px at 100% 15%, rgba(0, 176, 255, 0.10), transparent 55%),
    var(--bg-darkest);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary { background: var(--green); color: #04140c; }
.btn-primary:hover { background: #2bffab; opacity: 1; }

.btn-cta {
  background: linear-gradient(90deg, var(--green), var(--blue));
  color: #04140c;
  font-weight: 800;
}
.btn-cta:hover { background: linear-gradient(90deg, #2bffab, #33c3ff); opacity: 1; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); opacity: 1; }

.btn-discord { background: #5865F2; color: #fff; }
.btn-discord:hover { background: #6a75f5; opacity: 1; }

.nav-cta { padding: 9px 20px; font-size: 11px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 16, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(4, 12, 8, 0.97);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 29px; width: auto; filter: drop-shadow(0 0 10px rgba(0, 236, 138, 0.35)); }

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 0.75; }
.nav-links a.active { color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-badge {
  position: absolute;
  top: 20px; left: 24px;
  z-index: 5;
  background: var(--green);
  color: #04140c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 0.7rem + 0.5vw, 1.05rem);
  letter-spacing: -0.01em;
  padding: 8px 18px;
  border-radius: 8px;
  transform: rotate(-4deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.hero-badge.complete {
  background: var(--bg-darkest);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero {
  position: relative;
  isolation: isolate;
  height: 60vh;
  min-height: 480px;
  overflow: visible;
  margin: calc(var(--nav-h) + 20px) 10% 0;
}

.carousel { position: relative; width: 100%; height: 100%; user-select: none; }

.carousel-arrow-prev, .carousel-arrow-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: background 0.2s;
}
.carousel-arrow-prev:hover, .carousel-arrow-next:hover { background: rgba(0, 0, 0, 0.7); }
.carousel-arrow-prev { left: -56px; transform: translateY(-50%); }
.carousel-arrow-next { right: -56px; transform: translateY(-50%); }

.carousel-slide {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
  pointer-events: none;
  border: 1px solid var(--border);
}
.carousel-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; z-index: 2; }
.carousel-slide.prev { opacity: 0.75; transform: translateX(calc(-100% - 20px)); z-index: 1; }
.carousel-slide.next { opacity: 0.75; transform: translateX(calc(100% + 20px)); z-index: 1; }

.hero-bg { display: block; position: absolute; inset: 0; z-index: 0; background: var(--bg-darkest); }
.hero-bg img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.carousel-dots {
  display: none;
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.dot.active { background: var(--green); border-color: var(--green); transform: scale(1.35); }
.dot:hover:not(.active) { background: rgba(255, 255, 255, 0.6); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--bg-dark); padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: clamp(1.6rem, 1rem + 2vw, 2.6rem); font-weight: 700; color: var(--green); }
.stat-label { margin-top: 6px; font-size: 1.05rem; color: var(--text); letter-spacing: 0.03em; }

/* ============================================================
   WHAT WE TEST
   ============================================================ */
.section { padding: 80px 0; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title-lg {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-lead { color: var(--text-muted); max-width: 56ch; font-size: 1rem; }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.category-card:hover { transform: translateY(-4px); border-color: rgba(0, 236, 138, 0.4); }
.category-num { font-family: var(--font-display); font-size: 0.75rem; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.category-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.category-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ============================================================
   FEATURED GAMES
   ============================================================ */
.featured-games { background: var(--bg-dark); padding: 80px 0; border-top: 1px solid var(--border); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  background: #10241b;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.filter-tab:hover:not(.active) { background: #16301f; }
.filter-tab.active { background: var(--green); color: #04140c; }

.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--border);
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0, 236, 138, 0.12); border-color: rgba(0, 236, 138, 0.35); }

.card-image-link { display: block; }
.card-image { position: relative; overflow: hidden; background: #08150f; }
.card-image img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .card-image img { transform: scale(1.05); }
.card-image-placeholder, .game-hero-cover .card-image-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  width: 100%; aspect-ratio: 16 / 10;
  background: var(--bg-card);
  color: var(--text-muted);
}
.card-image-placeholder i { font-size: 2rem; color: var(--green); opacity: 0.6; }
.card-image-placeholder span { font-size: 0.8rem; font-family: var(--font-display); }

.card-title-link { color: inherit; text-decoration: none; transition: color 0.2s; }
.card-title-link:hover { color: var(--green); }

.card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-display);
  font-weight: 500; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(4, 12, 8, 0.65);
  color: #fff;
  white-space: nowrap;
}
.card-badge.testing { border-color: var(--green); color: var(--green); }

.card-tester-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(4, 12, 8, 0.75);
  color: var(--coin);
  font-family: var(--font-display);
  font-weight: 600; font-size: 11px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(225, 225, 0, 0.35);
  white-space: nowrap;
}

.card-footer { padding: 16px 18px 18px; }
.card-footer h3 { font-family: var(--font-display); font-weight: 500; font-size: 17px; margin-bottom: 8px; line-height: 1.25; color: var(--text); }
.card-tagline { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin-bottom: 12px; }

.card-platforms { display: flex; gap: 12px; align-items: center; }
.card-platforms a { color: #5c6b62; transition: color 0.2s; line-height: 1; }
.card-platforms a:hover { color: var(--green); }
.card-platforms i { font-size: 1rem; display: block; }

.nda-line { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 32px; }

/* ============================================================
   MEET BEAKER
   ============================================================ */
.beaker-section { padding: 80px 0; }
.beaker-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.beaker-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(0, 236, 138, 0.14), transparent 55%);
  pointer-events: none;
}
.beaker-mascot {
  width: clamp(140px, 16vw, 220px);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(0, 236, 138, 0.35));
  animation: beaker-bob 4.5s ease-in-out infinite;
}
@keyframes beaker-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
.beaker-eyebrow {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.beaker-title { font-family: var(--font-display); font-size: clamp(1.3rem, 1rem + 1.4vw, 1.9rem); font-weight: 600; margin-bottom: 12px; }
.beaker-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; max-width: 62ch; margin-bottom: 18px; }
.beaker-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
.beaker-features li { font-size: 0.88rem; color: var(--text); display: flex; gap: 8px; align-items: center; }
.beaker-features li span { color: var(--green); font-weight: 700; }

@media (max-width: 720px) {
  .beaker-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .beaker-mascot { margin: 0 auto; }
  .beaker-features { grid-template-columns: 1fr; justify-items: center; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes-section { background: var(--bg-dark); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  position: relative;
}
.quote-card::before { content: '\201C'; font-family: Georgia, serif; font-size: 3rem; color: rgba(0,236,138,0.25); position: absolute; top: 8px; left: 16px; }
.quote-author { display: block; margin-top: 16px; font-family: var(--font-display); font-size: 0.8rem; color: var(--green); }

/* ============================================================
   APPLY CTA
   ============================================================ */
.apply-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(0, 236, 138, 0.14), rgba(0, 176, 255, 0.06)), var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: var(--nav-h);
}
.apply-cta-inner { text-align: center; max-width: 960px; margin: 0 auto; }
.apply-cta h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.1vw, 1.9rem); line-height: 1.4; margin-bottom: 14px; white-space: nowrap; }
@media (max-width: 720px) {
  .apply-cta h2 { white-space: normal; }
}
.apply-cta p { color: var(--text-muted); margin-bottom: 28px; }
.apply-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.apply-cta-btn { padding: 16px 34px; font-size: 0.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-darkest); border-top: 1px solid var(--border); padding: 40px 0 28px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 28px; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 38px; width: auto; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--text-muted); font-size: 1.4rem; transition: color 0.2s, transform 0.15s; }
.footer-social a:hover { color: var(--green); transform: translateY(-2px); }
.footer-copy { color: var(--text-muted); font-size: 0.75rem; text-align: center; padding-top: 20px; border-top: 1px solid var(--border); }

/* ============================================================
   PAGE HEADERS (games.html, games-detail.html)
   ============================================================ */
.page-header { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 40px; }
.page-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 1rem + 4vw, 4rem); line-height: 1.05; margin-bottom: 14px; }
.page-title em, .accent-text { color: var(--green); font-style: normal; }
.page-lead { color: var(--text-muted); max-width: 56ch; font-size: 1rem; }

.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; transition: color 0.2s; }
.back-link:hover { color: var(--green); }

/* Game detail */
.game-hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 44px; align-items: start; margin-bottom: 56px; }
.game-hero-cover { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--bg-card); }
.game-hero-cover img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.detail-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 1rem + 3vw, 3.2rem); line-height: 1.02; margin-bottom: 18px; }
.detail-desc { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 26px; }
.detail-subhead { font-family: var(--font-display); font-size: 0.95rem; margin: 26px 0 12px; color: var(--text); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 0.78rem; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border); color: var(--text-muted); }
.chip.status-testing { border-color: rgba(0,236,138,0.4); color: var(--green); }
.store-links { display: flex; gap: 12px; flex-wrap: wrap; }
.store-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px;
  border: 1px solid var(--border);
  font-family: var(--font-display); font-size: 0.82rem;
  color: var(--text); transition: border-color 0.2s, color 0.2s;
}
.store-link:hover { border-color: var(--green); color: var(--green); }

@media (max-width: 860px) {
  .game-hero { grid-template-columns: 1fr; }
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-shell {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 24px) 20px 40px;
}
.login-card {
  width: 100%; max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 34px;
}
.login-logo { display: flex; justify-content: center; margin-bottom: 20px; }
.login-logo img { height: 64px; filter: drop-shadow(0 0 12px rgba(0,236,138,0.35)); }
.login-title { font-family: var(--font-display); font-size: 1.7rem; text-align: center; margin-bottom: 6px; }
.login-sub { color: var(--text-muted); font-size: 0.85rem; text-align: center; margin-bottom: 28px; }

.login-banner {
  padding: 12px 16px; margin-bottom: 20px;
  border-radius: 10px;
  background: rgba(245, 60, 65, 0.12);
  border: 1px solid rgba(245, 60, 65, 0.35);
  color: #ffb3b5;
  font-size: 0.85rem;
  display: none;
}
.login-banner strong { display: block; color: #ffdada; margin-bottom: 2px; }

.divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; }
.divider::before, .divider::after { content: ''; flex: 1; border-top: 1px solid var(--border); }
.divider span { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }

.auth-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.auth-tab {
  flex: 1; padding: 9px; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted);
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.auth-tab.active { background: var(--green); color: #04140c; border-color: var(--green); }

.field { margin-bottom: 14px; }
.field-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px;
  background: var(--bg-darkest);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-family: var(--font-sans);
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field select { cursor: pointer; }

.btn-block { width: 100%; display: flex; }
.form-footnote { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }
.form-footnote a { color: var(--green); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .container { padding: 0 32px; }
  .hero { margin: calc(var(--nav-h) + 16px) 6% 0; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .category-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(4, 12, 8, 0.98);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open a { font-size: 1rem; color: var(--text); }

  .hero { height: 52vh; min-height: 340px; margin: calc(var(--nav-h) + 12px) 0 0; overflow: hidden; border-radius: 0; }
  .hero-badge { top: 14px; left: 14px; }
  .carousel-slide { border-radius: 0; }
  .carousel-arrow-prev, .carousel-arrow-next { display: none; }

  .section, .featured-games, .beaker-section, .quotes-section { padding: 52px 0; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .games-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}
