/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #090915;
  --bg2: #0f0f24;
  --bg3: #16163a;
  --card: #1a1a3e;
  --border: rgba(255,255,255,0.07);
  --gold: #f5c518;
  --gold2: #ffd700;
  --gold-dim: rgba(245,197,24,0.12);
  --green: #00e676;
  --red: #ff5252;
  --text: #ffffff;
  --text2: #b0b0d0;
  --text3: #6a6a9a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(245,197,24,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,21,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-wrap img {
  height: 42px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: all 0.2s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--gold-dim);
  color: var(--gold);
}

.header-cta {
  flex-shrink: 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f5c518 0%, #e8a800 100%);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--gold-dim);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  overflow: hidden;
}

.ticker-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 40px;
  gap: 16px;
}

.ticker-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.ticker-scroll {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-move 40s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 13px;
  color: var(--text2);
  border-right: 1px solid var(--border);
}

.ticker-item .win-amount {
  color: var(--green);
  font-weight: 700;
}

.ticker-item .win-player {
  color: var(--text);
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,197,24,0.06) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 80%, rgba(80,40,200,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--gold);
}

.hero-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  color: var(--text3);
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions .btn-gold {
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 12px;
}

.hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(9,9,21,0.9);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 10px 16px;
  backdrop-filter: blur(8px);
}

.hero-img-badge .badge-title {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-img-badge .badge-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}

/* ===== PROMO STRIP ===== */
.promo-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  overflow: hidden;
}

.promo-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}

.promo-strip-inner::-webkit-scrollbar { display: none; }

.promo-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
  cursor: pointer;
}

.promo-chip:hover { background: var(--gold-dim); }

.promo-chip-icon {
  font-size: 22px;
}

.promo-chip-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.promo-chip-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.promo-chip-sub {
  font-size: 11px;
  color: var(--text3);
}

/* ===== SECTION ===== */
.section {
  padding: 60px 24px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title span {
  color: var(--gold);
}

.section-badge {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text3);
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 8px;
  transition: all 0.2s;
}

.see-all:hover {
  background: var(--gold-dim);
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  aspect-ratio: 3/4;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: rgba(245,197,24,0.3);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.25s;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.game-card-btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  padding: 7px;
  border-radius: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-card-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.game-card-label.hot { background: #ff4444; color: #fff; }
.game-card-label.new { background: var(--green); color: #000; }

/* ===== WINS TABLE ===== */
.wins-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wins-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.win-row {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  animation: fadeIn 0.4s ease;
}

.win-row:last-child { border-bottom: none; }
.win-row:nth-child(even) { background: rgba(26,26,62,0.5); }
.win-row:hover { background: var(--bg3); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.win-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5c35d4, #2a1a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.win-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.win-name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-game {
  font-size: 12px;
  color: var(--text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-amount-cell {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
  text-align: right;
}

.win-time {
  font-size: 11px;
  color: var(--text3);
  text-align: right;
  white-space: nowrap;
}

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: rgba(245,197,24,0.2);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.bonus-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.bonus-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bonus-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

.bonus-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bonus-terms {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 20px;
}

/* ===== SEO TEXT ===== */
.seo-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.seo-content {
  max-width: 860px;
}

.seo-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.seo-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--gold);
}

.seo-content p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 12px;
}

.seo-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.seo-content li {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: rgba(245,197,24,0.25);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(255,255,255,0.02); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 0;
}

/* ===== LIVE SECTION ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.live-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}

.live-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border-color: rgba(245,197,24,0.3);
}

.live-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.live-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff2d2d;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.live-players {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  font-size: 11px;
  color: var(--text2);
  padding: 3px 8px;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}

.live-card-body {
  padding: 14px 16px;
}

.live-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.live-card-sub {
  font-size: 12px;
  color: var(--text3);
}

.live-card-limits {
  font-size: 12px;
  color: var(--gold);
  margin-top: 8px;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text2);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 14px;
  color: var(--text3);
  transition: color 0.2s;
}

.footer-col li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.6;
  max-width: 600px;
}

.footer-age {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text3);
  flex-shrink: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 60px 24px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(245,197,24,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 16px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--gold-dim);
  border-color: rgba(245,197,24,0.4);
  color: var(--gold);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open { display: block; }

.mobile-nav-panel a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text2);
  transition: all 0.2s;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a.active {
  background: var(--gold-dim);
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--bg3);
  border: none;
  border-radius: 8px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-img { max-height: 260px; }
  .hero-stats { gap: 20px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .win-row {
    grid-template-columns: 36px 1fr auto;
  }
  .win-time { display: none; }

  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .promo-chip { padding: 14px 18px; }
  .hero { padding: 40px 16px; }
  .section { padding: 40px 16px; }
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--text3); }
.fw-800 { font-weight: 800; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
