/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #06040e;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0618; }
::-webkit-scrollbar-thumb { background: linear-gradient(#8b5cf6, #ec4899); border-radius: 3px; }

/* ================================================================
   CSS VARIABLES
   ================================================================ */
:root {
  --gold: #c084fc;
  --gold-dark: #a855f7;
  --gold-dim: rgba(192, 132, 252, 0.13);
  --green: #4ade80;
  --red: #f87171;
  --blue-neon: #38bdf8;
  --card-bg: rgba(12, 7, 28, 0.97);
  --border-gold: rgba(139, 92, 246, 0.2);
  --text-muted: rgba(220, 200, 255, 0.52);
  --text-dim: rgba(190, 160, 240, 0.3);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-card: 0 12px 48px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(139, 92, 246, 0.28);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
@keyframes floatUp {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.7; }
  92%  { opacity: 0.7; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulseShadow {
  0%,100% { box-shadow: 0 4px 30px rgba(139,92,246,0.5); }
  50%     { box-shadow: 0 4px 50px rgba(139,92,246,0.9), 0 0 0 10px rgba(139,92,246,0.08); }
}
@keyframes hotPulse {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.65; }
}
@keyframes reelSpin {
  0%   { transform: scaleY(1); }
  25%  { transform: scaleY(0); }
  50%  { transform: scaleY(1); }
  75%  { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}
@keyframes winBounce {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.15); }
}
@keyframes modalAppear {
  from { opacity: 0; transform: scale(0.88) translateY(-20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes planeTrail {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(9px); }
}
@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ================================================================
   AGE VERIFICATION MODAL
   ================================================================ */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-overlay.hidden { display: none; }

.age-modal-box {
  background: linear-gradient(155deg, #0d0520 0%, #1a0a35 100%);
  border: 1px solid rgba(139,92,246,0.32);
  border-radius: 26px;
  padding: 52px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(139,92,246,0.14), var(--shadow-card);
  animation: modalAppear 0.4s cubic-bezier(0.22,1,0.36,1);
}

.age-modal-icon {
  font-size: 70px;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 12px rgba(255,200,0,0.4));
}
.age-modal-box h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
}
.gold-text { color: var(--gold); }
.age-modal-box > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.age-warning {
  background: rgba(244,67,54,0.12);
  border: 1px solid rgba(244,67,54,0.28);
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 13px;
  color: #FF8A80;
  margin-bottom: 30px;
}
.age-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.age-buttons button {
  flex: 1;
  padding: 15px 12px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-age-yes {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  box-shadow: 0 4px 22px rgba(139,92,246,0.42);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(139,92,246,0.6); }
.btn-age-no {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-age-no:hover { background: rgba(244,67,54,0.18); }
.age-disclaimer { font-size: 12px; color: var(--text-dim); }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(6,4,14,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(139,92,246,0.14);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.logo-icon { font-size: 26px; }
.logo-text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.3px;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: var(--gold-dim);
}
.nav-age {
  background: rgba(244,67,54,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.15);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 28px 100px;
  background:
    radial-gradient(ellipse at 22% 42%, rgba(110, 28, 220, 0.38) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 62%, rgba(200, 40, 120, 0.24) 0%, transparent 48%),
    radial-gradient(ellipse at 50% 95%, rgba(56, 20, 140, 0.18) 0%, transparent 45%),
    linear-gradient(180deg, #0c0620 0%, #06040e 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Floating casino emoji background */
.floating-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-el {
  position: absolute;
  font-size: 28px;
  animation: floatUp linear infinite;
  opacity: 0;
  will-change: transform, opacity;
  filter: blur(0.5px);
}

/* Roulette decoration */
.roulette-deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.07;
  pointer-events: none;
}
.roulette-deco-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 28px solid rgba(139,92,246,0.8);
  background: repeating-conic-gradient(
    rgba(139,92,246,0.18) 0deg 9.7deg,
    transparent 9.7deg 19.4deg
  );
  animation: rotateSlow 25s linear infinite;
  box-shadow: inset 0 0 40px rgba(139,92,246,0.22);
}
.roulette-deco-inner::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 14px solid rgba(236,72,153,0.5);
  background: repeating-conic-gradient(
    rgba(236,72,153,0.1) 0deg 20deg,
    transparent 20deg 40deg
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.28);
  color: var(--gold);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 26px;
  animation: fadeInDown 0.55s ease-out both;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 22px;
  animation: fadeInDown 0.55s ease-out 0.1s both;
  letter-spacing: -0.02em;
}
.shimmer-text {
  background: linear-gradient(90deg, #fff 0%, #d8b8ff 40%, #fff 60%, #d8b8ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}
.gold-gradient-text {
  background: linear-gradient(135deg, #c084fc 0%, #ec4899 45%, #c084fc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 38px;
  animation: fadeInDown 0.55s ease-out 0.2s both;
}
.hero-subtitle strong { color: var(--gold); font-weight: 700; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  animation: fadeInDown 0.55s ease-out 0.3s both;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.stat-number {
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix { font-size: 22px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px; }
.stat-divider { color: rgba(255,215,0,0.25); font-size: 28px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  padding: 17px 44px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 28px rgba(139,92,246,0.5);
  animation: fadeInDown 0.55s ease-out 0.4s both, pulseShadow 2.5s ease-in-out 1.2s infinite;
  letter-spacing: 0.2px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(139,92,246,0.7); }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  color: var(--text-dim);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounce 2.2s ease-in-out infinite;
  text-align: center;
}
.scroll-hint::after { content: '▼'; display: block; font-size: 15px; margin-top: 4px; }

/* ================================================================
   BONUS TICKER
   ================================================================ */
.ticker-wrap {
  background: linear-gradient(90deg, #0e0520 0%, #1a083a 50%, #0e0520 100%);
  border-top: 1px solid rgba(139,92,246,0.22);
  border-bottom: 1px solid rgba(139,92,246,0.22);
  padding: 13px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.ticker-label {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 18px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
}
.ticker-label::after {
  content: '▶';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ec4899;
  font-size: 14px;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-content {
  display: flex;
  animation: tickerMove 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-right: 1px solid rgba(255,215,0,0.15);
}
.ticker-item strong { color: var(--gold); }
.ticker-item .t-bonus { color: #4CAF50; font-weight: 700; }
.ticker-item .t-casino { font-weight: 700; }

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.section-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-header { text-align: center; margin-bottom: 44px; }
.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.section-subtitle { color: var(--text-muted); font-size: 15px; }

/* ================================================================
   RANKINGS SECTION
   ================================================================ */
.rankings-section { padding: 88px 0; }

/* Two-column layout: casino list + widget sidebar */
.rankings-layout {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 32px;
  align-items: start;
}
.rankings-main { min-width: 0; }
.rankings-sidebar { display: flex; flex-direction: column; gap: 24px; }
.rankings-sidebar .widget-card {
  max-width: none;
  margin: 150px 0 260px 0;
  text-align: left;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  color: var(--text-muted);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-weight: 500;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold-dim);
  border-color: rgba(255,215,0,0.4);
  color: var(--gold);
}

/* Casino Cards */
.casino-list { display: flex; flex-direction: column; gap: 18px; }

.casino-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 100px 1fr 150px;
  gap: 24px;
  align-items: center;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.4s ease-out both;
}
.casino-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--accent, var(--gold));
  border-radius: 5px 0 0 5px;
}
.casino-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent, var(--gold)), transparent);
  opacity: 0.3;
}
.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), 0 0 32px rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.32);
}

/* Card Left */
.card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.card-rank-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-rank-num.gold { color: var(--gold); }
.card-logo {
  width: 68px;
  height: 68px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.card-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

/* Card Main */
.card-main { min-width: 0; }
.card-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
  flex-wrap: wrap;
}
.card-name { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.tag-hot {
  background: linear-gradient(135deg, #FF5722, #F44336);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  animation: hotPulse 1.6s ease-in-out infinite;
}
.tag-new {
  background: linear-gradient(135deg, #4CAF50, #00E676);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.tag-crypto {
  background: rgba(247,147,26,0.18);
  border: 1px solid rgba(247,147,26,0.35);
  color: #F7931A;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.card-tagline { color: var(--text-muted); font-size: 13px; margin-bottom: 14px; }

.card-bonus-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(76,175,80,0.09);
  border: 1px solid rgba(76,175,80,0.25);
  border-radius: 10px;
  padding: 9px 16px;
  margin-bottom: 16px;
}
.bonus-lbl { font-size: 10px; color: #4CAF50; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }
.bonus-val { font-size: 16px; font-weight: 800; }
.bonus-fs { font-size: 13px; color: #4CAF50; font-weight: 600; }

.card-features { display: flex; gap: 6px; flex-wrap: wrap; }
.f-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
}

/* Card Right */
.card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.rating-num {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, #c084fc, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
}
.rating-stars { color: var(--gold); font-size: 14px; letter-spacing: 1.5px; margin-top: 2px; }
.rating-votes { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

.card-meta-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  text-align: left;
}
.meta-pair { display: flex; justify-content: space-between; gap: 6px; font-size: 12px; }
.meta-lbl { color: var(--text-dim); }
.meta-val { color: rgba(255,255,255,0.82); font-weight: 600; white-space: nowrap; }

.btn-play {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 11px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-play:hover { transform: scale(1.04); box-shadow: 0 4px 22px rgba(139,92,246,0.55); }
.btn-review-link {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 9px;
  text-decoration: none;
  text-align: center;
  transition: background 0.18s, color 0.18s;
}
.btn-review-link:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ================================================================
   FEATURES SECTION
   ================================================================ */
.features-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.03), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(255,215,0,0.28); }
.feature-icon { font-size: 44px; margin-bottom: 18px; display: block; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* ================================================================
   WIDGETS SECTION
   ================================================================ */
.widgets-section {
  padding: 88px 0;
  background: rgba(0,0,0,0.28);
}
.widgets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.widget-card {
  background: linear-gradient(155deg, rgba(12,13,38,0.97), rgba(18,19,52,0.97));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.22s;
}
.widget-card:hover { transform: translateY(-5px); }
.widget-title { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.widget-subtitle { color: var(--text-muted); font-size: 13px; margin-bottom: 26px; }
.widget-note { color: var(--text-dim); font-size: 11px; margin-top: 16px; }

/* SLOT MACHINE */
.slot-machine { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.slot-display {
  display: flex;
  gap: 10px;
  background: rgba(0,0,0,0.55);
  padding: 18px;
  border-radius: 14px;
  border: 2px solid rgba(255,215,0,0.28);
  box-shadow: inset 0 0 24px rgba(0,0,0,0.6), 0 0 22px rgba(255,215,0,0.08);
}
.reel-box {
  width: 66px;
  height: 66px;
  background: linear-gradient(180deg, #111 0%, #1a1a2e 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}
.reel-sym {
  font-size: 38px;
  line-height: 1;
  transition: opacity 0.06s;
}
.reel-sym.spinning {
  animation: reelSpin 0.12s steps(1) infinite;
}
.slot-win-msg {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  min-height: 30px;
  animation: winBounce 0.4s ease-in-out;
  letter-spacing: 0.5px;
}
.slot-balance {
  font-size: 14px;
  color: var(--text-muted);
}
.slot-balance span { color: #4CAF50; font-weight: 700; }
.btn-slot {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  font-family: inherit;
  letter-spacing: 0.3px;
}
.btn-slot:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 5px 22px rgba(255,215,0,0.5); }
.btn-slot:disabled { opacity: 0.5; cursor: not-allowed; }

/* AVIATOR WIDGET */
.avi-game { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.avi-sky {
  width: 100%;
  height: 148px;
  background: linear-gradient(180deg, #000820 0%, #001040 60%, #000820 100%);
  border-radius: 13px;
  border: 1px solid rgba(0,200,255,0.2);
  position: relative;
  overflow: hidden;
}
.avi-sky::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
/* Stars */
.avi-sky::after {
  content: '· · · · · · · · · · · · · · · · · · · ·';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  color: rgba(255,255,255,0.25);
  font-size: 10px;
  letter-spacing: 6px;
  line-height: 2.5;
  word-break: break-all;
  pointer-events: none;
}
.avi-plane {
  position: absolute;
  font-size: 32px;
  transition: left 0.12s linear, bottom 0.12s linear;
  filter: drop-shadow(0 0 10px rgba(0,200,255,0.85));
  z-index: 2;
  bottom: 12px;
  left: 12px;
}
.avi-multiplier {
  font-size: 46px;
  font-weight: 900;
  color: var(--blue-neon);
  text-shadow: 0 0 24px rgba(0,229,255,0.5);
  line-height: 1;
  letter-spacing: -0.03em;
  min-height: 56px;
  display: flex;
  align-items: center;
}
.avi-multiplier.crashed {
  color: var(--red);
  text-shadow: 0 0 24px rgba(244,67,54,0.5);
}
.avi-status { color: var(--text-muted); font-size: 13px; }
.btn-avi {
  background: linear-gradient(135deg, #00BCD4, #0097A7);
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s;
  font-family: inherit;
}
.btn-avi:hover { transform: scale(1.05); }
.btn-avi.stop-mode { background: linear-gradient(135deg, #F44336, #C62828); }

/* FORTUNE WHEEL */
.wheel-area { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.wheel-wrap {
  position: relative;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 0 36px rgba(255,215,0,0.18);
  display: block;
}
.wheel-ptr {
  font-size: 26px;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255,215,0,0.8);
  margin-top: -6px;
  line-height: 1;
}
.wheel-prize { font-size: 18px; font-weight: 900; color: var(--gold); min-height: 28px; }
.btn-wheel {
  background: linear-gradient(135deg, #9C27B0, #6A1B9A);
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s;
  font-family: inherit;
}
.btn-wheel:hover:not(:disabled) { transform: scale(1.05); }
.btn-wheel:disabled { opacity: 0.5; cursor: not-allowed; }

/* ================================================================
   REVIEWS PAGE — FULL CARDS
   ================================================================ */
.reviews-hero {
  padding: 140px 28px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(70,30,160,0.28) 0%, transparent 55%),
    linear-gradient(180deg, #090921 0%, #05051a 100%);
}
.reviews-hero h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; margin-bottom: 14px; }
.reviews-hero p { color: var(--text-muted); font-size: 16px; max-width: 560px; margin: 0 auto; }

.review-cards-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 60px 0;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 22px;
  overflow: hidden;
  animation: fadeInUp 0.45s ease-out both;
}
.review-card-header {
  padding: 28px 32px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rev-logo {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}
.rev-info { flex: 1; min-width: 0; }
.rev-name { font-size: 26px; font-weight: 900; margin-bottom: 4px; }
.rev-tagline { color: var(--text-muted); font-size: 14px; }
.rev-rating-block { text-align: center; flex-shrink: 0; }
.rev-score {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #c084fc, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.rev-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.rev-votes { font-size: 12px; color: var(--text-dim); margin-top: 3px; }

.review-card-body { padding: 26px 32px; }
.rev-description {
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 26px;
}
.rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 26px;
}
.rev-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.rev-col-title.green { color: #4CAF50; }
.rev-col-title.red   { color: var(--red); }
.rev-list { list-style: none; }
.rev-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
  line-height: 1.4;
}
.rev-list li::before { content: '✓'; color: #4CAF50; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.rev-list.cons li::before { content: '✗'; color: var(--red); }

.rev-stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.rev-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.rev-stat-val { font-size: 16px; font-weight: 800; color: var(--gold); display: block; }
.rev-stat-lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

.rev-features-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.rev-f-tag {
  background: var(--gold-dim);
  border: 1px solid rgba(255,215,0,0.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

.rev-license-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rev-license-lbl { font-size: 12px; color: var(--text-dim); }
.rev-license-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}
.btn-play-rev {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 22px rgba(139,92,246,0.42);
}
.btn-play-rev:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(139,92,246,0.62); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: linear-gradient(180deg, #0a061a 0%, #04020e 100%);
  border-top: 1px solid rgba(139,92,246,0.12);
  padding: 64px 0 0;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-logo-txt {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-about {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
}
.footer-col-title { font-weight: 700; margin-bottom: 16px; color: rgba(255,255,255,0.8); font-size: 15px; }
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.18s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-resp-txt {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.resp-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.resp-b {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
}
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 26px 0;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.65;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

/* ================================================================
   UTILITY
   ================================================================ */
.hidden { display: none !important; }
.visually-hidden { visibility: hidden; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1060px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .widgets-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .casino-card { grid-template-columns: 90px 1fr 140px; gap: 18px; padding: 22px; }
  .rankings-layout { grid-template-columns: 1fr 380px; gap: 24px; }
}

@media (max-width: 900px) {
  .rankings-layout { grid-template-columns: 1fr; }
  .rankings-sidebar .widget-card { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .casino-card {
    grid-template-columns: 1fr;
    padding: 22px 20px;
    gap: 16px;
  }
  .card-left { flex-direction: row; justify-content: flex-start; align-items: center; }
  .card-right { flex-direction: row; flex-wrap: wrap; justify-content: space-between; }
  .rating-num { font-size: 40px; }
  .card-meta-row { display: none; }
  .card-cta-row { display: flex; gap: 10px; width: 100%; }
  .btn-play, .btn-review-link { flex: 1; }

  .widgets-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }

  .roulette-deco { display: none; }
  .age-modal-box { padding: 34px 24px; }
  .age-buttons { flex-direction: column; }

  .rev-grid { grid-template-columns: 1fr; }
  .review-card-header { flex-wrap: wrap; }
  .rev-rating-block { width: 100%; display: flex; align-items: center; gap: 16px; }
  .rev-score { font-size: 40px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .avi-multiplier { font-size: 36px; }
  .hero-title { letter-spacing: -0.01em; }
  .ticker-label { display: none; }
}

/* ================================================================
   SLOT MACHINE PRO — Lucky 777
   ================================================================ */

@keyframes spJackpotPulse {
  0%,100% { box-shadow: 0 0 10px rgba(139,92,246,0.22), inset 0 0 8px rgba(139,92,246,0.08); }
  50%     { box-shadow: 0 0 32px rgba(139,92,246,0.6),  inset 0 0 20px rgba(139,92,246,0.14); }
}
@keyframes spStopBounce {
  0%   { transform: scaleY(1.07); }
  55%  { transform: scaleY(0.96); }
  100% { transform: scaleY(1); }
}
@keyframes spReelWinGlow {
  0%,100% { box-shadow: inset 0 0 0 2px rgba(139,92,246,0.6),  0 0 18px rgba(139,92,246,0.3); }
  50%     { box-shadow: inset 0 0 0 2px rgba(192,132,252,1),   0 0 44px rgba(236,72,153,0.7); }
}
@keyframes spCoinFall {
  0%   { transform: translateY(-10px) rotate(0deg);   opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(320px) rotate(400deg); opacity: 0; }
}
@keyframes spMsgJackpot {
  0%,100% { text-shadow: 0 0 30px rgba(192,132,252,1), 0 0 60px rgba(236,72,153,0.55); transform: scale(1); }
  50%     { text-shadow: 0 0 50px rgba(192,132,252,1), 0 0 100px rgba(236,72,153,0.8); transform: scale(1.04); }
}

/* Full-width standalone card */
.slot-pro-card {
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* 2-column grid for remaining widgets */
.widgets-grid-2 {
  grid-template-columns: 1fr 1fr !important;
}

/* Jackpot bar */
.sp-jackpot-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(139,92,246,0.06), rgba(139,92,246,0.15), rgba(139,92,246,0.06));
  border: 1px solid rgba(139,92,246,0.32);
  border-radius: 12px;
  padding: 11px 20px;
  margin-bottom: 22px;
  animation: spJackpotPulse 2.8s ease-in-out infinite;
}
.sp-jp-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.sp-jp-amount {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255,215,0,0.55);
  letter-spacing: -0.02em;
}
.sp-jp-fire { font-size: 20px; }

/* Machine outer */
.sp-machine {
  position: relative;
  margin-bottom: 18px;
}

/* Reels frame */
.sp-reels-frame {
  background: linear-gradient(180deg, #010108 0%, #05050f 100%);
  border: 2px solid rgba(255,215,0,0.18);
  border-radius: 16px;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 50px rgba(0,0,0,0.9),
    0 0 28px rgba(255,215,0,0.06);
}
.sp-reels-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,215,0,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.012) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Win-line stripe */
.sp-winline {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 90px;
  border-top: 2px solid rgba(139,92,246,0.28);
  border-bottom: 2px solid rgba(139,92,246,0.28);
  background: rgba(139,92,246,0.04);
  pointer-events: none;
  z-index: 1;
}

/* Top / bottom fade-out gradients */
.sp-grad {
  position: absolute;
  left: 0; right: 0;
  height: 72px;
  pointer-events: none;
  z-index: 4;
}
.sp-grad-top { top: 0;    background: linear-gradient(to bottom, #010108 0%, transparent 100%); }
.sp-grad-bot { bottom: 0; background: linear-gradient(to top,    #010108 0%, transparent 100%); }

/* Reel row */
.sp-reels {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.sp-reel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-reel-sep {
  width: 2px;
  height: 270px;
  background: rgba(255,215,0,0.1);
  flex-shrink: 0;
}

/* Symbol cells */
.sp-cell {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: filter 0.1s, transform 0.08s;
}

/* Spinning animation */
.sp-spinning .sp-cell {
  filter: blur(3.5px);
}

/* Stop bounce */
.sp-stopped {
  animation: spStopBounce 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Win reel glow */
.sp-reel-win {
  border-radius: 10px;
  animation: spReelWinGlow 0.65s ease-in-out infinite;
}

/* Coin shower layer */
.sp-coins {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 16px;
}
.sp-coin {
  position: absolute;
  top: -10px;
  font-size: 20px;
  animation: spCoinFall linear both;
  pointer-events: none;
}

/* Win / result message */
.sp-message {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  transition: all 0.3s;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sp-lose    { color: rgba(255,255,255,0.3); }
.sp-near    { color: rgba(255,255,255,0.48); }
.sp-win     { color: #4CAF50; text-shadow: 0 0 14px rgba(76,175,80,0.45); }
.sp-big     { color: var(--gold); text-shadow: 0 0 18px rgba(255,215,0,0.55); background: rgba(255,215,0,0.06); }
.sp-mega    { color: var(--blue-neon); text-shadow: 0 0 22px rgba(0,229,255,0.65); background: rgba(0,229,255,0.06); }
.sp-jackpot {
  color: var(--gold);
  font-size: 20px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.32);
  animation: spMsgJackpot 0.9s ease-in-out infinite;
}
.sp-broke {
  flex-direction: column;
  color: var(--red);
  font-size: 14px;
}
.sp-refill-btn {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.18s;
}
.sp-refill-btn:hover { transform: scale(1.06); }

/* Credits / Win / Spin row */
.sp-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.sp-counter-box {
  flex: 1;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
}
.sp-counter-win {
  border-color: rgba(76,175,80,0.2);
  background: rgba(76,175,80,0.04);
}
.sp-counter-label {
  font-size: 10px;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.sp-counter-val {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.sp-counter-win .sp-counter-val { color: #4CAF50; }

/* Spin button */
.sp-spin-btn {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  font-family: inherit;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 22px rgba(139,92,246,0.48);
  white-space: nowrap;
  animation: pulseShadow 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.sp-spin-btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 36px rgba(139,92,246,0.72);
}
.sp-spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  animation: none;
  box-shadow: none;
}
.sp-spin-btn:active:not(:disabled) { transform: scale(0.97); }

/* Bet row */
.sp-bet-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.sp-bet-label {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.sp-bet-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
}
.sp-bet-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}
.sp-bet-btn:hover {
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.32);
  color: var(--gold);
}
.sp-bet-active {
  background: rgba(139,92,246,0.16) !important;
  border-color: rgba(139,92,246,0.52) !important;
  color: var(--gold) !important;
}

/* Paytable */
.sp-paytable {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.sp-pt-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  text-align: center;
}
.sp-pt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}
.sp-pt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
}
.sp-pt-sym {
  font-weight: 700;
  color: rgba(255,255,255,0.58);
  white-space: nowrap;
}
.sp-pt-val {
  color: #4CAF50;
  font-weight: 700;
  white-space: nowrap;
}
.sp-s-seven   { color: #ff3333; text-shadow: 0 0 7px rgba(255,51,51,0.55); }
.sp-s-diamond { color: #00e5ff; text-shadow: 0 0 7px rgba(0,229,255,0.55); }
.sp-s-star    { color: #ffd700; text-shadow: 0 0 7px rgba(255,215,0,0.55); }
.sp-s-bar     { color: #d4af37; }
.sp-s-heart   { color: #ff69b4; }
.sp-s-bell    { color: #ffeb3b; }

/* Responsive tweaks */
@media (max-width: 520px) {
  .sp-pt-grid  { grid-template-columns: 1fr; }
  .sp-info-row { flex-wrap: wrap; }
  .sp-spin-btn { width: 100%; order: -1; text-align: center; }
  .sp-jackpot-bar { padding: 8px 12px; }
  .sp-jp-amount { font-size: 22px; }
  .widgets-grid-2 { grid-template-columns: 1fr !important; }
}
