/* ===== BANDA CASINO – Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Oswald:wght@400;700&display=swap');

:root {
  --gold:   #f0b429;
  --gold2:  #ffe066;
  --red:    #e0162b;
  --dark:   #09090f;
  --dark2:  #10101a;
  --dark3:  #181828;
  --panel:  #1a1a2e;
  --border: rgba(240,180,41,.18);
  --text:   #e8e8f0;
  --muted:  #888;
  --radius: 14px;
  --shadow: 0 4px 32px rgba(0,0,0,.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
  background: rgba(9,9,15,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .logo img {
  height: 46px;
  filter: drop-shadow(0 0 8px rgba(240,180,41,.5));
}

/* ===== NAV ===== */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 7px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  transition: background .2s, color .2s;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--gold);
  color: #000;
}

.btn-play-nav {
  margin-left: 8px;
  padding: 8px 22px !important;
  background: linear-gradient(135deg, #e0162b, #a00010) !important;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 900 !important;
  box-shadow: 0 2px 12px rgba(224,22,43,.5);
  transition: transform .15s, box-shadow .15s !important;
}
.btn-play-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(224,22,43,.7) !important;
  background: linear-gradient(135deg, #ff2040, #c00020) !important;
}

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--gold); border-radius: 2px; transition: .3s; }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-top: 68px;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.77,0,.175,1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  background: var(--dark2);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9,9,15,.82) 0%, rgba(9,9,15,.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}
.slide-overlay h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(240,180,41,.5);
  line-height: 1.1;
  max-width: 560px;
}
.slide-overlay p {
  margin-top: 14px;
  font-size: 1.1rem;
  color: var(--text);
  max-width: 420px;
  opacity: .9;
}
.slide-overlay .btn-primary { margin-top: 28px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .2s;
  z-index: 10;
}
.slider-btn:hover { background: rgba(240,180,41,.25); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 34px;
  background: linear-gradient(135deg, var(--gold), #c87c00);
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(240,180,41,.4);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(240,180,41,.6);
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #e0162b, #8b0011);
  color: #fff;
  font-weight: 900;
  font-size: .95rem;
  border-radius: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(224,22,43,.4);
  border: none;
  cursor: pointer;
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(224,22,43,.6);
}

/* ===== WINNERS TICKER ===== */
.winners-bar {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--gold);
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 46px;
  display: flex;
  align-items: center;
}
.winners-bar::before {
  content: '🏆 ПОБЕДИТЕЛИ';
  flex-shrink: 0;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--gold), #c87c00);
  color: #000;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .06em;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.winners-scroll-wrap { overflow: hidden; flex: 1; height: 100%; position: relative; }
.winners-scroll {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: scroll-winners 32s linear infinite;
}
.winners-scroll:hover { animation-play-state: paused; }
.winner-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}
.winner-item .wi-name { color: var(--gold); }
.winner-item .wi-game { color: #aaa; }
.winner-item .wi-amount {
  color: #2ecc71;
  font-weight: 900;
}
.winner-item .wi-sep { color: var(--border); }

@keyframes scroll-winners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION ===== */
.section {
  padding: 60px 0;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-bottom: 8px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 50px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: opacity .2s;
}
.section-link:hover { opacity: .7; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 16px;
}
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark3);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--border);
}
.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,.7), 0 0 20px rgba(240,180,41,.2);
  border-color: var(--gold);
  z-index: 2;
}
.game-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .3s;
}
.game-card:hover img { transform: scale(1.06); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity .25s;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-name {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.game-card-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  background: var(--gold);
  color: #000;
  font-weight: 900;
  font-size: .78rem;
  border-radius: 7px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .2s;
}
.game-card-play:hover { background: var(--gold2); }
.game-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ===== PROMO BANNERS ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.7);
}
.promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.promo-card-body {
  padding: 20px;
}
.promo-card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}
.promo-card-body p {
  margin-top: 8px;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}
.promo-card-body .btn-red { margin-top: 16px; }

/* ===== LIVE SECTION ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.live-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
  position: relative;
}
.live-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.live-card-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--dark3);
}
.live-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #e0162b;
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.live-card-body { padding: 16px; }
.live-card-body h4 { font-size: 1rem; font-weight: 700; }
.live-card-body p { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.live-card-body .btn-red { margin-top: 12px; width: 100%; justify-content: center; }

/* ===== WINNERS FEED (popup) ===== */
#winners-feed {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.win-toast {
  background: var(--panel);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.6), 0 0 0 1px rgba(240,180,41,.15);
  animation: toast-in .5s cubic-bezier(.34,1.56,.64,1) forwards;
  pointer-events: all;
  min-width: 260px;
  max-width: 340px;
}
.win-toast.removing { animation: toast-out .4s ease forwards; }
.win-toast-icon { font-size: 1.6rem; flex-shrink: 0; }
.win-toast-body { flex: 1; }
.win-toast-name { font-weight: 700; font-size: .88rem; color: var(--gold); }
.win-toast-text { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.win-toast-amount { font-weight: 900; font-size: 1.05rem; color: #2ecc71; white-space: nowrap; }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(-30px) scale(.9); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to   { opacity: 0; transform: translateX(-30px) scale(.9); }
}

/* ===== FEATURES ===== */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feature-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: border-color .2s;
}
.feature-item:hover { border-color: var(--gold); }
.feature-icon { font-size: 2.4rem; margin-bottom: 14px; }
.feature-item h4 { font-size: .95rem; font-weight: 700; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.feature-item p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  transition: color .2s;
  gap: 16px;
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-arrow {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--gold); color: #000; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.bonus-card {
  background: linear-gradient(135deg, var(--panel) 0%, rgba(26,26,46,.7) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.bonus-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,.6), 0 0 20px rgba(240,180,41,.15);
}
.bonus-card-header {
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bonus-card-header::before {
  content: '';
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(240,180,41,.12) 0%, transparent 70%);
}
.bonus-icon { font-size: 3rem; margin-bottom: 10px; }
.bonus-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.bonus-subtitle { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.bonus-card-body { padding: 20px 24px; }
.bonus-card-body h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.bonus-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.bonus-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: .83rem; color: var(--muted);
}
.bonus-feature::before { content: '✓'; color: #2ecc71; font-weight: 900; }

/* ===== PAGE HERO ===== */
.page-hero {
  margin-top: 68px;
  position: relative;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--dark2);
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .35;
}
.page-hero-body {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.page-hero-body h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(240,180,41,.4);
}
.page-hero-body p { margin-top: 8px; font-size: 1rem; color: var(--muted); max-width: 480px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 50px 0 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 40px; filter: drop-shadow(0 0 6px rgba(240,180,41,.3)); }
.footer-brand p { margin-top: 14px; font-size: .82rem; color: var(--muted); line-height: 1.7; max-width: 300px; }
.footer-col h5 {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col a { display: block; font-size: .83rem; color: var(--muted); margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.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-bottom p { font-size: .75rem; color: var(--muted); }
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
  color: var(--muted);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark3);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* ===== SEO TEXT BLOCK ===== */
.seo-section {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  padding: 56px 0 48px;
}
.seo-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.seo-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin: 32px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.seo-inner h2:first-child { margin-top: 0; }
.seo-inner h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}
.seo-inner p {
  font-size: .9rem;
  line-height: 1.85;
  color: #b0b0c0;
  margin-bottom: 14px;
}
.seo-inner ul, .seo-inner ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.seo-inner ul { list-style: disc; }
.seo-inner ol { list-style: decimal; }
.seo-inner li {
  font-size: .88rem;
  line-height: 1.75;
  color: #b0b0c0;
  margin-bottom: 4px;
}
.seo-inner li strong { color: var(--text); }
.seo-inner strong { color: var(--text); font-weight: 700; }
.seo-inner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.seo-inner a:hover { opacity: .8; }
.seo-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .slide-overlay { padding: 0 32px; }
}
@media (max-width: 700px) {
  .site-header { padding: 0 16px; }
  .main-nav { display: none; flex-direction: column; align-items: flex-start; position: fixed; top: 68px; left: 0; right: 0; background: rgba(9,9,15,.97); padding: 20px; gap: 4px; border-bottom: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 16px; }
  .nav-toggle { display: flex; }
  .hero-slider { height: 380px; }
  .slide-overlay { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .stats-inner { gap: 24px; }
  #winners-feed { bottom: 12px; left: 12px; }
  .win-toast { min-width: 220px; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-slider { height: 280px; }
  .slide-overlay h1 { font-size: 1.4rem; }
  .slide-overlay p { font-size: .82rem; }
  .slide-overlay .btn-primary { padding: 10px 20px; font-size: .85rem; }
}
