:root {
  --bg: #0b0d12;
  --bg-elev: #151822;
  --bg-elev-2: #1c2030;
  --border: #262a39;
  --text: #e7e9f0;
  --text-muted: #8a90a4;
  --accent: #ff5a1f;
  --accent-hover: #ff7a4a;
  --accent-2: #22d3ee;
  --success: #22c55e;
  --warning: #eab308;
  --danger: #ef4444;
  --tier-s: #ff3b3b;
  --tier-a: #f59e0b;
  --tier-b: #60a5fa;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.muted { color: var(--text-muted); }
.small { font-size: 13px; }

/* Header */
.site-header {
  background: linear-gradient(180deg, #10131c 0%, #0b0d12 100%);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  font-size: 30px;
  filter: drop-shadow(0 0 10px rgba(255,90,31,0.4));
}
.brand h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.3px;
}
.brand-sub {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.primary-btn, .ghost-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 14px;
  transition: transform 80ms, background 120ms, border-color 120ms;
}
.primary-btn {
  background: var(--accent);
  color: #1a0f0a;
  border-color: var(--accent);
}
.primary-btn:hover { background: var(--accent-hover); }
.primary-btn:active { transform: translateY(1px); }
.ghost-btn {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.ghost-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Section titles */
.section-title {
  margin: 48px 0 18px;
  font-size: 22px;
  letter-spacing: 0.3px;
}
.section-title:first-child { margin-top: 32px; }

/* Game picker */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: transform 150ms, border-color 150ms, background 150ms;
  text-align: left;
  color: var(--text);
  font: inherit;
}
.game-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: var(--bg-elev-2);
}
.game-card .emoji {
  font-size: 34px;
  display: block;
  margin-bottom: 10px;
}
.game-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
}
.game-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

/* Workspace */
.workspace {
  margin-top: 32px;
}
.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.game-header h2 { margin: 0 0 4px; font-size: 26px; }
.game-header .muted { margin: 0; }

.controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}
.control { display: flex; flex-direction: column; gap: 8px; }
.control label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.control.actions { justify-content: flex-end; }
.control.actions .primary-btn, .control.actions .ghost-btn {
  width: 100%;
  margin-bottom: 8px;
}
select, input[type="range"] {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: var(--radius);
  font: inherit;
}
select:focus, input:focus {
  outline: none;
  border-color: var(--accent);
}
input[type="range"] {
  padding: 0;
  accent-color: var(--accent);
  height: 28px;
}

/* Output */
.output {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.loadout-card {
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.loadout-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
}
.loadout-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 14px;
}
.loadout-title h3 {
  margin: 0;
  font-size: 18px;
}
.card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: color 120ms, border-color 120ms, transform 120ms;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.05); }
.fav-btn.is-fav { color: #ffd700; border-color: #ffd700; }

/* Favorites badge in header */
#favBadge { position: relative; }
.fav-count {
  display: inline-block;
  margin-left: 4px;
  background: var(--accent);
  color: #1a0f0a;
  font-weight: 800;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
}

/* Fav modal */
.fav-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.fav-modal.hidden { display: none; }
.fav-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(6px); }
.fav-modal-frame {
  position: relative;
  width: min(640px, 94vw);
  max-height: 85vh;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.fav-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.fav-modal-head h3 { margin: 0; font-size: 18px; }
.fav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  gap: 12px;
}
.fav-item:last-child { border-bottom: none; }
.fav-item h4 { margin: 0 0 2px; font-size: 14px; }
.fav-item p { margin: 0; }
.fav-actions { display: flex; gap: 6px; flex-shrink: 0; }
.fav-del { color: var(--danger); }

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-elev);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 12px 20px;
  color: var(--text);
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
  opacity: 0;
  transition: transform 220ms, opacity 220ms;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 1px;
}
.prestige-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff5a1f 0%, #ffd700 100%);
  color: #1a0f0a;
  font-weight: 800;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(255,90,31,0.4);
}
.tier-S { background: rgba(255,59,59,0.15); color: var(--tier-s); border: 1px solid var(--tier-s); }
.tier-A { background: rgba(245,158,11,0.12); color: var(--tier-a); border: 1px solid var(--tier-a); }
.tier-B { background: rgba(96,165,250,0.12); color: var(--tier-b); border: 1px solid var(--tier-b); }

.slot {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
  gap: 10px;
}
.slot:last-child { border-bottom: none; }
.slot .label {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  min-width: 90px;
}
.slot .value {
  text-align: right;
  color: var(--text);
  font-weight: 500;
}

.loadout-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.loadout-section h4 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}
.loadout-section p { margin: 0; font-size: 14px; }

.playstyle {
  margin-top: 14px;
  padding: 12px;
  background: rgba(34, 211, 238, 0.07);
  border-left: 3px solid var(--accent-2);
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.pill {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Extras - Tips / Videos / Premium / Info */
.extras {
  margin-top: 48px;
}
.game-info-section {
  margin-top: 0;
  margin-bottom: 24px;
}

/* Game Info grid */
.game-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.info-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-card-wide { grid-column: 1 / -1; }
.info-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.info-value { font-size: 14px; font-weight: 600; }
.price-tag { color: var(--success); }
.platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.plat-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--text);
}

/* Quick start */
.quickstart-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  counter-reset: qs;
  display: grid;
  gap: 10px;
}
.quickstart-item {
  display: flex;
  gap: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.qs-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a0f0a;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.quickstart-item h4 { margin: 0 0 2px; font-size: 14px; }
.quickstart-item p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Links row */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}
.link-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  transition: border-color 120ms, background 120ms;
}
.link-btn:hover { border-color: var(--accent); background: var(--bg-elev-2); text-decoration: none; }
.link-btn > span:nth-child(2) { flex: 1; }
.link-btn-hl {
  background: rgba(255, 90, 31, 0.08);
  border-color: var(--accent);
}
.sub-title {
  margin: 32px 0 14px;
  font-size: 17px;
  letter-spacing: 0.3px;
  color: var(--text);
}

/* Tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.tip-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: transform 120ms, border-color 120ms;
}
.tip-card:hover { border-color: var(--accent-2); transform: translateY(-2px); }
.tip-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.tip-icon { font-size: 22px; }
.tip-cat {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(34, 211, 238, 0.1);
  padding: 3px 8px;
  border-radius: 999px;
}
.tip-card h3 { margin: 0 0 8px; font-size: 15px; }
.tip-card p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Videos - live cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.video-card-live {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font: inherit;
  overflow: hidden;
  transition: transform 150ms, border-color 150ms, box-shadow 150ms;
  display: flex;
  flex-direction: column;
}
.video-card-live:hover {
  border-color: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.15);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms;
}
.video-card-live:hover .video-thumb img { transform: scale(1.05); }
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 48px;
  opacity: 0.85;
  transition: opacity 150ms, background 150ms;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.video-card-live:hover .play-overlay { opacity: 1; background: rgba(255, 0, 0, 0.3); }
.video-meta { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.video-meta h3 {
  margin: 0; font-size: 14px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-meta p { margin: 0; }

/* Topic cards (search fallback) */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}
.topic-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  text-decoration: none;
  transition: border-color 120ms, background 120ms;
}
.topic-card:hover { border-color: var(--accent); background: var(--bg-elev-2); text-decoration: none; }
.topic-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 0, 0, 0.08);
  border-radius: 8px;
}
.topic-card > div { flex: 1; min-width: 0; }
.topic-card h4 { margin: 0 0 2px; font-size: 13px; }
.ext-arrow { color: var(--text-muted); font-size: 18px; }
.topic-card:hover .ext-arrow { color: var(--accent); }

/* Video modal */
.video-modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
}
.video-modal.hidden { display: none; }
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}
.video-modal-frame {
  position: relative;
  width: min(1100px, 94vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.video-modal-player { width: 100%; height: 100%; }
.video-modal-player iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute;
  top: -46px; right: 0;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  transition: transform 120ms, color 120ms;
}
.video-modal-close:hover { color: var(--accent); transform: scale(1.1); }

/* Creators */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.creator-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  text-decoration: none;
  transition: border-color 120ms, transform 120ms;
}
.creator-card:hover { border-color: var(--accent); text-decoration: none; transform: translateY(-2px); }
.creator-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0d12;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.creator-info { flex: 1; min-width: 0; }
.creator-info h4 { margin: 0; font-size: 14px; }
.creator-info p { margin: 2px 0 0; font-size: 12px; }
.creator-desc { color: var(--text-muted); }

/* Premium */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
}
.premium-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  position: relative;
  transition: border-color 120ms, transform 120ms;
}
.premium-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.premium-card.recommended {
  border-color: var(--success);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}
.rec-flag {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--success);
  color: #08150d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.premium-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.premium-card h3 { margin: 0; font-size: 15px; }
.premium-price {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}
.premium-type {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.premium-card p:last-child { margin: 0; font-size: 13px; line-height: 1.5; color: var(--text); }

/* Best buys */
.bestbuys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.bestbuy-card {
  background: linear-gradient(180deg, rgba(255,90,31,0.06) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px;
}
.bestbuy-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.bestbuy-star { filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6)); }
.bestbuy-card h4 { margin: 0; font-size: 14px; }
.bestbuy-card p { margin: 4px 0 0; font-size: 12px; }

/* About */
.about {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 48px 0 24px;
}
.about p:first-of-type { margin-top: 0; }
.about p:last-of-type { margin-bottom: 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

/* Empty state */
.empty-hint {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 40px 20px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
}

/* Ad slots */
.ad-slot {
  margin: 28px 0;
  min-height: 90px;
  padding: 6px;
  border: 1px dashed rgba(255,255,255,0.05);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  text-align: center;
}
.ad-slot:empty, .ad-slot ins:not([data-loaded]) { display: none; }
.ad-slot[data-placeholder] { display: none; }

/* Language switcher */
.lang-switcher {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 10px;
  font-size: 13px;
  cursor: pointer;
  margin-right: 6px;
}
.lang-switcher:focus { outline: none; border-color: var(--accent); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-elev);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 150;
  font-size: 13px;
}
.cookie-banner p { margin: 0; flex: 1 1 260px; line-height: 1.5; }
.cookie-banner a { color: var(--accent-2); }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Mobile */
@media (max-width: 640px) {
  .brand h1 { font-size: 17px; }
  .brand-sub { display: none; }
  .container { padding: 0 14px; }
  .section-title { font-size: 18px; }
  .game-header h2 { font-size: 20px; }
}
