/* Portal do Videogame — tema público */
:root {
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --accent-dark: #5b21b6;
  --cyan: #22d3ee;
  --cyan-dark: #0891b2;
  --surface: #0b0f1a;
  --surface-2: #121829;
  --surface-3: #1a2236;
  --border: rgba(124, 58, 237, 0.18);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --success: #34d399;
  --danger: #f87171;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --glow: 0 0 24px rgba(124, 58, 237, 0.35);
}

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

html { scroll-behavior: smooth; }

body.site-body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body.site-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(124, 58, 237, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(34, 211, 238, 0.08), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-light); }

.container { width: min(1200px, 92vw); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 15, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-topbar {
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  flex-wrap: wrap;
}

.header-stat strong {
  color: var(--cyan);
  font-weight: 600;
}

.header-topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.header-topbar-links a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.header-topbar-links a:hover {
  color: var(--text);
}

.header-link-highlight {
  color: var(--cyan) !important;
}

.header-brand-bar {
  background: #000;
}

.header-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(320px, 55vw);
}

.header-ad-slot {
  flex: 1 1 728px;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.header-ad-slot .ad-placeholder,
.header-ad-slot .ad-header {
  width: 728px;
  max-width: 100%;
  height: 90px;
  min-height: 90px;
}

.header-nav-row {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.header-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  min-height: 44px;
}

.nav-toggle {
  display: flex;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 1.25rem;
  cursor: pointer;
  margin: 0.35rem 0;
}

.site-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1rem 1rem;
  gap: 0.25rem;
  z-index: 210;
}

.site-nav.open { display: flex; }

.site-nav a {
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(124, 58, 237, 0.12);
}

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

.ad-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.8rem;
}

.ad-sidebar { min-height: 250px; margin-bottom: 1rem; }

/* Layout */
.site-content-wrap { width: 100%; }

.site-layout {
  display: block;
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 1.5rem 0;
}

.site-sidebar {
  width: 280px;
  flex-shrink: 0;
  display: none;
}

.site-main { min-width: 0; }
.site-main--full { max-width: 100%; }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .header-nav-inner { padding: 0; }
  .site-nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.15rem;
    overflow-x: auto;
  }
}

@media (min-width: 960px) and (hover: hover) {
  .site-content-wrap--with-sidebar {
    display: flex;
    gap: 1.5rem;
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 1.5rem 0;
    align-items: flex-start;
  }

  .site-content-wrap--with-sidebar .site-layout {
    flex: 1;
    min-width: 0;
    width: auto;
    margin: 0;
    padding: 0;
  }

  .site-sidebar {
    display: block;
    position: sticky;
    top: 1rem;
    align-self: flex-start;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }
}

@media (max-width: 959px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--surface-2);
  }

  .site-content-wrap .site-layout {
    width: 100%;
    max-width: 100%;
    padding: 1rem 4vw;
  }

  .site-main {
    width: 100%;
    max-width: 100%;
  }

  .site-sidebar:not(.is-open) {
    display: none !important;
  }

  .header-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-ad-slot {
    width: 100%;
    justify-content: center;
  }
  .logo img { height: 44px; }
}

/* Sections */
.section { margin-bottom: 2.5rem; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-header h2,
.section h2 {
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.tagline {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0;
}

.muted { color: var(--muted); }

.btn-link {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero {
  padding: 2rem 0 1rem;
  text-align: center;
}

.hero h1 {
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
  color: var(--accent-light);
  background: linear-gradient(135deg, var(--accent-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p { color: var(--muted); max-width: 640px; margin: 0 auto 1.5rem; }

.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: var(--glow);
}

.btn-primary:hover { transform: translateY(-1px); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

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

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: var(--shadow);
}

.card-cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--surface-3), rgba(124, 58, 237, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.card-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}

.card-body { padding: 1rem; }

.card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.35;
}

.card-body h3 a { color: var(--text); }
.card-body h3 a:hover { color: var(--accent-light); }

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(124, 58, 237, 0.2);
  color: var(--accent-light);
}

.badge-cyan { background: rgba(34, 211, 238, 0.15); color: var(--cyan); }
.badge-score { background: rgba(52, 211, 153, 0.15); color: var(--success); }

.card-excerpt { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ——— Magazine Notícias ——— */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--accent-light); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs-sep { opacity: 0.5; }

.news-section-lead {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 1.25rem;
}

.news-chips {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.news-chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.8rem;
  text-decoration: none;
  white-space: nowrap;
}
.news-chip.is-active,
.news-chip:hover {
  border-color: rgba(124, 58, 237, 0.55);
  background: rgba(124, 58, 237, 0.18);
  color: var(--accent-light);
}

.news-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.news-feature:hover {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: var(--shadow);
}
.news-feature-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}
.news-feature-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-feature-body h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  color: var(--text);
}
.news-feature-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.news-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.news-card .card-cover-img {
  transition: transform 0.45s ease;
}
.news-card:hover .card-cover-img {
  transform: scale(1.05);
}
.news-card .badge {
  text-decoration: none;
}

.news-empty { margin: 2rem 0; }

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 2rem;
  align-items: center;
}
.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
}
.pagination-link.is-active {
  background: rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.55);
  color: var(--accent-light);
  font-weight: 600;
}
.pagination-link:hover:not(.is-active) {
  border-color: rgba(124, 58, 237, 0.4);
}

.news-article-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 0.5rem 0;
  background: linear-gradient(to bottom, var(--surface) 70%, transparent);
}
.news-back {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.875rem;
}
.news-back:hover { text-decoration: underline; }
.news-share a { color: var(--muted); font-size: 0.875rem; }

.news-article-meta {
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.news-article-meta .badge { text-decoration: none; }

.news-hero {
  margin: 0 0 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.news-hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 42rem;
}

.article-body {
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}
.article-body > p:first-of-type::first-letter {
  float: left;
  font-size: 3.2rem;
  line-height: 0.85;
  padding: 0.1rem 0.4rem 0 0;
  font-weight: 700;
  color: var(--accent-light);
}
.article-body h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.35rem;
}
.article-body p { margin: 0 0 1rem; }
.article-body ul, .article-body ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.article-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
}
.article-body .muted { color: var(--muted); font-size: 0.875rem; }

.news-more {
  margin: 2rem 0 0;
  max-width: 42rem;
}
.news-more a { color: var(--accent-light); }

.news-related {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.news-related h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.sidebar-nav--sticky {
  position: sticky;
  top: 1rem;
}

@media (max-width: 900px) {
  .news-feature {
    grid-template-columns: 1fr;
  }
  .news-feature-img { min-height: 180px; }
  .news-chips { display: flex; }
  .sidebar-nav--sticky { position: static; }
}

/* Score stars */
.score { font-weight: 700; color: var(--success); }

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  padding: 2.5rem 0 1.5rem;
}

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

.footer-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.35rem; }
.footer-links a { color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text); }

.footer-tagline { color: var(--muted); font-size: 0.9rem; margin: 0.5rem 0 0; }
.footer-logo { opacity: 0.95; margin-bottom: 0.5rem; height: 42px; width: auto; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bottom p { margin: 0; }

/* Chart bars (public dashboards) */
.chart-bars { display: flex; flex-direction: column; gap: 0.5rem; }
.chart-bar-row { display: grid; grid-template-columns: 48px 1fr auto; gap: 0.5rem; align-items: center; font-size: 0.8rem; }
.chart-bar { height: 8px; background: linear-gradient(90deg, var(--accent), var(--cyan)); border-radius: 4px; min-width: 4px; }
.chart-label, .chart-val { color: var(--muted); }

/* Widget sidebar */
.widget {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.widget h3 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.widget-list { list-style: none; margin: 0; padding: 0; }
.widget-list li { padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.widget-list li:last-child { border-bottom: none; }

/* Sidebar catalog */
.sidebar-panel { display: flex; flex-direction: column; gap: 0.5rem; }

.sidebar-search {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.sidebar-search-label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.sidebar-search-wrap {
  position: relative;
  margin-bottom: 0.65rem;
}

.sidebar-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.sidebar-search-input {
  width: 100%;
  padding: 0.7rem 0.85rem 0.7rem 2.25rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.sidebar-search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
}

.sidebar-search-btn {
  width: 100%;
  justify-content: center;
  border-radius: 10px;
  padding: 0.55rem;
  font-size: 0.85rem;
}

.sidebar-nav {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;
}

.sidebar-nav-title {
  margin: 0 0 0.5rem;
  padding: 0 1rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}

.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 1rem;
  color: var(--muted);
  font-size: 0.875rem;
  border-left: 3px solid transparent;
  transition: background 0.12s, color 0.12s;
}

.sidebar-nav li a:hover {
  color: var(--text);
  background: rgba(124, 58, 237, 0.08);
}

.sidebar-nav li a.is-active {
  color: var(--accent-light);
  background: rgba(124, 58, 237, 0.12);
  border-left-color: var(--accent);
  font-weight: 600;
}

.sidebar-count { font-size: 0.75rem; color: var(--muted); }

.sidebar-nav-scroll {
  max-height: 200px;
  overflow-y: auto;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--accent-light);
}

.filter-chip-remove {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
  padding: 0 0.15rem;
}

.filter-chip-remove:hover { color: var(--danger); }

.filter-chip-clear {
  font-size: 0.8rem;
  color: var(--cyan);
  margin-left: 0.25rem;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.sidebar-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.875rem;
  cursor: pointer;
}

@media (min-width: 960px) {
  .sidebar-toggle-btn { display: none; }
}

.site-sidebar.is-open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 300;
  width: min(300px, 88vw);
  background: var(--surface);
  padding: 1rem;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 250;
}

.sidebar-overlay.is-open { display: block; }

.game-card .card-cover {
  aspect-ratio: 3/4;
  overflow: hidden;
  padding: 0;
}

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

.game-card:hover .card-cover img {
  transform: scale(1.04);
}

.card-cover-link { display: block; }

.card-platforms {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.35rem 0 0;
}

.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pagination a, .pagination span {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  color: var(--muted);
}

.pagination a:hover { border-color: var(--accent); color: var(--text); }

.pagination .is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.game-hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.game-hero-cover {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.game-hero-cover img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media (max-width: 639px) {
  .header-ad-slot { display: none; }
}

@media (max-width: 640px) {
  .game-hero { grid-template-columns: 1fr; max-width: 220px; margin: 0 auto 2rem; }
}
