@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;800&family=Nunito:wght@400;500;600&display=swap');

:root {
  --bg-primary: #0d0a07;
  --bg-secondary: #1a140e;
  --bg-card: #211810;
  --bg-header: #150f09;
  --bg-sidebar: #120d08;
  --accent-green: #5c9e2e;
  --accent-green-hover: #6dba38;
  --accent-gold: #c9a227;
  --accent-gold-light: #e0b83a;
  --text-primary: #ffffff;
  --text-secondary: #a09080;
  --text-muted: #6b5a48;
  --border: #2a1f14;
  --border-light: #3a2d1e;
  --sidebar-w: 220px;
  --sidebar-collapsed: 60px;
  --header-h: 62px;
  --radius: 8px;
  --radius-sm: 5px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px 0 0;
  z-index: 200;
  gap: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 160px;
  flex-shrink: 0;
  padding: 0 16px;
}

.header-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  padding-left: 12px;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  font-family: 'Exo 2', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,.06);
}

.header-nav a.active {
  color: var(--accent-gold);
}

.header-nav a svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color .2s, color .2s;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--accent-green);
  border-radius: var(--radius-sm);
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s, transform .1s;
}

.btn-primary:hover {
  background: var(--accent-green-hover);
  transform: translateY(-1px);
}

.btn-primary svg { width: 14px; height: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ─── LAYOUT ─── */
.page-layout {
  display: flex;
  padding-top: var(--header-h);
  min-height: 100vh;
}

/* ─── SIDEBAR ─── */
.site-sidebar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  bottom: 0;
  width: var(--sidebar-collapsed);
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  overflow: hidden;
  transition: width .3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.site-sidebar:hover,
.site-sidebar.expanded {
  width: var(--sidebar-w);
}

.sidebar-nav a span {
  opacity: 0;
  white-space: nowrap;
  transition: opacity .2s ease;
  pointer-events: none;
}

.site-sidebar:hover .sidebar-nav a span,
.site-sidebar.expanded .sidebar-nav a span,
.site-sidebar.open .sidebar-nav a span {
  opacity: 1;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  color: var(--text-secondary);
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s, background .2s;
  border-left: 2px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,.05);
}

.sidebar-nav a.active {
  border-left-color: var(--accent-green);
  color: var(--accent-green);
}

.sidebar-nav a svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 12px;
}

/* ─── MAIN CONTENT ─── */
.page-main {
  flex: 1;
  margin-left: var(--sidebar-collapsed);
  min-width: 0;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  min-height: 340px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,10,7,.95) 40%, rgba(13,10,7,.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.hero h1 span { color: var(--accent-gold); }

.hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-bonus-blocks {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.bonus-block {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
  min-width: 110px;
}

.bonus-block-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
}

.bonus-block-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── CATEGORY BAR ─── */
.category-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 20px;
}

.category-bar::-webkit-scrollbar { display: none; }

.category-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  white-space: nowrap;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.category-item:hover,
.category-item.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent-green);
}

.category-item svg { width: 18px; height: 18px; }

.cat-count {
  background: rgba(92,158,46,.2);
  color: var(--accent-green);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
}

/* ─── SECTION ─── */
.section {
  padding: 28px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: var(--accent-green);
  border-radius: 2px;
}

.section-link {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 600;
  transition: color .2s;
}

.section-link:hover { color: var(--accent-gold-light); }

/* ─── GAME GRID ─── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}

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

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

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

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,10,7,.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity .2s;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  background: var(--accent-green);
  border-radius: var(--radius-sm);
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  gap: 5px;
}

.game-card-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 10px;
  color: var(--text-muted);
}

/* ─── BONUS CARDS ─── */
.bonus-hero {
  background: linear-gradient(135deg, #1a140e 0%, #0d0a07 60%);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.bonus-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(92,158,46,.12) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
}

.bonus-hero-title span { color: var(--accent-green); }

.bonus-hero-sub {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 15px;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-green);
}

.bonus-card-icon {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 1;
}

.bonus-card-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-card-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-weight: 600;
}

.bonus-card-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── STEPS / INSCRIPTION ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s;
}

.step-card:hover { border-color: var(--accent-green); }

.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.step-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── UTP BLOCKS ─── */
.utp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.utp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.utp-icon { font-size: 32px; margin-bottom: 10px; }

.utp-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 4px;
}

.utp-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ─── FILTER TABS ─── */
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #fff;
}

/* ─── SPORTS GRID ─── */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.sport-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}

.sport-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.sport-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .75;
  transition: opacity .2s, transform .3s;
}

.sport-card:hover img { opacity: 1; transform: scale(1.05); }

.sport-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 6px 8px;
  background: linear-gradient(transparent, rgba(13,10,7,.9));
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ─── SEO TEXT BLOCK ─── */
.seo-block {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}

.seo-block h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.seo-block h2::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 48px; height: 2px;
  background: var(--accent-gold);
}

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

.seo-block h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  color: var(--accent-gold);
  margin: 24px 0 10px;
}

.seo-block h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 18px 0 8px;
}

.seo-block p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.75;
}

.seo-block strong {
  color: var(--text-primary);
  font-weight: 600;
}

.seo-block ul,
.seo-block ol {
  list-style: none;
  margin: 10px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-block ul li,
.seo-block ol li {
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}

.seo-block ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 12px;
  top: 3px;
}

.seo-block ol {
  counter-reset: seo-counter;
}

.seo-block ol li {
  counter-increment: seo-counter;
}

.seo-block ol li::before {
  content: counter(seo-counter) '.';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  margin: 16px 0 20px;
  border: 1px solid var(--border);
}

.table-wrap table,
.seo-block table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 480px;
}

.table-wrap table th,
.seo-block table th {
  background: var(--bg-card);
  color: var(--accent-gold);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  text-align: left;
  padding: 11px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--border-light);
}

.table-wrap table td,
.seo-block table td {
  padding: 10px 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.table-wrap table tr:last-child td,
.seo-block table tr:last-child td { border-bottom: none; }

.table-wrap table tr:hover td,
.seo-block table tr:hover td { background: rgba(255,255,255,.02); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  padding: 14px 16px;
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q::after {
  content: '+';
  font-size: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 16px 14px;
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.65;
}

.faq-item.open .faq-a { display: block; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 40px 40px 24px;
  margin-left: var(--sidebar-collapsed);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color .2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
}

/* ─── MOBILE OVERLAY ─── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 99;
}

.mobile-overlay.visible { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --sidebar-collapsed: 0px;
  }

  .hamburger { display: flex; }

  .header-nav { display: none; }

  .site-sidebar {
    width: var(--sidebar-w);
    transform: translateX(-100%);
    transition: transform .3s ease;
  }

  .site-sidebar.open {
    transform: translateX(0);
    width: var(--sidebar-w);
  }

  .page-main { margin-left: 0; }

  .hero-content { padding: 32px 20px; }

  .seo-block { padding: 32px 20px; }

  .bonus-hero { padding: 32px 20px; }

  .section { padding: 20px 16px; }

  .game-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer { padding: 32px 20px 20px; }

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

  .bonus-cards { grid-template-columns: 1fr; }

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

  .utp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 22px; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .header-logo img { height: 30px; }
  .btn-outline { display: none; }
}

/* ─── UTILITIES ─── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-gold { color: var(--accent-gold); }
.text-green { color: var(--accent-green); }
