/* =============================================
   BALLY CASINO UK — style.css
   Bally Brand: Crimson Red #D4002A, Gold #FFD700
   Dark: #0e0e1a, Mid-dark: #1a1a2e, Card: #1f1f35
   ============================================= */

:root {
  --red: #D4002A;
  --red-dark: #a80022;
  --gold: #FFD700;
  --gold-light: #ffe566;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --bg: #0e0e1a;
  --bg-mid: #1a1a2e;
  --bg-card: #1f1f35;
  --bg-card-hover: #252542;
  --text: #e8e8f0;
  --text-muted: #9090aa;
  --border: #2e2e4a;
  --border-gold: rgba(212,0,42,0.35);
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

img { display: none !important; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-align: center;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,0,42,0.45);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  text-align: center;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-large { font-size: 1.05rem; padding: 15px 36px; }
.btn-sm { font-size: 0.85rem; padding: 8px 18px; }

/* ---- TICKER BAR ---- */
.ticker-bar {
  background: var(--red);
  color: var(--white);
  padding: 8px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.ticker-label {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 20px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.2);
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 32s linear infinite;
  font-size: 0.82rem;
}
.ticker-track span { flex-shrink: 0; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- HEADER ---- */
.site-header {
  background: var(--bg-mid);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-wrap { flex-shrink: 0; }
.logo-svg { display: block; height: 40px; width: auto; }
.main-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  flex: 1;
}
.main-nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.main-nav a:hover { color: var(--gold); background: rgba(255,215,0,0.07); }
.nav-cta { flex-shrink: 0; }

/* ---- TOP BONUS BANNER ---- */
.top-banner {
  background: linear-gradient(90deg, #D4002A 0%, #8B0015 50%, #D4002A 100%);
  border-bottom: 2px solid var(--gold);
  padding: 14px 20px;
}
.top-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.top-banner-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.bonus-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(0,0,0,0.25);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  width: fit-content;
}
.top-banner-text strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}
.bonus-fine {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg) 100%);
  padding: 64px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,0,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
h1 span { color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.badge-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.badge-card:hover { border-color: var(--gold); background: var(--bg-card-hover); }
.badge-card svg { flex-shrink: 0; }
.badge-card strong {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 700;
}
.badge-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- SECTIONS GENERAL ---- */
.section-bonuses,
.section-slots,
.section-games,
.section-topplayers,
.section-tournaments,
.section-about,
.section-payments,
.section-review,
.section-faq,
.section-responsible {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.section-intro {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 36px;
  max-width: 760px;
  line-height: 1.7;
}

/* ---- BONUSES ---- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .15s;
}
.bonus-card:hover { border-color: var(--red); transform: translateY(-3px); }
.bonus-card--highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 60%, rgba(212,0,42,0.08) 100%);
}
.bonus-icon { font-size: 1.8rem; }
.bonus-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.bonus-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.bonus-terms {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}
.bonus-terms li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.bonus-terms li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.bonus-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-mid);
  border-left: 3px solid var(--red);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.5;
  margin-top: 8px;
}

/* ---- SLOTS ---- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  position: relative;
}
.slot-card:hover { border-color: var(--red); background: var(--bg-card-hover); transform: translateX(3px); }
.slot-icon { font-size: 1.6rem; flex-shrink: 0; }
.slot-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.slot-info strong { font-size: 0.9rem; color: var(--white); }
.slot-playing { font-size: 0.72rem; color: var(--gold); }
.slot-rtp { font-size: 0.7rem; color: var(--text-muted); }
.slot-badge {
  position: absolute;
  top: 8px;
  right: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 20px;
}

/* ---- GAMES ---- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
  max-width: 250px;
}
.game-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.game-icon {
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.game-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.game-live {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: auto;
}

/* ---- TOP PLAYERS ---- */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.player-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .2s;
}
.player-card:hover { border-color: var(--gold); }
.player-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.player-info { flex: 1; }
.player-info strong { font-size: 0.9rem; color: var(--white); display: block; }
.player-info span { font-size: 0.75rem; color: var(--text-muted); }
.player-win {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ---- TOURNAMENTS ---- */
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.tournament-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .15s;
  max-width: 250px;
}
.tournament-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.t-icon { font-size: 1.8rem; }
.t-prize {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.tournament-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.tournament-card .btn-primary { margin-top: auto; align-self: flex-start; }

/* ---- MID BANNER ---- */
.mid-banner {
  background: linear-gradient(90deg, #8B0015 0%, var(--red) 50%, #8B0015 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 24px 20px;
}
.mid-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mid-banner-copy strong { display: block; font-size: 1.1rem; color: var(--white); font-weight: 700; }
.mid-banner-copy span { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color .2s;
  max-width: 260px;
}
.about-card:hover { border-color: var(--red); }
.about-icon { font-size: 1.8rem; margin-bottom: 8px; }
.about-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ---- PAYMENTS TABLE ---- */
.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.payments-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
  font-size: 0.88rem;
}
.payments-table thead { background: var(--bg-mid); }
.payments-table th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--red);
  white-space: nowrap;
}
.payments-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  white-space: nowrap;
}
.payments-table tbody tr { background: var(--bg-card); }
.payments-table tbody tr:nth-child(even) { background: var(--bg-mid); }
.payments-table tbody tr:hover { background: var(--bg-card-hover); }
.payments-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-mid);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.5;
}

/* ---- REVIEW ---- */
.review-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.review-meta span { display: flex; align-items: center; gap: 6px; }
.review-body { max-width: 860px; }
.review-body h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--gold);
  border-left: 3px solid var(--red);
  padding-left: 14px;
}
.review-body p {
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.review-scores {
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  max-width: 720px;
}
.review-scores h3 { color: var(--white); margin-bottom: 20px; }
.scores-grid { display: flex; flex-direction: column; gap: 14px; }
.score-item { display: flex; align-items: center; gap: 14px; }
.score-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  min-width: 160px;
  white-space: nowrap;
}
.score-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-mid);
  border-radius: 10px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  border-radius: 10px;
  transition: width 1s ease;
}
.score-val { font-size: 0.82rem; font-weight: 700; color: var(--gold); min-width: 54px; text-align: right; }
.overall-score {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.overall-score span { font-size: 1rem; color: var(--text-muted); }
.overall-score strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--red); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-chevron {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- RESPONSIBLE GAMBLING ---- */
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}
.responsible-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  max-width: 250px;
}
.r-icon { font-size: 1.7rem; margin-bottom: 8px; }
.responsible-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.responsible-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.responsible-footer {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-mid);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
  max-width: 860px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-mid);
  border-top: 2px solid var(--red);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand { max-width: 480px; }
.footer-logo { height: 36px; width: auto; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.65; }
.footer-links { display: flex; gap: 40px; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gold); margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: 0.8rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--gold); }
.footer-badges {
  max-width: 1160px;
  margin: 0 auto 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.f-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.f-badge span { font-size: 0.65rem; color: var(--text-muted); text-align: center; }
.footer-legal {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.footer-legal p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-badge-panel { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-inner { gap: 12px; }
  .hero { padding: 40px 20px; }
  h1 { font-size: 2rem; }
  .hero-badge-panel { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.4rem; }
  .section-bonuses, .section-slots, .section-games,
  .section-topplayers, .section-tournaments, .section-about,
  .section-payments, .section-review, .section-faq,
  .section-responsible { padding: 40px 20px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { max-width: none; }
  .game-card { max-width: none; }
  .tournament-card { max-width: none; }
  .responsible-card { max-width: none; }
  .tournaments-grid { grid-template-columns: 1fr 1fr; }
  .mid-banner-inner { flex-direction: column; gap: 14px; }
  .top-banner-inner { flex-direction: column; gap: 10px; }
  .review-scores { padding: 18px 14px; }
  .score-label { min-width: 120px; font-size: 0.75rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .hero-badge-panel { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 12px; }
  .games-grid { grid-template-columns: 1fr; }
  .tournaments-grid { grid-template-columns: 1fr; }
  .players-grid { grid-template-columns: 1fr; }
  .responsible-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: 1fr; }
  h2 { font-size: 1.5rem; }
  .footer-badges { gap: 14px; }
  .nav-cta { font-size: 0.8rem; padding: 8px 16px; }
}

/* =====================
   SCROLL & MISC
   ===================== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-mid); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

::selection { background: rgba(212,0,42,0.35); color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
