/* ============ ROOT VARIABLES ============ */
:root {
  --gold: #fbbf24;
  --gold-dark: #f59e0b;
  --gold-light: #fde68a;
  --neon-purple: #a855f7;
  --neon-pink: #ec4899;
  --neon-blue: #3b82f6;
  --deep-purple: #1e0a3c;
  --casino-green: #0d5a2d;
  --bg-body: #050208;
  --bg-card: rgba(15, 8, 30, 0.85);
  --bg-card-hover: rgba(25, 15, 45, 0.95);
  --bg-input: #120a22;
  --border: rgba(168, 85, 247, 0.15);
  --border-light: rgba(168, 85, 247, 0.25);
  --text-primary: #f5f0ff;
  --text-secondary: #c4b5e0;
  --text-muted: #9585b5;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow: 0 4px 30px rgba(168,85,247,0.15);
  --glow-gold: 0 0 20px rgba(251,191,36,0.3), 0 0 60px rgba(251,191,36,0.1);
  --glow-purple: 0 0 20px rgba(168,85,247,0.3), 0 0 60px rgba(168,85,247,0.1);
}

* { font-family: 'Inter', sans-serif; box-sizing: border-box; }

body {
  background: var(--bg-body);
  color: var(--text-primary);
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
.text-purple { color: var(--neon-purple) !important; }

/* ============ GLOBAL ANIMATIONS ============ */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-15px) rotate(var(--rot2, 5deg)); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)) scale(1); }
  50% { transform: translateY(-10px) rotate(var(--rot2, 3deg)) scale(1.05); }
}
@keyframes bokehFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: var(--opa, 0.3); }
  33% { transform: translate(var(--tx1, 10px), var(--ty1, -15px)) scale(1.1); opacity: calc(var(--opa, 0.3) * 1.3); }
  66% { transform: translate(var(--tx2, -8px), var(--ty2, 10px)) scale(0.9); opacity: calc(var(--opa, 0.3) * 0.8); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.97); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes chipSpin {
  0%, 100% { transform: rotateY(0deg) translateY(0); }
  25% { transform: rotateY(90deg) translateY(-8px); }
  50% { transform: rotateY(180deg) translateY(0); }
  75% { transform: rotateY(270deg) translateY(-5px); }
}
@keyframes cardShine {
  0% { left: -100%; }
  100% { left: 200%; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(251,191,36,0.15), 0 0 30px rgba(168,85,247,0.08); }
  50% { box-shadow: 0 0 25px rgba(251,191,36,0.25), 0 0 50px rgba(168,85,247,0.15); }
}
@keyframes borderShimmer {
  0% { border-color: rgba(168,85,247,0.2); }
  50% { border-color: rgba(251,191,36,0.35); }
  100% { border-color: rgba(168,85,247,0.2); }
}
@keyframes casinoBgFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-2%, 1%) rotate(1deg); }
  100% { transform: translate(1%, -1%) rotate(-0.5deg); }
}

/* ============ BOKEH LIGHTS ============ */
.bokeh-container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(var(--blur, 20px));
  animation: bokehFloat var(--dur, 8s) ease-in-out infinite;
  opacity: var(--opa, 0.25);
}
.b1  { --blur:25px; --opa:0.2; --dur:9s;  --tx1:15px; --ty1:-20px; --tx2:-10px; --ty2:15px; width:120px; height:120px; background:radial-gradient(circle, rgba(251,191,36,0.5), transparent 70%); top:10%; left:5%; }
.b2  { --blur:30px; --opa:0.15; --dur:12s; --tx1:-12px; --ty1:18px; --tx2:8px; --ty2:-12px; width:160px; height:160px; background:radial-gradient(circle, rgba(168,85,247,0.4), transparent 70%); top:20%; right:10%; }
.b3  { --blur:18px; --opa:0.25; --dur:7s;  --tx1:8px; --ty1:-10px; --tx2:-15px; --ty2:8px; width:80px; height:80px; background:radial-gradient(circle, rgba(251,191,36,0.6), transparent 70%); top:60%; left:15%; }
.b4  { --blur:35px; --opa:0.12; --dur:14s; --tx1:-20px; --ty1:10px; --tx2:15px; --ty2:-18px; width:200px; height:200px; background:radial-gradient(circle, rgba(236,72,153,0.3), transparent 70%); bottom:10%; right:5%; }
.b5  { --blur:15px; --opa:0.3; --dur:6s;  --tx1:5px; --ty1:-12px; --tx2:-8px; --ty2:5px; width:60px; height:60px; background:radial-gradient(circle, rgba(251,191,36,0.7), transparent 70%); top:35%; left:45%; }
.b6  { --blur:22px; --opa:0.18; --dur:10s; --tx1:-10px; --ty1:15px; --tx2:12px; --ty2:-8px; width:100px; height:100px; background:radial-gradient(circle, rgba(168,85,247,0.5), transparent 70%); top:15%; left:55%; }
.b7  { --blur:28px; --opa:0.15; --dur:11s; --tx1:18px; --ty1:-8px; --tx2:-12px; --ty2:20px; width:140px; height:140px; background:radial-gradient(circle, rgba(251,191,36,0.35), transparent 70%); bottom:30%; left:70%; }
.b8  { --blur:20px; --opa:0.2; --dur:8s;  --tx1:-6px; --ty1:10px; --tx2:10px; --ty2:-6px; width:90px; height:90px; background:radial-gradient(circle, rgba(168,85,247,0.45), transparent 70%); top:50%; right:25%; }
.b9  { --blur:16px; --opa:0.22; --dur:9s;  --tx1:12px; --ty1:-5px; --tx2:-8px; --ty2:12px; width:70px; height:70px; background:radial-gradient(circle, rgba(251,191,36,0.55), transparent 70%); top:75%; left:30%; }
.b10 { --blur:32px; --opa:0.1; --dur:15s;  --tx1:-15px; --ty1:12px; --tx2:18px; --ty2:-10px; width:180px; height:180px; background:radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%); top:5%; right:35%; }
.b11 { --blur:14px; --opa:0.28; --dur:7s;  --tx1:8px; --ty1:-15px; --tx2:-5px; --ty2:8px; width:50px; height:50px; background:radial-gradient(circle, rgba(251,191,36,0.65), transparent 70%); bottom:15%; left:50%; }
.b12 { --blur:26px; --opa:0.13; --dur:13s; --tx1:-18px; --ty1:8px; --tx2:10px; --ty2:-15px; width:150px; height:150px; background:radial-gradient(circle, rgba(168,85,247,0.35), transparent 70%); bottom:40%; right:15%; }
.sites-bokeh .bokeh { opacity: calc(var(--opa, 0.25) * 0.7); }

/* ============ HERO CASINO FLOATING ELEMENTS ============ */
.hero-casino-elements {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-float {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.12;
}
/* Casino Chips */
.hf-chip {
  width: 50px; height: 50px;
  border: 4px dashed rgba(251,191,36,0.6);
  background: radial-gradient(circle at 40% 40%, rgba(168,85,247,0.4), rgba(15,8,30,0.8));
  box-shadow: inset 0 0 10px rgba(251,191,36,0.2), 0 0 15px rgba(251,191,36,0.1);
  animation: chipSpin var(--dur, 8s) ease-in-out infinite;
}
.hf1 { --dur:10s; top:12%; left:8%; width:55px; height:55px; opacity:0.15; }
.hf2 { --dur:13s; top:65%; right:6%; width:45px; height:45px; opacity:0.1; animation-delay:-3s; }
.hf3 { --dur:11s; bottom:15%; left:20%; width:40px; height:40px; opacity:0.08; animation-delay:-5s; }
/* Dice */
.hf-dice {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 2px solid rgba(251,191,36,0.3);
  box-shadow: 0 0 15px rgba(251,191,36,0.1);
  animation: float var(--dur, 7s) ease-in-out infinite;
}
.hf-dice::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: rgba(251,191,36,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hf4 { --dur:8s; --rot:-10deg; --rot2:5deg; top:25%; right:15%; opacity:0.12; }
.hf5 { --dur:9s; --rot:15deg; --rot2:-8deg; bottom:30%; left:10%; opacity:0.08; animation-delay:-2s; }
/* Cards */
.hf-card {
  width: 35px; height: 50px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(251,191,36,0.25);
  animation: float var(--dur, 9s) ease-in-out infinite;
}
.hf-card::before {
  content: '\2660';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: rgba(251,191,36,0.4);
}
.hf6 { --dur:10s; --rot:20deg; --rot2:10deg; top:40%; left:4%; opacity:0.1; }
.hf7 { --dur:8s; --rot:-15deg; --rot2:-5deg; top:10%; right:25%; opacity:0.07; }
.hf7::before { content: '\2665'; color: rgba(236,72,153,0.4); }
/* Roulette */
.hf-roulette {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(251,191,36,0.2);
  background: conic-gradient(
    rgba(168,85,247,0.15) 0deg, rgba(15,8,30,0.3) 15deg,
    rgba(251,191,36,0.1) 30deg, rgba(15,8,30,0.3) 45deg,
    rgba(168,85,247,0.15) 60deg, rgba(15,8,30,0.3) 75deg,
    rgba(251,191,36,0.1) 90deg, rgba(15,8,30,0.3) 105deg,
    rgba(168,85,247,0.15) 120deg, rgba(15,8,30,0.3) 135deg,
    rgba(251,191,36,0.1) 150deg, rgba(15,8,30,0.3) 165deg,
    rgba(168,85,247,0.15) 180deg, rgba(15,8,30,0.3) 195deg,
    rgba(251,191,36,0.1) 210deg, rgba(15,8,30,0.3) 225deg,
    rgba(168,85,247,0.15) 240deg, rgba(15,8,30,0.3) 255deg,
    rgba(251,191,36,0.1) 270deg, rgba(15,8,30,0.3) 285deg,
    rgba(168,85,247,0.15) 300deg, rgba(15,8,30,0.3) 315deg,
    rgba(251,191,36,0.1) 330deg, rgba(15,8,30,0.3) 345deg
  );
  animation: spin 30s linear infinite;
  box-shadow: 0 0 30px rgba(168,85,247,0.1), inset 0 0 20px rgba(251,191,36,0.05);
}
.hf-roulette::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  background: radial-gradient(circle, rgba(251,191,36,0.4), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hf8 { bottom:10%; right:8%; opacity:0.1; }

/* ============ HEADER & NAV ============ */
.site-header {
  background: rgba(5, 2, 15, 0.92);
  border-bottom: 1px solid rgba(168,85,247,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(25px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 1px 0 rgba(251,191,36,0.1);
}
.navbar { padding: 12px 0; }
.navbar-brand {
  font-size: 1.5rem; font-weight: 800;
  text-shadow: 0 0 20px rgba(251,191,36,0.4);
}
.nav-link {
  color: #c4b5e0 !important; font-weight: 500; font-size: 0.95rem;
  padding: 8px 16px !important; border-radius: 10px; transition: all 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold) !important;
  background: rgba(251,191,36,0.1);
  text-shadow: 0 0 15px rgba(251,191,36,0.3);
}
.dropdown-menu-dark {
  background: rgba(15,8,30,0.98);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(168,85,247,0.1);
  backdrop-filter: blur(20px);
}
.dropdown-item { color: #c4b5e0; padding: 10px 16px; border-radius: 8px; margin: 2px 4px; transition: all 0.2s; }
.dropdown-item:hover { background: rgba(251,191,36,0.12); color: var(--gold); }

/* Search */
.search-box { min-width: 200px; }
.search-box .form-control {
  border-radius: 20px; padding: 6px 16px; font-size: 0.85rem;
  background: rgba(15,8,30,0.8); border: 1px solid rgba(168,85,247,0.25); color: #fff;
}
.search-box .form-control:focus { border-color: var(--gold); box-shadow: 0 0 15px rgba(251,191,36,0.2); }
.search-results { position: absolute; top: 100%; left: 0; right: 0; background: rgba(15,8,30,0.98); border: 1px solid rgba(168,85,247,0.3); border-radius: var(--radius); margin-top: 4px; display: none; z-index: 1001; max-height: 300px; overflow-y: auto; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.search-results.show { display: block; }
.search-result-item { padding: 10px 16px; border-bottom: 1px solid rgba(168,85,247,0.1); color: #c4b5e0; cursor: pointer; transition: all 0.2s; }
.search-result-item:hover { background: rgba(251,191,36,0.1); color: var(--gold); }
.search-result-item:last-child { border-bottom: none; }

/* Category Bar */
.category-bar {
  background: rgba(10,5,20,0.9); border-bottom: 1px solid rgba(168,85,247,0.15);
  padding: 10px 0; overflow-x: auto; backdrop-filter: blur(10px);
}
.category-scroll { display: flex; gap: 8px; white-space: nowrap; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.category-scroll::-webkit-scrollbar { display: none; }
.category-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px;
  background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.2);
  border-radius: 20px; color: #c4b5e0; font-size: 0.85rem; font-weight: 500;
  transition: all 0.3s; text-decoration: none;
}
.category-pill:hover, .category-pill.active {
  background: rgba(251,191,36,0.15); border-color: var(--gold); color: var(--gold);
  box-shadow: 0 0 15px rgba(251,191,36,0.15);
}
.cat-icon { font-size: 1rem; }

/* ============ HERO ============ */
.hero-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(251,191,36,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(236,72,153,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0a0415 0%, var(--bg-body) 100%);
}
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 20px; border-radius: 30px;
  background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.25);
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  margin-bottom: 20px; animation: glowPulse 3s ease-in-out infinite;
}
.hero-badge-icon { font-size: 1.1rem; }

.hero-title {
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 25%, #f59e0b 50%, #fbbf24 75%, #fde68a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 18px; line-height: 1.2;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 0 30px rgba(251,191,36,0.3));
}
.hero-subtitle { font-size: 1.15rem; color: #c4b5e0; max-width: 600px; margin: 0 auto 30px; line-height: 1.6; }
.hero-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: inline-flex; align-items: center; gap: 20px;
  background: rgba(15,8,30,0.6); backdrop-filter: blur(15px);
  border: 1px solid rgba(168,85,247,0.2); border-radius: 30px;
  padding: 12px 32px;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 1.3rem; font-weight: 800; color: var(--gold); text-shadow: 0 0 15px rgba(251,191,36,0.3); }
.hero-stat-label { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-divider { width: 1px; height: 30px; background: rgba(168,85,247,0.3); }

.hero-bg-effect {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='30' y='35' text-anchor='middle' font-size='18' fill='rgba(168,85,247,0.025)'%3E%E2%99%A0%3C/text%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='40' y='45' text-anchor='middle' font-size='16' fill='rgba(251,191,36,0.02)'%3E%E2%99%A6%3C/text%3E%3C/svg%3E");
  z-index: 0; pointer-events: none;
}
.hero-bottom-glow {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251,191,36,0.5), rgba(168,85,247,0.5), rgba(251,191,36,0.5), transparent);
  box-shadow: 0 0 30px rgba(251,191,36,0.2);
}

/* ============ SECTIONS ============ */
.section-title { font-size: 1.6rem; font-weight: 800; color: var(--text-primary); }
.section-subtitle { font-size: 0.95rem; color: #b8a8d8; }
.section-subtitle.text-muted { color: #b8a8d8 !important; }

/* ============ CATEGORY CARDS ============ */
.category-card {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  transition: all 0.3s; text-decoration: none; position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.category-card::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251,191,36,0.06), transparent);
  transition: left 0.5s;
}
.category-card:hover::before { left: 200%; }
.category-card:hover {
  border-color: var(--gold); background: var(--bg-card-hover); transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(168,85,247,0.15), 0 0 15px rgba(251,191,36,0.1);
}
.cat-emoji { font-size: 1.5rem; }
.cat-name { color: var(--text-primary); font-weight: 600; font-size: 0.9rem; flex: 1; }
.category-card i { color: var(--text-muted); transition: all 0.3s; }
.category-card:hover i { color: var(--gold); }

/* ============ CATEGORIES SECTION ============ */
.categories-section { position: relative; overflow: hidden; }
.categories-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ============ BONUS CARDS ============ */
.bonus-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.4s; height: 100%; display: flex; flex-direction: column;
  position: relative; backdrop-filter: blur(10px);
  animation: borderShimmer 6s ease-in-out infinite;
}
.bonus-card::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251,191,36,0.04), transparent);
  pointer-events: none;
}
.bonus-card:hover::after { animation: cardShine 0.8s forwards; }
.bonus-card:hover {
  border-color: var(--gold); transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(168,85,247,0.2), 0 0 30px rgba(251,191,36,0.12), 0 0 0 1px rgba(251,191,36,0.15);
}
.bonus-card-header { padding: 16px 20px 12px; display: flex; justify-content: space-between; align-items: flex-start; }
.bonus-site-logo { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; border: 1px solid var(--border-light); }
.bonus-site-logo.lg { width: 60px; height: 60px; }
.bonus-site-logo.sm { width: 32px; height: 32px; border-radius: 8px; }
.bonus-site-logo-placeholder {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--neon-purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #000; font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(251,191,36,0.2);
}
.badge-category { font-size: 0.75rem; color: var(--neon-purple); font-weight: 500; }
.featured-badge { color: var(--gold); font-size: 1.1rem; animation: pulse 2s infinite; }
.bonus-card-body { padding: 0 20px 16px; flex: 1; }
.bonus-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; line-height: 1.4; }
.bonus-amount { font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-bottom: 8px; text-shadow: 0 0 15px rgba(251,191,36,0.3); }
.bonus-amount.small { font-size: 1.1rem; }
.bonus-amount-large {
  font-size: 2rem; font-weight: 900; color: var(--gold); padding: 20px;
  background: rgba(251,191,36,0.08); border-radius: var(--radius); text-align: center;
  border: 1px dashed rgba(251,191,36,0.3); text-shadow: 0 0 20px rgba(251,191,36,0.3);
}
.bonus-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bonus-details { display: flex; flex-wrap: wrap; gap: 6px; }
.bonus-tag {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px;
  background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.25);
  border-radius: 20px; font-size: 0.75rem; color: var(--neon-purple);
}
.bonus-card-footer { padding: 12px 20px 16px; display: flex; gap: 8px; margin-top: auto; }

/* Bonus Card Image */
.bonus-card-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.bonus-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s;
}
.bonus-card:hover .bonus-card-image img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.bonus-card-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(15,8,30,0.9), transparent);
  pointer-events: none;
}
.bonus-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  background: rgba(5,2,8,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  z-index: 2;
}

/* Bonus Detail Image */
.bonus-detail-image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.bonus-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bonus-detail-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(15,8,30,0.7), transparent);
  pointer-events: none;
}

/* ============ BONUSES SECTION ============ */
.bonuses-section { position: relative; overflow: hidden; }
.bonuses-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(168,85,247,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(251,191,36,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ============ SITES SECTION - CASINO TABLE THEME ============ */
.sites-section {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(168,85,247,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(251,191,36,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(13,90,45,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #060118 0%, #120535 30%, #0a1020 60%, #060012 100%);
  border-top: 2px solid; border-bottom: 2px solid;
  border-image: linear-gradient(90deg, transparent, rgba(251,191,36,0.6), rgba(168,85,247,0.5), rgba(251,191,36,0.6), transparent) 1;
}
/* Felt texture overlay */
.felt-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(13,90,45,0.015) 2px, rgba(13,90,45,0.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(13,90,45,0.015) 2px, rgba(13,90,45,0.015) 4px);
  pointer-events: none; z-index: 0;
}
.sites-section::before {
  content: '♠ ♥ ♦ ♣ ♠ ♥ ♦ ♣ ♠ ♥ ♦ ♣ ♠ ♥ ♦ ♣';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  font-size: 3.5rem; letter-spacing: 55px; line-height: 140px; word-spacing: 70px;
  color: rgba(168,85,247,0.04); pointer-events: none; z-index: 0;
  overflow: hidden; white-space: normal; padding: 20px;
}
.sites-section::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(168,85,247,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(251,191,36,0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(13,90,45,0.06) 0%, transparent 45%);
  pointer-events: none; z-index: 0;
  animation: casinoBgFloat 20s ease-in-out infinite alternate;
}
.sites-section .container { position: relative; z-index: 2; }
.sites-section .section-title {
  background: linear-gradient(135deg, #fde68a, #fbbf24, #f59e0b, #fbbf24, #fde68a);
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 5s linear infinite;
  filter: drop-shadow(0 0 20px rgba(251,191,36,0.3));
}

/* Casino decorative elements */
.casino-deco {
  position: absolute; pointer-events: none; z-index: 1; font-size: 5rem;
}
.casino-deco.deco-1 { top: 8%; left: 3%; transform: rotate(-15deg); animation: float 8s ease-in-out infinite; --rot:-15deg; --rot2:-8deg; color: var(--neon-purple); opacity: 0.15; text-shadow: 0 0 30px rgba(168,85,247,0.4); }
.casino-deco.deco-2 { top: 55%; right: 4%; transform: rotate(20deg); animation: float 10s ease-in-out infinite; --rot:20deg; --rot2:12deg; font-size: 4.5rem; color: var(--gold); opacity: 0.12; text-shadow: 0 0 30px rgba(251,191,36,0.4); }
.casino-deco.deco-3 { bottom: 10%; left: 6%; transform: rotate(10deg); animation: float 12s ease-in-out infinite; --rot:10deg; --rot2:18deg; font-size: 4rem; color: var(--neon-pink); opacity: 0.1; text-shadow: 0 0 25px rgba(236,72,153,0.3); }
.casino-deco.deco-4 { top: 15%; right: 10%; transform: rotate(-10deg); animation: float 9s ease-in-out infinite reverse; --rot:-10deg; --rot2:-5deg; font-size: 3.5rem; color: #ef4444; opacity: 0.12; text-shadow: 0 0 20px rgba(239,68,68,0.3); }

/* Casino chip decorations */
.deco-chip {
  width: 60px; height: 60px; border-radius: 50%;
  border: 5px dashed rgba(251,191,36,0.3);
  background: radial-gradient(circle at 35% 35%, rgba(168,85,247,0.25), rgba(15,8,30,0.5));
  box-shadow: inset 0 0 15px rgba(251,191,36,0.15), 0 0 20px rgba(251,191,36,0.08);
  font-size: 0 !important;
}
.deco-chip.deco-5 { top: 30%; right: 5%; animation: chipSpin 12s ease-in-out infinite; opacity: 0.15; width: 55px; height: 55px; }
.deco-chip.deco-6 { bottom: 20%; left: 3%; animation: chipSpin 15s ease-in-out infinite reverse; opacity: 0.1; width: 45px; height: 45px; border-color: rgba(168,85,247,0.3); }

/* Casino dice decoration */
.deco-dice {
  width: 45px; height: 45px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  border: 2px solid rgba(251,191,36,0.2);
  box-shadow: 0 0 15px rgba(251,191,36,0.08), inset 0 0 10px rgba(251,191,36,0.05);
  font-size: 0 !important;
}
.deco-dice::before, .deco-dice::after {
  content: ''; position: absolute; width: 8px; height: 8px;
  background: rgba(251,191,36,0.35); border-radius: 50%;
}
.deco-dice::before { top: 25%; left: 25%; box-shadow: 16px 16px 0 rgba(251,191,36,0.35); }
.deco-dice::after { top: 25%; right: 25%; }
.deco-dice.deco-7 { bottom: 35%; right: 15%; animation: float 8s ease-in-out infinite; --rot:15deg; --rot2:8deg; opacity: 0.1; }

/* Casino roulette decoration */
.deco-roulette {
  width: 90px; height: 90px; border-radius: 50%;
  border: 3px solid rgba(251,191,36,0.15);
  background: conic-gradient(
    rgba(168,85,247,0.12) 0deg, rgba(15,8,30,0.2) 15deg,
    rgba(13,90,45,0.1) 30deg, rgba(15,8,30,0.2) 45deg,
    rgba(168,85,247,0.12) 60deg, rgba(15,8,30,0.2) 75deg,
    rgba(13,90,45,0.1) 90deg, rgba(15,8,30,0.2) 105deg,
    rgba(168,85,247,0.12) 120deg, rgba(15,8,30,0.2) 135deg,
    rgba(13,90,45,0.1) 150deg, rgba(15,8,30,0.2) 165deg,
    rgba(168,85,247,0.12) 180deg, rgba(15,8,30,0.2) 195deg,
    rgba(13,90,45,0.1) 210deg, rgba(15,8,30,0.2) 225deg,
    rgba(168,85,247,0.12) 240deg, rgba(15,8,30,0.2) 255deg,
    rgba(13,90,45,0.1) 270deg, rgba(15,8,30,0.2) 285deg,
    rgba(168,85,247,0.12) 300deg, rgba(15,8,30,0.2) 315deg,
    rgba(13,90,45,0.1) 330deg, rgba(15,8,30,0.2) 345deg
  );
  font-size: 0 !important;
  animation: spin 25s linear infinite;
  box-shadow: 0 0 25px rgba(168,85,247,0.08);
}
.deco-roulette::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 20px; height: 20px;
  background: radial-gradient(circle, rgba(251,191,36,0.3), transparent);
  border-radius: 50%; transform: translate(-50%, -50%);
  border: 2px solid rgba(251,191,36,0.2);
}
.deco-roulette.deco-8 { top: 12%; left: 15%; opacity: 0.12; }

/* ============ SITE CARDS ============ */
.site-card {
  display: flex; flex-direction: column; align-items: center; padding: 24px 16px;
  background: rgba(15, 8, 35, 0.8); backdrop-filter: blur(15px);
  border: 1px solid rgba(168,85,247,0.2); border-radius: var(--radius-lg);
  text-decoration: none; transition: all 0.4s; text-align: center;
  position: relative; overflow: hidden;
}
.site-card::before {
  content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, rgba(251,191,36,0.3), rgba(168,85,247,0.3), rgba(251,191,36,0.3));
  border-radius: var(--radius-lg); z-index: -1; opacity: 0; transition: opacity 0.4s;
}
.site-card:hover::before { opacity: 1; }
.site-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 40px rgba(168,85,247,0.2), 0 0 30px rgba(251,191,36,0.1);
}
.sites-section .site-card { background: rgba(15,10,35,0.7); border-color: rgba(168,85,247,0.2); }
.sites-section .site-card:hover { background: rgba(25,15,50,0.9); border-color: rgba(251,191,36,0.5); box-shadow: 0 10px 40px rgba(168,85,247,0.25), 0 0 30px rgba(251,191,36,0.15); }
.site-logo { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; margin-bottom: 12px; border: 1px solid var(--border-light); }
.site-logo-placeholder {
  width: 64px; height: 64px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--neon-purple), var(--neon-pink));
  background-size: 200% 200%; animation: shimmer 3s ease infinite;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #000; font-size: 1.5rem; margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(251,191,36,0.2);
}
.site-logo-placeholder.lg { width: 80px; height: 80px; font-size: 2rem; border-radius: 16px; }
.site-logo-placeholder.xl { width: 100px; height: 100px; font-size: 2.5rem; border-radius: 20px; }
.site-name { color: var(--text-primary); font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; }
.site-rating { font-size: 0.8rem; }
.site-rating .bi { font-size: 0.75rem; }
.site-rating .text-warning { text-shadow: 0 0 10px rgba(251,191,36,0.4); }

/* Site list cards */
.site-list-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; height: 100%; display: flex; flex-direction: column; backdrop-filter: blur(10px); }
.site-list-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--glow-gold); }
.site-list-header { padding: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.site-list-logo { width: 60px; height: 60px; border-radius: 12px; object-fit: cover; }
.site-list-body { padding: 16px 20px; flex: 1; }
.site-list-footer { padding: 12px 20px 16px; display: flex; gap: 8px; }
.site-detail-logo { width: 80px; height: 80px; border-radius: 16px; object-fit: cover; border: 2px solid var(--border-light); }

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 40px 0 20px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15,8,30,0.5) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-title { font-size: 2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.page-subtitle { color: #c4b5e0; font-size: 1rem; }
.breadcrumb { margin-bottom: 12px; }
.breadcrumb-item a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--text-primary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-secondary); }

/* ============ DETAIL PAGES ============ */
.detail-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(10px); }
.detail-title { font-size: 1.8rem; font-weight: 800; color: var(--text-primary); }
.detail-content { color: #c4b5e0; line-height: 1.8; }
.detail-content h2, .detail-content h3 { color: var(--text-primary); margin-top: 24px; margin-bottom: 12px; }
.detail-content p { margin-bottom: 16px; }
.detail-content p:empty { display: none; }
.detail-content a { color: var(--gold); }
.detail-content .desc-heading { display: block; color: var(--gold); font-size: 1.1rem; margin: 20px 0 8px 0; font-weight: 700; }
.detail-content .desc-bullet { color: var(--gold); font-weight: 700; margin-right: 4px; }
.detail-sidebar { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 100px; backdrop-filter: blur(10px); }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.info-list li:last-child { border-bottom: none; }
.info-label { color: var(--text-secondary); font-size: 0.875rem; display: flex; align-items: center; gap: 8px; }
.info-value { color: var(--text-primary); font-weight: 600; }
.info-value.code { background: rgba(251,191,36,0.1); padding: 4px 12px; border-radius: 6px; color: var(--gold); font-family: monospace; }
.terms-box { background: rgba(251,191,36,0.05); border: 1px solid rgba(251,191,36,0.15); border-radius: var(--radius); padding: 20px; }
.terms-content { color: #c4b5e0; font-size: 0.9rem; line-height: 1.7; }

/* ============ SLIDER ============ */
.slider-card { background: linear-gradient(135deg, #150835, #0d1025); border: 1px solid var(--border); min-height: 200px; border-radius: var(--radius-lg); }
.slider-img { max-height: 160px; border-radius: var(--radius); }

/* ============ FILTER PILLS ============ */
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill { padding: 8px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; color: #c4b5e0; font-size: 0.85rem; font-weight: 500; transition: all 0.3s; text-decoration: none; }
.filter-pill:hover, .filter-pill.active { background: rgba(251,191,36,0.15); border-color: var(--gold); color: var(--gold); box-shadow: 0 0 15px rgba(251,191,36,0.1); }

/* ============ SEO CONTENT ============ */
.seo-section { border-top: 1px solid var(--border); }
.seo-content { max-width: 900px; }
.seo-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; margin-top: 28px; }
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--gold); margin-top: 24px; margin-bottom: 10px; }
.seo-content p { color: #c4b5e0; line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
.seo-content strong { color: var(--text-primary); }
.seo-text-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.seo-text-block h2 { position: relative; padding-left: 16px; }
.seo-text-block h2::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; background: linear-gradient(180deg, var(--gold), var(--neon-purple)); border-radius: 2px; }

/* ============ DISCLAIMER ============ */
.disclaimer-section { border-top: 1px solid var(--border); }
.disclaimer-box { background: rgba(251,191,36,0.05); border: 1px solid rgba(251,191,36,0.2); border-radius: var(--radius); padding: 20px; backdrop-filter: blur(10px); }

/* ============ FOOTER ============ */
.site-footer { background: rgba(5,2,15,0.95); border-top: 1px solid var(--border); position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251,191,36,0.4), rgba(168,85,247,0.4), rgba(251,191,36,0.4), transparent);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-secondary); font-size: 0.875rem; transition: all 0.2s; text-decoration: none; }
.footer-links a:hover { color: var(--gold); text-shadow: 0 0 10px rgba(251,191,36,0.2); }
.social-link { width: 36px; height: 36px; border-radius: 10px; background: var(--bg-input); border: 1px solid var(--border-light); display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s; text-decoration: none; }
.social-link:hover { background: rgba(251,191,36,0.15); border-color: var(--gold); color: var(--gold); box-shadow: 0 0 15px rgba(251,191,36,0.2); }
.age-badge { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(239,68,68,0.15); border: 2px solid rgba(239,68,68,0.3); color: #ef4444; font-weight: 800; font-size: 1.1rem; }
.footer-bottom { border-top: 1px solid var(--border); }

/* ============ BOOTSTRAP OVERRIDES ============ */
:root, [data-bs-theme="dark"], [data-bs-theme="light"] {
  --bs-secondary-color: #b8a8d8 !important;
  --bs-secondary-color-rgb: 184, 168, 216 !important;
  --bs-body-color: #f5f0ff;
  --bs-body-color-rgb: 245, 240, 255;
  --bs-tertiary-color: #b8a8d8;
}
.text-muted, p.text-muted, span.text-muted, small.text-muted, div.text-muted, h6.text-muted, .section-subtitle.text-muted, .text-body-secondary { color: #b8a8d8 !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-white { color: var(--text-primary) !important; }
p, li, span, td, th, label, small { color: inherit; }
.small, small { color: inherit; }
.text-muted.small, .text-muted.mb-0, p.text-muted.small { color: #b8a8d8 !important; }

/* ============ BUTTONS ============ */
.btn-warning {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border: none;
  color: #000; font-weight: 600; box-shadow: 0 4px 15px rgba(251,191,36,0.25); transition: all 0.3s;
}
.btn-warning:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #000; box-shadow: 0 6px 25px rgba(251,191,36,0.35); transform: translateY(-1px); }
.btn-outline-warning { border-color: var(--gold); color: var(--gold); transition: all 0.3s; }
.btn-outline-warning:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; box-shadow: 0 4px 20px rgba(251,191,36,0.25); }
.btn-outline-light { border-color: rgba(255,255,255,0.3); color: #fff; transition: all 0.3s; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(168,85,247,0.5); }
::selection { background: rgba(251,191,36,0.3); color: #fff; }

/* ============ PAGINATION ============ */
.pagination { gap: 4px; }
.page-link {
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary);
  border-radius: 10px !important; padding: 8px 14px; font-weight: 500; font-size: 0.9rem;
  transition: all 0.3s;
}
.page-link:hover { background: rgba(251,191,36,0.1); border-color: var(--gold); color: var(--gold); }
.page-item.active .page-link {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-color: var(--gold);
  color: #000; font-weight: 700; box-shadow: 0 0 15px rgba(251,191,36,0.25);
}
.page-item.disabled .page-link { background: rgba(15,8,30,0.5); color: var(--text-muted); border-color: transparent; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-section { padding: 60px 0 50px; }
  .hero-stats { padding: 10px 20px; gap: 15px; }
  .hero-stat-num { font-size: 1.1rem; }
  .page-title { font-size: 1.5rem; }
  .detail-card { padding: 20px; }
  .detail-sidebar { position: static; }
  .section-title { font-size: 1.3rem; }
  .bonus-amount-large { font-size: 1.5rem; }
  .category-card { padding: 12px 14px; }
  .cat-name { font-size: 0.8rem; }
  .cat-emoji { font-size: 1.2rem; }
  .navbar-brand { font-size: 1.2rem; }
  .search-box { min-width: 100%; margin-top: 12px; }
  .casino-deco { display: none; }
  .hero-casino-elements { display: none; }
  .sites-section::before { font-size: 2rem; letter-spacing: 20px; line-height: 80px; }
  .bokeh { transform: scale(0.6); }
}

@media (max-width: 576px) {
  .hero-buttons .btn { width: 100%; }
  .bonus-card-footer { flex-direction: column; }
  .site-list-footer { flex-direction: column; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
