:root {
  --slots-gold: #ffd166;
  --slots-green: #00ff88;
  --slots-purple: #b38cff;
  --slots-red: #ff5d73;
}

.slots-page body {
  background: linear-gradient(180deg, #0b1017 0%, #121a26 42%, #101720 100%);
}

.slots-hero {
  padding-top: 9rem;
}

.slots-visual-card {
  background: linear-gradient(135deg, rgba(179, 140, 255, 0.08), rgba(0, 255, 136, 0.06)),
              linear-gradient(180deg, rgba(18, 24, 31, 0.92), rgba(9, 14, 19, 0.96));
}

.slots-visual-figure {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(179, 140, 255, 0.06), rgba(0, 255, 136, 0.05));
  border: 1px solid rgba(179, 140, 255, 0.2);
  overflow: hidden;
}

.slots-machine {
  position: relative;
  z-index: 2;
  width: min(85%, 420px);
  background: linear-gradient(180deg, rgba(14, 17, 23, 0.95), rgba(10, 12, 15, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.slots-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 2rem 1.2rem;
}

.reel {
  display: grid;
  place-items: center;
  width: 80px;
  height: 110px;
  border-radius: 18px;
  font-size: 4rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(0,0,0,0.1));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.reel-green {
  background: linear-gradient(180deg, #1d814f, #164d36);
  border: 1px solid rgba(0,255,136,0.35);
}

.reel-gold {
  background: linear-gradient(180deg, #c89723, #7a5d11);
  border: 1px solid rgba(255, 209, 102, 0.45);
}

.reel-purple {
  background: linear-gradient(180deg, #7a4cfb, #4c2a92);
  border: 1px solid rgba(179, 140, 255, 0.45);
}

.slots-glow {
  position: absolute;
  inset: 15% 10% auto 10%;
  height: 38%;
  background: radial-gradient(circle at center, rgba(255, 209, 102, 0.25), transparent 60%);
  filter: blur(30px);
}

.slots-badge {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.chip-gold {
  right: 8%;
  top: 18%;
  background: linear-gradient(135deg, #ffd166, #f59e0b);
  color: #111827;
}

.chip-green {
  left: 8%;
  bottom: 18%;
  background: linear-gradient(135deg, var(--slots-green), #8ef0b3);
  color: #111827;
}

.slots-stats {
  padding-block: 1rem 4rem;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.2rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0,255,136,0.18);
  background: linear-gradient(180deg, rgba(18,24,32,0.9), rgba(10,14,19,0.96));
}

.stats-box {
  text-align: center;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.stats-box strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--slots-gold);
  margin-bottom: 0.5rem;
}

.stats-box span {
  color: var(--color-grey);
  font-size: 1.3rem;
}

.slots-promo .promo-banner {
  min-height: 260px;
}

@media (max-width: 768px) {
  .slots-visual-figure {
    min-height: 300px;
  }

  .slots-machine {
    width: min(92%, 360px);
    padding: 1.6rem 1.2rem;
  }

  .reel {
    width: 60px;
    height: 88px;
    font-size: 3rem;
  }

  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .slots-hero {
    padding-top: 8.5rem;
  }

  .slots-visual-figure {
    min-height: 250px;
  }

  .slots-screen {
    gap: 0.7rem;
    padding: 1.4rem 0.8rem;
  }

  .reel {
    width: 48px;
    height: 70px;
    font-size: 2.5rem;
    border-radius: 12px;
  }

  .stats-panel {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
}
