/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:        #060d08;
  --bg-card:        #0a1a0d;
  --bg-card2:       #0d2010;
  --green-deep:     #0b2e10;
  --green-mid:      #134d1a;
  --green-bright:   #1a6b24;
  --gold:           #c9a227;
  --gold-light:     #ffd679;
  --gold-hover:     #e8b830;
  --text-primary:   #f0ede4;
  --text-muted:     #8a9e8c;
  --text-gold:      #ffd679;
  --border:         rgba(201,162,39,.18);
  --glow-green:     rgba(26,107,36,.35);
  --glow-gold:      rgba(201,162,39,.4);
  --sidebar-w:      240px;
  --header-h:       70px;
  --transition:     .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(6,13,8,.97) 0%, rgba(6,13,8,.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 24px;
  gap: 20px;
}

.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; cursor: pointer; }
.header-logo img { height: 36px; width: auto; }
.header-logo span {
  font-size: 1.15rem; font-weight: 700; letter-spacing: .04em;
  color: var(--gold-light);
}

.header-nav { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-links { display: flex; gap: 20px; align-items: center; margin-right: 10px; }
.header-links a {
  font-size: .85rem; color: var(--text-muted);
  transition: color var(--transition); cursor: pointer;
}
.header-links a:hover { color: var(--gold-light); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 9px 22px;
  border-radius: 8px; font-weight: 600; font-size: .88rem;
  cursor: pointer; border: none; outline: none;
  transition: all var(--transition); white-space: nowrap;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 12px var(--glow-gold);
}
.btn-gold {
  background: linear-gradient(135deg, #c9a227 0%, #e8b830 50%, #c9a227 100%);
  color: #0a0800;
  box-shadow: 0 4px 20px rgba(201,162,39,.35);
  position: relative; overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
  background: rgba(255,255,255,.25); transform: skewX(-20deg);
  transition: left .5s;
}
.btn-gold:hover::after { left: 120%; }
.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(201,162,39,.55);
  transform: translateY(-1px);
}
.btn-green {
  background: linear-gradient(135deg, #134d1a 0%, #1a6b24 100%);
  color: var(--text-primary);
  border: 1px solid rgba(26,107,36,.5);
}
.btn-green:hover {
  background: linear-gradient(135deg, #1a6b24 0%, #22882e 100%);
  box-shadow: 0 4px 18px var(--glow-green);
}

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

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed; top: var(--header-h); left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: linear-gradient(180deg, #080f09 0%, #060d08 100%);
  border-right: 1px solid var(--border);
  overflow-y: auto; overflow-x: hidden;
  z-index: 50;
  padding: 20px 0 30px;
}

.sidebar-section-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 10px 20px 6px;
}

.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px;
  font-size: .88rem; color: var(--text-muted);
  transition: all var(--transition);
  border-left: 3px solid transparent;
  position: relative; cursor: pointer;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: var(--gold-light);
  background: linear-gradient(90deg, rgba(201,162,39,.08) 0%, transparent 100%);
  border-left-color: var(--gold);
}
.sidebar-nav li a .nav-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.sidebar-cta { padding: 20px 16px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('header-bg.webp');
  background-size: cover; background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,13,8,.1) 0%,
    rgba(6,13,8,.5) 60%,
    rgba(6,13,8,.98) 100%
  );
}

.hero-content {
  position: relative; z-index: 1;
  padding: 40px 48px 60px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 50px;
  padding: 5px 14px; font-size: .78rem; color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}

.hero-title {
  font-size: 3rem; font-weight: 800;
  line-height: 1.12; margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem; color: var(--text-muted);
  margin-bottom: 32px; line-height: 1.6; max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn { padding: 13px 32px; font-size: 1rem; }

/* ===== FEATURES STRIP ===== */
.features-strip {
  display: flex; gap: 0;
  background: linear-gradient(90deg, #0a1a0d 0%, #0d2010 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.feature-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
  flex-shrink: 0; min-width: 180px;
  transition: background var(--transition);
  cursor: default;
}
.feature-item:hover { background: rgba(201,162,39,.06); }
.feature-icon { font-size: 1.5rem; }
.feature-text { font-size: .82rem; font-weight: 600; color: var(--text-primary); }
.feature-text span { display: block; font-size: .72rem; color: var(--text-muted); font-weight: 400; }

/* ===== WINS BAR (ticker) ===== */
.wins-bar {
  overflow: hidden;
  background: rgba(6,13,8,.9);
  border-bottom: 1px solid var(--border);
}
.wins-bar-inner {
  display: flex; align-items: center;
  height: 44px;
}
.wins-label {
  flex-shrink: 0;
  font-size: .78rem; font-weight: 700; color: var(--gold-light);
  padding: 0 16px;
  background: linear-gradient(90deg, rgba(201,162,39,.15), transparent);
  height: 100%; display: flex; align-items: center;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.wins-ticker {
  flex: 1; overflow: hidden;
  display: flex; align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  gap: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.win-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 20px; font-size: .78rem;
}
.win-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: var(--gold-light);
  flex-shrink: 0;
}
.win-player { color: var(--text-muted); }
.win-amount { color: var(--gold-light); font-weight: 700; }
.win-game { color: var(--text-muted); }
.win-sep { color: rgba(201,162,39,.3); padding: 0 4px; }

/* ===== SECTION HEADERS ===== */
.section { padding: 48px; }
.section + .section { padding-top: 0; }

.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-size: 1.35rem; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.section-title::before {
  content: '';
  width: 4px; height: 22px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
}
.section-link { font-size: .83rem; color: var(--gold); transition: color var(--transition); cursor: pointer; }
.section-link:hover { color: var(--gold-light); }

/* ===== GAME CARDS ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  border-radius: 14px; overflow: hidden;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  aspect-ratio: 3/4;
}
.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,.6), 0 0 20px var(--glow-gold);
}
.game-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.game-card:hover img { transform: scale(1.06); }

.game-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,13,8,.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px 12px;
  opacity: 0; transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-name {
  font-size: .8rem; font-weight: 600;
  color: var(--text-primary); line-height: 1.3;
  margin-bottom: 8px;
}
.game-card-play {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0800; font-weight: 700; font-size: .8rem;
  padding: 7px 16px; border-radius: 6px;
  transition: all var(--transition);
  border: none; cursor: pointer;
}
.game-card-play:hover { transform: scale(1.05); }

.game-card-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--gold);
  color: #0a0800; font-size: .65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 50px; text-transform: uppercase;
  letter-spacing: .04em;
}
.game-card-badge.hot { background: #e8453c; color: #fff; }
.game-card-badge.new { background: var(--green-bright); color: #fff; }

/* ===== SLOTS FILTER ===== */
.slots-filter {
  display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 50px; border: 1.5px solid var(--border);
  background: transparent; color: var(--text-muted);
  font-size: .83rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,162,39,.08);
}

/* ===== LIVE CARDS ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.live-card {
  background: linear-gradient(145deg, #0e2212 0%, #091509 100%);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all var(--transition);
}
.live-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 24px var(--glow-gold);
}
.live-card-inner { padding: 24px 20px; text-align: center; }
.live-badge {
  display: inline-block;
  background: rgba(232,69,60,.15);
  border: 1px solid rgba(232,69,60,.4);
  color: #e8453c; font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 16px;
  letter-spacing: .05em;
}
.live-game-icon { font-size: 3rem; margin-bottom: 12px; }
.live-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.live-card-sub { font-size: .78rem; color: var(--text-muted); margin-bottom: 12px; }
.live-card-players {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--text-muted);
}
.live-dot-sm {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px; margin-top: 28px;
}
.info-card {
  background: linear-gradient(145deg, #0e1f11 0%, #091509 100%);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 24px; transition: all var(--transition);
}
.info-card:hover {
  border-color: rgba(201,162,39,.3);
  transform: translateY(-2px);
}
.info-card-icon { font-size: 2rem; margin-bottom: 12px; }
.info-card-title { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.info-card-text { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ===== BONUS GRID ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.bonus-card {
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  background: linear-gradient(145deg, #0e2212 0%, #091509 100%);
  position: relative; transition: all var(--transition);
}
.bonus-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,.06) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 24px var(--glow-gold);
}
.bonus-card-header {
  height: 100px;
  background: linear-gradient(135deg, #134d1a 0%, #1a6b24 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.bonus-card-header::after {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,255,255,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.bonus-card-body { padding: 20px; }
.bonus-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.bonus-card-amount {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px;
}
.bonus-card-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

/* ===== PROMO BOX ===== */
.promo-box {
  background: linear-gradient(135deg, #0d2010 0%, #081508 100%);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; text-align: center;
  position: relative; overflow: hidden;
}
.promo-box::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,162,39,.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.promo-box-title { font-size: 1.4rem; font-weight: 800; color: var(--gold-light); margin-bottom: 8px; }
.promo-box-sub { font-size: .9rem; color: var(--text-muted); margin-bottom: 24px; }
.promo-code-display {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(201,162,39,.1);
  border: 2px dashed rgba(201,162,39,.4);
  border-radius: 12px; padding: 16px 28px;
  margin-bottom: 20px;
}
.promo-code-text { font-size: 1.8rem; font-weight: 900; letter-spacing: .12em; color: var(--gold-light); }
.copy-btn {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  padding: 6px 12px; border-radius: 7px; cursor: pointer; font-size: .8rem;
  transition: all var(--transition);
}
.copy-btn:hover { border-color: var(--gold); color: var(--gold-light); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.faq-item {
  background: linear-gradient(145deg, #0e1f11 0%, #091509 100%);
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(201,162,39,.3); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: none; border: none; color: var(--text-primary);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  text-align: left; gap: 12px;
}
.faq-question:hover { color: var(--gold-light); }
.faq-arrow {
  font-size: .75rem; color: var(--gold); flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
}
.faq-answer.open { display: block; }
.faq-answer p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== PAGE SECTIONS ===== */
.page-section { display: none; }
.page-section.active { display: block; }

/* ===== ARTICLE TEXT ===== */
.article {
  max-width: 860px;
  background: linear-gradient(145deg, #0e1f11 0%, #091509 100%);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 40px 44px;
  margin-bottom: 28px;
}
.article h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; color: var(--gold-light); }
.article h2 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 10px; color: var(--text-primary); }
.article h3 { font-size: 1rem; font-weight: 700; margin: 20px 0 8px; color: var(--gold); }
.article p { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.article ol, .article ul { padding-left: 20px; margin-bottom: 12px; }
.article li { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 4px; }
.article .lead { font-size: 1rem; color: var(--text-primary); }

/* ===== LIVE WINS PANEL ===== */
.wins-panel {
  background: linear-gradient(145deg, #0e1f11 0%, #091509 100%);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; margin-top: 28px;
}
.wins-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.wins-panel-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 700;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; animation: blink 1.4s infinite; }

.wins-list { display: flex; flex-direction: column; gap: 8px; }
.win-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.025);
  border-radius: 10px; border: 1px solid rgba(255,255,255,.04);
  transition: background var(--transition);
  animation: win-appear .4s ease;
}
@keyframes win-appear {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.win-row:hover { background: rgba(201,162,39,.06); }
.win-row-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: var(--gold-light);
  border: 1.5px solid rgba(201,162,39,.25);
}
.win-row-info { flex: 1; min-width: 0; }
.win-row-player { font-size: .83rem; color: var(--text-primary); font-weight: 500; }
.win-row-game { font-size: .75rem; color: var(--text-muted); }
.win-row-amount { font-size: .95rem; font-weight: 800; color: var(--gold-light); white-space: nowrap; }
.win-row-time { font-size: .7rem; color: var(--text-muted); white-space: nowrap; }

/* ===== STATS ROW ===== */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 28px;
}
.stat-card {
  background: linear-gradient(145deg, #0e1f11 0%, #091509 100%);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 20px; text-align: center;
  transition: all var(--transition);
}
.stat-card:hover { border-color: rgba(201,162,39,.3); transform: translateY(-2px); }
.stat-value {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #050c06;
  border-top: 1px solid var(--border);
  padding: 40px 48px 30px;
}
.footer-inner {
  display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 32px;
}
.footer-col { flex: 1; min-width: 200px; }
.footer-brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-brand span { font-size: 1rem; font-weight: 700; color: var(--gold-light); }
.footer-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.7; }
.footer-col-title {
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .85rem; color: var(--text-muted); transition: color var(--transition); cursor: pointer; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .75rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --sidebar-w: 200px; }
  .hero-title { font-size: 2.4rem; }
  .section { padding: 32px; }
}

@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0; }
  .hero-content { padding: 24px 24px 40px; }
  .hero-title { font-size: 1.9rem; }
  .section { padding: 24px; }
  .wins-bar { padding: 0; }
  .article { padding: 24px 20px; }
  .header { padding: 0 16px; }
  .header-links { display: none; }
  .mobile-menu-toggle { display: flex !important; }
  .site-footer { padding: 32px 24px 24px; }
}

.mobile-menu-toggle {
  display: none;
  background: none; border: none; color: var(--text-primary);
  cursor: pointer; padding: 6px; font-size: 1.3rem;
}

.sidebar-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 49;
  background: rgba(0,0,0,.5);
}
.sidebar-overlay.open { display: block; }

@media (max-width: 600px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { flex: 1; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .live-grid { grid-template-columns: 1fr; }
}
