:root {
  --gold: #e8b97a;
  --gold-light: #f5d4a0;
  --gold-dark: #c4903f;
  --gold-glow: rgba(232, 185, 122, 0.35);
  --bg-dark: #0d0e14;
  --bg-card: #14151f;
  --bg-card2: #1a1b28;
  --bg-nav: #10111a;
  --border: rgba(232, 185, 122, 0.15);
  --border-hover: rgba(232, 185, 122, 0.4);
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.22s ease;
  --font: 'Montserrat', sans-serif;
  --font-display: 'Oswald', sans-serif;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul, ol { padding-left: 1.4em; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 48px 0; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #1a1200;
  box-shadow: 0 4px 18px rgba(232, 185, 122, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 185, 122, 0.5);
  filter: brightness(1.08);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--gold);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(232, 185, 122, 0.07);
}

.btn--hero {
  font-size: 17px;
  padding: 14px 40px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn--full { width: 100%; }

/* ── HEADER ──────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo__img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo__img--footer {
  height: 36px;
  filter: brightness(0.9);
}

/* ── NAV ─────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 8px;
}
.nav::-webkit-scrollbar { display: none; }

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
}
.nav__link:hover {
  color: var(--gold);
  background: rgba(232, 185, 122, 0.07);
}
.nav__link--active {
  color: var(--gold);
  background: rgba(232, 185, 122, 0.1);
}

.vip-badge {
  background: linear-gradient(135deg, #7b5ea7, #9b59b6);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 10px rgba(155, 89, 182, 0.4);
}

.nav__icon { font-size: 14px; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── MOBILE DRAWER ───────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  border-right: 1px solid var(--border);
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer__inner {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 16px;
  padding: 4px 8px;
}

.nav-drawer__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-drawer__link:hover {
  color: var(--gold);
  background: rgba(232, 185, 122, 0.07);
}

.nav-drawer__actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 14, 20, 0.92) 0%,
    rgba(13, 14, 20, 0.7) 50%,
    rgba(13, 14, 20, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 20px 60px 60px;
  max-width: 600px;
}

.hero__badge {
  display: inline-block;
  background: rgba(232, 185, 122, 0.15);
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero__accent {
  color: var(--gold);
  text-shadow: 0 0 40px var(--gold-glow);
}

.hero__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 420px;
}

.hero__sub--bonus {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 40px var(--gold-glow);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* ── PROMO MARQUEE ───────────────────────── */
.promo-marquee {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}

.promo-marquee__track {
  overflow: hidden;
  width: 100%;
}

.promo-marquee__inner {
  display: flex;
  gap: 16px;
  animation: marquee 24s linear infinite;
  width: max-content;
}

.promo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  min-width: 220px;
}

.promo-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 30px rgba(232, 185, 122, 0.12);
}

.promo-card--shop {
  background: linear-gradient(135deg, #1a1b28 0%, #1f1628 100%);
}
.promo-card--wheel {
  background: linear-gradient(135deg, #1a1b28 0%, #1c2218 100%);
}
.promo-card--cashback {
  background: linear-gradient(135deg, #1a1b28 0%, #1e1c14 100%);
}
.promo-card--tournament {
  background: linear-gradient(135deg, #1a1b28 0%, #1c1814 100%);
}

.promo-card__icon {
  font-size: 30px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.promo-card:hover .promo-card__icon { transform: scale(1.15); }

.promo-card__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION HEADER ──────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title__icon { font-size: 22px; }

.section-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.section-link:hover { color: var(--gold-light); }

.section-link__count {
  background: rgba(232, 185, 122, 0.12);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1px 10px;
  font-size: 12px;
}

/* ── GAMES GRID ──────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
}

.game-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-nav));
  padding: 12px;
}

.game-card__emoji { font-size: 36px; }

.game-card__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 10px;
  gap: 8px;
}
.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__play {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1200;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition: all var(--transition);
}
.game-card:hover .game-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.game-card__name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.game-card__provider {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
}

.game-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a1200;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── TICKER ──────────────────────────────── */
.ticker-section {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 46px;
}

.ticker-label {
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: #1a1200;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-expand {
  flex-shrink: 0;
  background: rgba(232, 185, 122, 0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 12px;
  transition: all var(--transition);
  white-space: nowrap;
}
.ticker-expand:hover {
  background: rgba(232, 185, 122, 0.15);
  border-color: var(--gold-dark);
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 13px;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}

.ticker-item__name { color: var(--text); font-weight: 600; }
.ticker-item__amount { color: var(--gold); font-weight: 700; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ───────────────────────────────── */
.about {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.about__inner {
  max-width: 960px;
  margin: 0 auto;
}

.about__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.about__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.about__text strong { color: var(--text); }

.about__blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about__block {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.about__block h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.about__block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.about__block li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.about__disclaimer {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(136, 136, 170, 0.6);
  line-height: 1.6;
  font-style: italic;
}

/* ── FAQ ─────────────────────────────────── */
.faq { background: var(--bg-dark); }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item:hover { border-color: var(--border-hover); }
.faq__item[open] { border-color: var(--gold-dark); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq__item[open] .faq__question { color: var(--gold); }
.faq__item[open] .faq__question::after { content: '−'; }

.faq__answer {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq__answer p { margin: 0; }
.faq__answer strong { color: var(--text); }

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: #0a0b10;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.footer__links-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links-group h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer__links-group a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links-group a:hover { color: var(--gold); }

.footer__payments {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.payment-badge {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer__legal { padding: 24px 0 16px; }

.footer__legal p {
  font-size: 12px;
  color: rgba(136, 136, 170, 0.6);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__age {
  display: flex;
  align-items: center;
  gap: 8px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #c0392b;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.footer__copy {
  font-size: 12px;
  color: rgba(136, 136, 170, 0.4);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── MODAL ───────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.modal__box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal.open .modal__box {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.modal__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.modal__logo img { height: 36px; }

.modal__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: 0.04em;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input {
  background: var(--bg-card2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--gold-dark);
  background: rgba(26, 27, 40, 0.8);
}
.form-group input::placeholder { color: rgba(136, 136, 170, 0.5); }

.modal__forgot {
  font-size: 12px;
  color: var(--gold);
  text-align: right;
  transition: color var(--transition);
  align-self: flex-end;
  margin-top: -6px;
}
.modal__forgot:hover { color: var(--gold-light); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-check input { margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-check a { color: var(--gold); }

.modal__switch {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}
.modal__switch a { color: var(--gold); font-weight: 600; }
.modal__switch a:hover { text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__actions { margin-left: auto; }
}

@media (max-width: 860px) {
  .about__blocks { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__content { padding: 40px 20px; }
  .hero { min-height: 400px; }
}

@media (max-width: 600px) {
  .hero { min-height: 340px; }
  .hero__title { font-size: 44px; }
  .hero__sub { font-size: 15px; }
  .btn--hero { font-size: 14px; padding: 12px 28px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .footer__top { grid-template-columns: 1fr; }
  .section { padding: 32px 0; }
  .ticker-expand { display: none; }
}

@media (max-width: 400px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(232, 185, 122, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(232, 185, 122, 0.4); }

::selection { background: var(--gold-dark); color: #1a1200; }
