/* ============================================
   Legion Bet Casino Review — Styles
   Roman theme: dark burgundy #140808,
   fiery red #FF4500, gold #D4A843
   ============================================ */

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20,8,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.header__logo img {
  display: block;
  height: 40px;
  width: auto;
}
.header__nav {
  display: flex;
  gap: 20px;
}
.header__nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.header__nav a:hover {
  color: var(--accent);
}
.header__actions {
  display: flex;
  gap: 8px;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  gap: 8px;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--glow);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn--login {
  background: var(--accent-secondary);
  color: #140808;
}
.btn--login:hover {
  background: #e8c060;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
}
.btn--sm {
  padding: 6px 14px;
  font-size: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
}
.btn--sm:hover {
  background: var(--accent-hover);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,8,8,0.93) 0%, rgba(20,8,8,0.72) 40%, rgba(255,69,0,0.08) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 60px;
  max-width: 720px;
}
.hero__badge {
  display: inline-block;
  background: rgba(255,69,0,0.1);
  border: 1px solid rgba(255,69,0,0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- STATS --- */
.stats {
  margin-top: -30px;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: 0.2s;
}
.stat-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 20px var(--glow);
}
.stat-card__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
}
.stat-card__icon svg {
  width: 32px;
  height: 32px;
}
.stat-card__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.stat-card__label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- SECTIONS COMMON --- */
section {
  padding: 80px 0;
}
section h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #fff;
}
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* --- BONUS --- */
.bonus-highlight {
  background: linear-gradient(135deg, rgba(255,69,0,0.08) 0%, rgba(212,168,67,0.05) 100%);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.bonus-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  animation: bonusPulse 4s ease-in-out infinite;
}
@keyframes bonusPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}
.bonus-highlight > * {
  position: relative;
}
.bonus-highlight__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.bonus-highlight__amount {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.bonus-highlight__extra {
  font-size: 22px;
  color: var(--accent-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}
.bonus-highlight__code {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.bonus-highlight__code strong {
  background: rgba(255,69,0,0.1);
  padding: 4px 16px;
  border-radius: 6px;
  border: 1px dashed var(--accent);
  font-family: monospace;
  letter-spacing: 2px;
  color: var(--accent);
}

/* Bonus deposit cards */
.bonus-deposits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.bonus-deposit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: 0.2s;
}
.bonus-deposit-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--glow);
}
.bonus-deposit-card__header {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bonus-deposit-card__match {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.bonus-deposit-card__spins {
  font-size: 15px;
  color: var(--accent-secondary);
  font-weight: 600;
  margin-bottom: 10px;
}
.bonus-deposit-card__code {
  font-size: 13px;
  color: var(--text-muted);
}
.bonus-deposit-card__code strong {
  color: var(--accent);
}

/* Promo grid */
.promo-subtitle {
  font-size: 22px;
  text-align: center;
  color: #fff;
  margin: 48px 0 24px;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: 0.2s;
}
.promo-card:hover {
  border-color: var(--accent);
}
.promo-card__day {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}
.promo-card__code {
  font-size: 11px;
  color: var(--text-muted);
}

/* --- TABLES --- */
.bonus-table-wrap, .payments-table-wrap {
  overflow-x: auto;
}
.bonus-table, .payments-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.bonus-table th, .payments-table th {
  background: var(--bg-secondary);
  padding: 14px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bonus-table td, .payments-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-primary);
}
.bonus-table tr:last-child td, .payments-table tr:last-child td {
  border-bottom: none;
}

/* --- REVIEW --- */
.review {
  background: var(--bg-secondary);
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.review-main h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 28px;
  color: var(--accent);
}
.review-main h3:first-child {
  margin-top: 0;
}
.review-main p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.review-card h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #fff;
}
.review-info-list {
  list-style: none;
}
.review-info-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.review-info-list li:last-child {
  border-bottom: none;
}
.review-info-list li span:first-child {
  color: var(--text-muted);
}
.review-info-list li span:last-child {
  font-weight: 600;
  color: #fff;
}
.pros-cons {
  list-style: none;
}
.pros-cons li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-secondary);
}
.pros-cons li.pro::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: 700;
  font-size: 16px;
}
.pros-cons li.con::before {
  content: '-';
  position: absolute;
  left: 2px;
  color: #E74C3C;
  font-weight: 700;
  font-size: 16px;
}

/* --- GAMES --- */
.games {
  background: var(--bg-secondary);
}
.games-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.games-tab {
  padding: 10px 24px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: 0.2s;
}
.games-tab.active, .games-tab:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.2s;
}
.game-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--glow);
}
.game-card__img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-secondary);
}
.game-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.game-card:hover .game-card__img img {
  transform: scale(1.05);
}
.game-card__info {
  padding: 12px 16px 8px;
}
.game-card__info h4 {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}
.game-card__provider {
  font-size: 12px;
  color: var(--text-muted);
}
.game-card .btn {
  margin: 8px 16px 16px;
  width: calc(100% - 32px);
}

/* --- LOGIN GUIDE --- */
.login-guide {
  background: var(--bg-secondary);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: 0.2s;
}
.step-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--glow);
}
.step-card__number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #fff;
}
.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Registration note */
.registration-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
}
.registration-note h3 {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 16px;
}
.reg-steps {
  padding-left: 20px;
}
.reg-steps li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.reg-steps li::marker {
  color: var(--accent);
  font-weight: 700;
}

/* --- PAYMENTS --- */
.payments {
  background: var(--bg-secondary);
}
.payments-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}
.payments-note p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- MOBILE --- */
.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mobile-content h2 {
  text-align: left;
  margin-bottom: 16px;
}
.mobile-content > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.mobile-features {
  list-style: none;
}
.mobile-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.mobile-features__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,69,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.mobile-features li strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
}
.mobile-features li p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.mobile-visual__img {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,69,0,0.1);
}

/* --- VIP --- */
.vip {
  background: var(--bg-secondary);
}
.vip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: 0.2s;
}
.vip-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--glow);
}
.vip-card__icon {
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.vip-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}
.vip-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: 0.2s;
}
.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--glow);
}
.testimonial-card__stars {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.testimonial-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  color: #fff;
}
.testimonial-card__author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: 0.2s;
}
.faq-item:hover {
  border-color: var(--border-hover);
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 2px 12px var(--glow);
}
.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-item__answer {
  padding: 0 24px 18px;
}
.faq-item__answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
  background: #0A0404;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand img {
  display: block;
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer__brand p {
  font-size: 13px;
  line-height: 1.6;
}
.footer__links h4 {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  padding: 4px 0;
  transition: 0.2s;
}
.footer__links a:hover {
  color: var(--accent);
}
.footer__disclaimer {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__age {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 2px solid #E74C3C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #E74C3C;
}
.footer__disclaimer p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
}
.footer__disclaimer a {
  color: var(--accent);
  text-decoration: underline;
}
.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* --- MOBILE MENU FIX --- */
.header.menu-open {
  position: relative !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.menu-open {
  overflow: hidden;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .header__inner {
    overflow: visible;
  }
  .header__nav:not(.open) {
    display: none;
  }
  .header__actions {
    display: none;
  }
  .header__burger {
    display: flex;
  }

  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    padding: 32px 24px;
    gap: 16px;
    z-index: 99;
    overflow-y: auto;
  }
  .header__nav.open a {
    font-size: 18px;
    padding: 8px 0;
  }
  .header__nav.open + .header__actions {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    z-index: 99;
  }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-deposits { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
  .vip-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero__content { padding-top: 60px; padding-bottom: 40px; }
  .hero h1 { font-size: 28px; }
  .hero__subtitle { font-size: 15px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  section h2 { font-size: 24px; }
  .bonus-highlight__amount { font-size: 32px; }

  .bonus-deposits { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .mobile-grid { grid-template-columns: 1fr; }
  .mobile-content h2 { text-align: center; }
  .vip-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  section { padding: 48px 0; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-card { padding: 16px 12px; }
  .stat-card__value { font-size: 18px; }
  .games-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
}
