/* ===== 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; }
.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);
}
.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;
}
.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; }

/* ===== 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); }
.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);
}
.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; }

/* Glossy shine on cards */
.game-card::before {
  content: '';
  position: absolute; top: -60%; left: -30%; width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%; z-index: 1; pointer-events: none;
  transition: all .4s;
}
.game-card:hover::before { top: -30%; left: 10%; }

/* ===== INFO CARDS (glossy) ===== */
.info-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.info-card {
  background: linear-gradient(145deg, #0e1f11 0%, #091509 100%);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.info-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.4), transparent);
}
.info-card::after {
  content: '';
  position: absolute; top: -40%; right: -20%;
  width: 180px; height: 180px;
  background: radial-gradient(ellipse, rgba(26,107,36,.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,162,39,.35);
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
}
.info-card-icon { font-size: 2rem; margin-bottom: 14px; }
.info-card-title { font-size: 1rem; font-weight: 700; color: var(--gold-light); margin-bottom: 8px; }
.info-card-text { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ===== LIVE WINS WIDGET ===== */
.wins-bar {
  background: linear-gradient(90deg, #080f09 0%, #0a1a0d 50%, #080f09 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  overflow: hidden; position: relative;
}
.wins-bar-inner {
  display: flex; align-items: center; gap: 0;
  padding: 12px 0;
}
.wins-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold-light);
  white-space: nowrap; margin-right: 24px; flex-shrink: 0;
}
.wins-label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.wins-ticker {
  display: flex; gap: 32px; align-items: center;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.wins-ticker:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.win-item {
  display: inline-flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.win-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--gold-light);
  border: 1px solid rgba(201,162,39,.3);
  flex-shrink: 0;
}
.win-info { font-size: .8rem; }
.win-player { color: var(--text-muted); }
.win-amount { color: var(--gold-light); font-weight: 700; }
.win-game { color: var(--text-muted); font-size: .72rem; }
.win-sep { color: var(--border); user-select: none; }

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.bonus-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  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; }

/* ===== 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); }

/* ===== MODAL ===== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }

.modal {
  background: linear-gradient(145deg, #0d1f10 0%, #08120a 100%);
  border: 1px solid var(--border);
  border-radius: 20px; width: 100%; max-width: 420px;
  padding: 36px 32px; position: relative;
  transform: translateY(20px) scale(.97);
  transition: all var(--transition);
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 40px var(--glow-green);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }

.modal::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.07); border: none; color: var(--text-muted);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,.12); color: var(--text-primary); }

.modal-logo { text-align: center; margin-bottom: 24px; }
.modal-logo img { height: 40px; margin: 0 auto 8px; }
.modal-logo .modal-title { font-size: 1.3rem; font-weight: 800; color: var(--gold-light); }
.modal-logo .modal-sub { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .8rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 14px;
  color: var(--text-primary); font-size: .9rem; outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.1); }
.form-input::placeholder { color: var(--text-muted); }

.form-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.form-divider span { font-size: .78rem; color: var(--text-muted); white-space: nowrap; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.form-footer { text-align: center; font-size: .82rem; color: var(--text-muted); margin-top: 16px; }
.form-footer a { color: var(--gold); font-weight: 600; }
.form-footer a:hover { color: var(--gold-light); }

/* ===== 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; }

/* ===== PROMO CODE ===== */
.promo-box {
  background: linear-gradient(135deg, #0d2010 0%, #081508 100%);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; text-align: center; margin-bottom: 28px;
  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); }

/* ===== REG GRID ===== */
@media (max-width: 860px) {
  .reg-grid { grid-template-columns: 1fr !important; }
}

/* ===== 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 16px; }
  .article { padding: 24px 20px; }
  .header { padding: 0 16px; }
  .header-links { display: none; }

  .mobile-menu-toggle {
    display: flex !important;
  }
}

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

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

/* ===== 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; }

@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); }
}
