/* =====================================================
   LIRASPIN CASINO — MAIN STYLESHEET (app.css)
   Inspired by https://97-liraspin-4.com/
   ===================================================== */

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Roboto', 'Segoe UI', Verdana, Arial, sans-serif;
  background: #10072D;
  color: #FAF3FD;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ── VARIABLES ─────────────────────────────────────── */
:root {
  --sidebar-w:         64px;
  --sidebar-w-open:    240px;
  --header-h:          64px;

  --purple-bg:         #10072D;
  --purple-card:       #1A0F3D;
  --purple-card-2:     #241656;
  --purple-btn:        #473592;
  --purple-btn-hover:  #5B46B8;
  --purple-line:       rgba(255,255,255,.07);

  --orange:            #ED5500;
  --orange-2:          #FF7A1A;
  --orange-dark:       #B83F00;

  --text:              #FAF3FD;
  --text-muted:        rgba(250,243,253,.65);
  --text-dim:          rgba(250,243,253,.45);

  --transition:        .28s cubic-bezier(.4,0,.2,1);
  --radius:            12px;
  --radius-pill:       1000px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes pulse-glow {
  0%   { box-shadow: 0 4px 18px rgba(237,85,0,.35); }
  50%  { box-shadow: 0 4px 30px rgba(237,85,0,.80), 0 0 0 6px rgba(237,85,0,.14); }
  100% { box-shadow: 0 4px 18px rgba(237,85,0,.35); }
}
@keyframes pulse-glow-hero {
  0%   { box-shadow: 0 6px 26px rgba(237,85,0,.4); }
  50%  { box-shadow: 0 6px 46px rgba(237,85,0,.90), 0 0 0 12px rgba(237,85,0,.12); }
  100% { box-shadow: 0 6px 26px rgba(237,85,0,.4); }
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--purple-bg);
  display: flex;
  align-items: center;
  padding: 0 18px 0 0;
  z-index: 200;
  border-bottom: 1px solid var(--purple-line);
  gap: 10px;
}

/* Burger */
.header__burger {
  width: 48px;
  min-width: 48px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  background: none;
  border: none;
  color: #fff;
  z-index: 210;
  transition: background var(--transition);
}
.header__burger:hover { background: rgba(255,255,255,.07); }

.header__burger .bar {
  display: block;
  width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  position: relative;
  transition: all var(--transition);
}
.header__burger .bar::before,
.header__burger .bar::after {
  content: '';
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all var(--transition);
}
.header__burger .bar::before { top: -7px; }
.header__burger .bar::after  { top:  7px; }

body.nav-open .header__burger .bar         { background: transparent; }
body.nav-open .header__burger .bar::before { transform: rotate(45deg);  top: 0; }
body.nav-open .header__burger .bar::after  { transform: rotate(-45deg); top: 0; }

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  font-weight: 900;
  letter-spacing: .3px;
  margin-right: 6px;
}
.header__logo-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.header__logo-icon svg { width: 34px; height: 34px; }
.header__logo-text {
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
}
.header__logo-text .accent { color: var(--orange); }

/* Tabs */
.header__tabs {
  display: flex; gap: 4px;
  margin-right: auto;
  flex-shrink: 0;
  padding-left: 12px;
}
.header__tab {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  color: var(--text-muted);
  background: transparent; border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.header__tab .ico { font-size: 15px; }
.header__tab:hover { background: rgba(255,255,255,.06); color: #fff; }
.header__tab.active {
  background: var(--purple-card-2);
  color: #fff;
}

/* Actions */
.header__actions {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.header__search {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--purple-card-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; color: #fff; flex-shrink: 0;
  transition: background var(--transition);
}
.header__search:hover { background: var(--purple-btn); }

.btn-login {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--purple-btn);
  color: #fff;
  font-size: 14px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  border: none;
  transition: all var(--transition);
}
.btn-login:hover { background: var(--purple-btn-hover); }

/* Sign up — pulsing */
.btn-signup {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #fff;
  font-size: 14px; font-weight: 800;
  cursor: pointer; border: none; white-space: nowrap;
  animation: pulse-glow 2.4s ease-in-out infinite;
  transition: transform var(--transition), filter var(--transition);
}
.btn-signup:hover {
  transform: translateY(-1px); filter: brightness(1.1);
  animation-play-state: paused;
}

/* =====================================================
   SIDEBAR
   ===================================================== */
.sidebar {
  position: fixed;
  top: var(--header-h); left: 0;
  width: var(--sidebar-w);
  height: calc(100vh - var(--header-h));
  background: var(--purple-bg);
  z-index: 150;
  overflow-x: hidden;
  overflow-y: auto;
  transition: width var(--transition);
  display: flex; flex-direction: column;
  padding: 12px 0;
  border-right: 1px solid var(--purple-line);
}
body.nav-open .sidebar { width: var(--sidebar-w-open); }

.sidebar__item {
  display: flex; align-items: center;
  height: 48px;
  padding: 0 14px;
  margin: 2px 8px;
  border-radius: 10px;
  cursor: pointer; gap: 14px;
  transition: background var(--transition);
  white-space: nowrap; overflow: hidden;
  position: relative;
}
.sidebar__item:hover { background: var(--purple-card-2); }
.sidebar__item.active { background: var(--purple-card-2); }
.sidebar__item.active::before {
  content: '';
  position: absolute; left: -8px; top: 8px; bottom: 8px;
  width: 3px; background: var(--orange);
  border-radius: 0 2px 2px 0;
}

.sidebar__icon {
  min-width: 22px; width: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  opacity: .85;
}
.sidebar__item:hover .sidebar__icon,
.sidebar__item.active .sidebar__icon { opacity: 1; }

.sidebar__label {
  font-size: 14px; font-weight: 500;
  color: var(--text);
  opacity: 0;
  transition: opacity var(--transition);
}
body.nav-open .sidebar__label { opacity: 1; }
.sidebar__item.active .sidebar__label { color: var(--orange); font-weight: 600; }

.sidebar__divider {
  height: 1px;
  background: var(--purple-line);
  margin: 10px 16px;
}

.nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 140;
  background: rgba(0,0,0,.55);
}
body.nav-open .nav-overlay { display: block; }

/* =====================================================
   MAIN WRAPPER
   ===================================================== */
.main {
  margin: var(--header-h) auto 0 auto;
  padding-left: var(--sidebar-w);
  max-width: 1400px;
  min-height: calc(100vh - var(--header-h));
  transition: padding-left var(--transition);
}

/* =====================================================
   HERO — THREE SIDE-BY-SIDE PROMO BANNERS
   ===================================================== */
.hero-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 14px 14px 0;
}

.promo-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 36px;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #2A125E 0%, #1A0F3D 55%, #150834 100%);
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

/* Background banner image */
.promo-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform var(--transition), filter var(--transition);
}
.promo-card:hover .promo-card__bg {
  transform: scale(1.04);
  filter: brightness(1.08);
}

/* Dark gradient overlay so text remains readable */
.promo-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16,7,45,.88) 0%, rgba(16,7,45,.55) 45%, rgba(16,7,45,.15) 80%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.promo-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 80%;
}
.promo-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.promo-card__title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.promo-card__title .accent { color: var(--orange); }
.promo-card__code {
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.promo-card__code strong {
  background: rgba(16,7,45,.65);
  padding: 3px 10px;
  border-radius: 6px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: .5px;
}
.promo-card__cta {
  align-self: flex-start;
  margin-top: 6px;
  padding: 11px 30px;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #fff;
  font-size: 14px; font-weight: 800;
  border-radius: var(--radius-pill);
  text-transform: none;
  letter-spacing: .2px;
  animation: pulse-glow 2.4s ease-in-out infinite;
  transition: transform var(--transition), filter var(--transition);
}
.promo-card:hover .promo-card__cta {
  transform: translateY(-1px);
  filter: brightness(1.1);
  animation-play-state: paused;
}

.promo-card__art {
  position: relative;
  z-index: 2;
  font-size: 110px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 28px rgba(237,85,0,.4));
}

/* =====================================================
   SECTION HEAD
   ===================================================== */
.section-title {
  display: flex; align-items: center;
  gap: 10px;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
}
.section-title__icon {
  font-size: 1.1em;
  display: inline-flex;
  filter: drop-shadow(0 2px 6px rgba(237,85,0,.45));
}
.section-title--center { justify-content: center; text-align: center; margin-bottom: 28px; }

.section-title__more {
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  background: var(--purple-card-2);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.section-title__more:hover { background: var(--purple-btn); color: #fff; }

/* =====================================================
   GAMES SECTION
   ===================================================== */
.games-section {
  padding: 32px 22px 10px;
}
.games-section__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.game-card {
  position: relative; border-radius: 12px;
  overflow: hidden;
  background: var(--purple-card-2);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0,0,0,.55), 0 0 0 1px rgba(237,85,0,.35);
  z-index: 2;
}
.game-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: filter var(--transition);
}
.game-card:hover img { filter: brightness(1.08); }

.game-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16,7,45,.92) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__name {
  font-size: 12px; font-weight: 700;
  color: #fff; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.game-card__provider {
  font-size: 10px; font-weight: 600;
  color: var(--orange); margin-top: 2px;
}

.game-card__heart {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px;
  background: rgba(16,7,45,.55);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; border: none;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
  z-index: 3;
  opacity: 0;
}
.game-card:hover .game-card__heart { opacity: 1; }
.game-card__heart:hover,
.game-card__heart.liked { background: rgba(237,85,0,.9); color: #fff; }

.game-card__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
  background: rgba(16,7,45,.35);
  z-index: 2;
}
.game-card:hover .game-card__play { opacity: 1; }
.game-card__play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  box-shadow: 0 6px 24px rgba(237,85,0,.6);
  padding-left: 4px;
}

/* =====================================================
   BETS TABLE
   ===================================================== */
.bets {
  margin: 40px 14px 0;
  padding: 20px 22px 26px;
  background: var(--purple-card);
  border-radius: 16px;
}

.bets__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--purple-line);
  padding-bottom: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.bets__tabs {
  display: flex;
  align-items: center;
  gap: 4px;
}
.bets__tab {
  position: relative;
  padding: 10px 16px 14px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: color var(--transition);
}
.bets__tab:hover { color: #fff; }
.bets__tab.active { color: #fff; }
.bets__tab.active::after {
  content: '';
  position: absolute;
  left: 8px; right: 8px; bottom: -1px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.bets__toggle {
  display: flex;
  align-items: center;
  background: var(--purple-card-2);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 2px;
}
.bets__toggle-btn {
  padding: 8px 18px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.bets__toggle-btn:hover { color: #fff; }
.bets__toggle-btn.active {
  background: var(--purple-btn);
  color: #fff;
}
.bets__toggle-ico { font-size: 13px; }

.bets__table-wrap { overflow-x: auto; }

.bets__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
  min-width: 820px;
}
.bets__table thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  padding: 10px 14px;
  letter-spacing: .2px;
}
.bets__table tbody tr {
  background: var(--purple-card-2);
  transition: background var(--transition);
}
.bets__table tbody tr:hover {
  background: #2C1A64;
}
.bets__table tbody td {
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  vertical-align: middle;
}
.bets__table tbody td:first-child { border-radius: 10px 0 0 10px; }
.bets__table tbody td:last-child  { border-radius: 0 10px 10px 0; }

.bets__game-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  font-weight: 600;
}
.bets__game-cell img {
  width: 28px; height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.bets__game-cell span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.bets__pill {
  display: inline-block;
  padding: 5px 12px;
  background: var(--purple-bg);
  border: 1px solid var(--purple-line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  min-width: 70px;
  text-align: center;
}
.bets__pill--mult {
  background: #0F1F4A;
  border-color: rgba(100,140,255,.25);
  color: #C9D8FF;
}
.bets__payout {
  color: #27E67C;
  font-weight: 800;
  font-size: 14px;
}
.bets__th-payout { color: var(--orange); }

/* =====================================================
   PROVIDERS
   ===================================================== */
.providers {
  padding: 48px 22px 24px;
}
.providers__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.provider {
  background: var(--purple-card-2);
  border-radius: 12px;
  height: 72px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,.85);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid var(--purple-line);
}
.provider:hover {
  background: var(--purple-btn);
  transform: translateY(-2px);
  color: #fff;
}

/* =====================================================
   PAYMENTS BAR
   ===================================================== */
.payments-bar {
  margin: 36px 14px 0;
  padding: 20px 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.payments-bar__item {
  font-size: 15px; font-weight: 800;
  color: rgba(255,255,255,.95);
  letter-spacing: .3px;
  display: flex; align-items: center; gap: 5px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  margin-top: 36px;
  background: var(--purple-bg);
  border-top: 1px solid var(--purple-line);
  padding: 44px 36px 26px;
}
.footer__top { display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 32px; }
.footer__brand { min-width: 180px; display: flex; flex-direction: column; gap: 12px; }
.footer__logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 22px; font-weight: 900; color: #fff;
}
.footer__logo .accent { color: var(--orange); }
.footer__lang {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple-card-2);
  border: 1px solid var(--purple-line);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px; cursor: pointer;
  color: #fff;
  width: fit-content;
}
.footer__app {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
}
.footer__cols { flex: 1; display: flex; gap: 32px; flex-wrap: wrap; }
.footer__col { min-width: 140px; }
.footer__col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid var(--purple-line);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 12px; color: var(--text-dim); }
.footer__badges { display: flex; align-items: center; gap: 10px; }
.footer__badge {
  font-size: 11px; font-weight: 700;
  background: var(--purple-card-2);
  border-radius: 6px;
  padding: 5px 10px;
  color: var(--text-muted);
}

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--purple-bg); }
::-webkit-scrollbar-thumb { background: var(--purple-card-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-btn); }

/* =====================================================
   RESPONSIVE — TABLET (≤1100px)
   ===================================================== */
@media (max-width: 1100px) {
  .games-grid       { grid-template-columns: repeat(4, 1fr); }
  .providers__grid  { grid-template-columns: repeat(4, 1fr); }
  .promo-card       { padding: 26px 28px; min-height: 190px; }
  .promo-card__art  { font-size: 90px; }
}

@media (max-width: 900px) {
  .hero-banners     { grid-template-columns: 1fr; gap: 12px; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤768px)
   ===================================================== */
@media (max-width: 768px) {
  :root {
    --sidebar-w:      0px;
    --sidebar-w-open: 280px;
    --header-h:       56px;
  }

  .sidebar {
    width: 0;
    top: 0; height: 100vh;
    z-index: 300;
    border-right: none;
    box-shadow: 4px 0 24px rgba(0,0,0,.5);
    padding: 14px 0;
  }
  body.nav-open .sidebar { width: var(--sidebar-w-open); }
  .sidebar__label               { opacity: 0; }
  body.nav-open .sidebar__label { opacity: 1; }

  .main { margin-left: 0; }

  /* Header */
  .header { padding: 0 10px 0 0; gap: 6px; }
  .header__burger { width: 44px; min-width: 44px; }
  .header__logo-text { font-size: 18px; }
  .header__logo-icon,
  .header__logo-icon svg { width: 30px; height: 30px; }
  .header__tabs { gap: 2px; padding-left: 4px; }
  .header__tab  { padding: 7px 12px; font-size: 13px; }
  .header__tab .ico { display: none; }
  .header__search  { width: 36px; height: 36px; }
  .btn-login  { display: none; }
  .header__actions { gap: 6px; }
  .btn-signup { padding: 8px 16px; font-size: 13px; }

  /* Hero banners */
  .hero-banners { margin: 10px 10px 0; gap: 10px; }
  .promo-card   { padding: 22px 20px; min-height: 160px; gap: 10px; }
  .promo-card__body { max-width: 65%; gap: 8px; }
  .promo-card__label { font-size: 11px; letter-spacing: 1.4px; }
  .promo-card__cta  { padding: 10px 22px; font-size: 13px; }
  .promo-card__art  { font-size: 70px; }

  /* Games */
  .games-section { padding: 28px 12px 10px; }
  .games-grid    { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* Section title */
  .section-title__more { font-size: 12px; padding: 6px 12px; }

  /* Bets */
  .bets { margin: 28px 10px 0; padding: 14px 12px 18px; }
  .bets__head { gap: 10px; }
  .bets__tab  { padding: 8px 10px 12px; font-size: 14px; }
  .bets__toggle-btn { padding: 7px 14px; font-size: 12px; }
  .bets__table { min-width: 720px; }
  .bets__game-cell span { max-width: 160px; }

  /* Providers */
  .providers { padding: 36px 12px 18px; }
  .providers__grid { grid-template-columns: repeat(3, 1fr); }
  .provider { height: 60px; font-size: 13px; }

  /* Payments */
  .payments-bar { margin: 24px 10px 0; padding: 16px 20px; gap: 18px; }
  .payments-bar__item { font-size: 13px; }

  /* Footer */
  .footer       { padding: 30px 18px 20px; }
  .footer__top  { gap: 26px; }
  .footer__cols { gap: 22px; }
  .footer__col  { min-width: 120px; flex: 1 1 40%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ===================================================== */
@media (max-width: 480px) {
  .games-grid      { grid-template-columns: repeat(2, 1fr); }
  .providers__grid { grid-template-columns: repeat(2, 1fr); }
  .promo-card__title { font-size: 26px; }
  .promo-card__art   { font-size: 56px; }
  .bets__head { flex-direction: column; align-items: flex-start; }
  .bets__toggle { align-self: stretch; justify-content: space-between; }
  .footer__col     { min-width: 100px; }
}
