/* ============ ROOT VARIABLES ============ */
:root {
  --gold: #818cf8;
  --gold-dark: #6366f1;
  --gold-light: #c7d2fe;
  --ivory: #f0ebe5;
  --ivory-light: #fffff0;
  --neon-purple: #4f46e5;
  --neon-pink: #a78bfa;
  --neon-blue: #6366f1;
  --deep-purple: #1e1b4b;
  --casino-green: #0d5a2d;
  --bg-body: #07051a;
  --bg-card: rgba(15, 12, 50, 0.85);
  --bg-card-hover: rgba(20, 16, 60, 0.95);
  --bg-input: #100d30;
  --border: rgba(99, 102, 241, 0.18);
  --border-light: rgba(129, 140, 248, 0.3);
  --text-primary: #f5f0ff;
  --text-secondary: #c4b5e0;
  --text-muted: #8b85b8;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow: 0 4px 30px rgba(99,102,241,0.18);
  --glow-gold: 0 0 20px rgba(99,102,241,0.35), 0 0 60px rgba(99,102,241,0.12);
  --glow-purple: 0 0 20px rgba(79,70,229,0.3), 0 0 60px rgba(79,70,229,0.1);
  --success: #22c55e;
  --danger: #ef4444;
}

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

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

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--ivory); }
.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 floatSpin {
  0%   { transform: translateY(0)     rotate(0deg); }
  25%  { transform: translateY(-12px) rotate(90deg); }
  50%  { transform: translateY(-18px) rotate(180deg); }
  75%  { transform: translateY(-8px)  rotate(270deg); }
  100% { transform: translateY(0)     rotate(360deg); }
}
@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(99,102,241,0.2), 0 0 30px rgba(79,70,229,0.1); }
  50% { box-shadow: 0 0 25px rgba(99,102,241,0.35), 0 0 50px rgba(79,70,229,0.18); }
}
@keyframes borderShimmer {
  0% { border-color: rgba(99,102,241,0.22); }
  50% { border-color: rgba(240,235,229,0.22); }
  100% { border-color: rgba(99,102,241,0.22); }
}
@keyframes casinoBgFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-2%, 1%) rotate(1deg); }
  100% { transform: translate(1%, -1%) rotate(-0.5deg); }
}
@keyframes mobSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ 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(99,102,241,0.6), 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(79,70,229,0.45), 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(129,140,248,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(167,139,250,0.25), 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(199,210,254,0.5), 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(99,102,241,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(79,70,229,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(129,140,248,0.4), 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(240,235,229,0.3), 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(99,102,241,0.2), 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(199,210,254,0.55), 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(79,70,229,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;
}
.hf-chip {
  width: 50px; height: 50px;
  border: 4px dashed rgba(129,140,248,0.6);
  background: radial-gradient(circle at 40% 40%, rgba(79,70,229,0.4), rgba(7,5,26,0.8));
  box-shadow: inset 0 0 10px rgba(99,102,241,0.2), 0 0 15px rgba(99,102,241,0.1);
  animation: chipSpin var(--dur, 8s) ease-in-out infinite;
}
.hf-dollar {
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--ivory-light), var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 18px rgba(199,210,254,0.5));
  animation: floatSpin var(--dur, 9s) linear infinite;
  border-radius: 0;
}
.hf1 { --dur:10s; top:10%; left:6%; opacity:0.18; font-size:4rem; }
.hf2 { --dur:13s; top:60%; right:5%; opacity:0.12; font-size:3rem; animation-delay:-3s; }
.hf3 { --dur:11s; bottom:12%; left:18%; opacity:0.1; font-size:2.5rem; animation-delay:-5s; }
.hf-dice {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  border: 2px solid rgba(129,140,248,0.35);
  box-shadow: 0 0 15px rgba(99,102,241,0.12);
  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(199,210,254,0.6);
  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; }
.hf-card {
  width: 35px; height: 50px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(129,140,248,0.3);
  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(199,210,254,0.5);
}
.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(167,139,250,0.4); }
.hf-roulette {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(99,102,241,0.25);
  background: conic-gradient(
    rgba(79,70,229,0.15) 0deg, rgba(7,5,26,0.3) 15deg,
    rgba(99,102,241,0.1) 30deg, rgba(7,5,26,0.3) 45deg,
    rgba(79,70,229,0.15) 60deg, rgba(7,5,26,0.3) 75deg,
    rgba(99,102,241,0.1) 90deg, rgba(7,5,26,0.3) 105deg,
    rgba(79,70,229,0.15) 120deg, rgba(7,5,26,0.3) 135deg,
    rgba(99,102,241,0.1) 150deg, rgba(7,5,26,0.3) 165deg,
    rgba(79,70,229,0.15) 180deg, rgba(7,5,26,0.3) 195deg,
    rgba(99,102,241,0.1) 210deg, rgba(7,5,26,0.3) 225deg,
    rgba(79,70,229,0.15) 240deg, rgba(7,5,26,0.3) 255deg,
    rgba(99,102,241,0.1) 270deg, rgba(7,5,26,0.3) 285deg,
    rgba(79,70,229,0.15) 300deg, rgba(7,5,26,0.3) 315deg,
    rgba(99,102,241,0.1) 330deg, rgba(7,5,26,0.3) 345deg
  );
  animation: spin 30s linear infinite;
  box-shadow: 0 0 30px rgba(79,70,229,0.12), inset 0 0 20px rgba(99,102,241,0.06);
}
.hf-roulette::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  background: radial-gradient(circle, rgba(199,210,254,0.4), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hf8  { bottom:10%; right:8%;  opacity:0.1; }
.hf9  { top:15%;   left:55%;  --dur:11s; --delay:1.2s; opacity:0.18; font-size:2.8rem; }
.hf10 { top:70%;   left:20%;  --dur:13s; --delay:2.5s; opacity:0.14; font-size:4rem; }
.hf11 { top:40%;   right:5%;  --dur:9s;  --delay:0.8s; opacity:0.2;  font-size:2.2rem; }
.hf12 { top:82%;   left:70%;  --dur:14s; --delay:3.1s; opacity:0.12; font-size:3.2rem; }
.hf13 { top:28%;   left:8%;   --dur:10s; --delay:1.8s; opacity:0.16; font-size:3.8rem; }
.hf14 { top:50%;   left:32%;  --dur:12s; --delay:0.5s; opacity:0.15; font-size:3rem; }
.hf15 { top:20%;   left:42%;  --dur:8s;  --delay:2.2s; opacity:0.13; font-size:2.6rem; }
.hf16 { top:35%;   right:28%; --dur:11s; --delay:1.0s; opacity:0.15; font-size:3rem; }
.hf17 { top:65%;   right:35%; --dur:9s;  --delay:3.5s; opacity:0.13; font-size:2.8rem; }
.hf18 { top:5%;    right:15%; --dur:10s; --delay:0.7s; opacity:0.17; font-size:3.4rem; }
.hf19 { top:12%;   right:32%; --dur:12s; --delay:2.0s; opacity:0.13; font-size:2.5rem; }
.hf20 { top:22%;   right:18%; --dur:8s;  --delay:1.4s; opacity:0.15; font-size:2.9rem; }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: linear-gradient(90deg, rgba(99,102,241,0.15), rgba(79,70,229,0.15));
  border-bottom: 1px solid rgba(99,102,241,0.2);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============ HEADER & NAV ============ */
.site-header {
  background: rgba(7, 5, 26, 0.95);
  border-bottom: 1px solid rgba(99,102,241,0.22);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(30px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 1px 0 rgba(99,102,241,0.15);
}
.navbar { padding: 0; }
.navbar-brand {
  font-size: 1.5rem; font-weight: 800;
  text-shadow: 0 0 20px rgba(129,140,248,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(--ivory) !important;
  background: rgba(99,102,241,0.12);
  text-shadow: 0 0 15px rgba(129,140,248,0.3);
}

/* 2-Satır Navbar Layout */
.navbar-layout {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  gap: 4px;
  padding: 6px 0;
}
.nav-top-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(99,102,241,0.15);
}
.nav-bottom-bar {
  display: flex !important;
  justify-content: center;
  width: 100%;
  padding-top: 4px;
}
.nav-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.nl-link {
  color: #c4b5e0;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.88rem;
  transition: all 0.25s;
  white-space: nowrap;
}
.nl-link:hover, .nl-link.active {
  color: var(--ivory);
  background: rgba(99,102,241,0.13);
}
.nl-search-wrap { margin-left: auto; width: 220px; }
.nl-search-input {
  background: rgba(15,12,50,0.8);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  color: #fff;
  font-size: 0.8rem;
  outline: none;
  width: 130px;
  transition: all 0.3s;
}
.nl-search-input:focus {
  border-color: var(--gold);
  width: 170px;
  box-shadow: 0 0 14px rgba(99,102,241,0.22);
}
.nl-search-input::placeholder { color: #8b85b8; }

/* Orta Logo */
.nav-center { display: flex; justify-content: center; position: relative; }

@keyframes reelScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Slot makinesi — tüm navbar arka planına yerleşir */
.navbar { position: relative; overflow: hidden; }

.nav-slot-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  overflow: hidden;
}

.slot-emoji-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(10rem, 25vw, 22rem);
  line-height: 1;
  opacity: 0.07;
  filter: drop-shadow(0 0 40px rgba(199,210,254,0.15));
}

.slot-reels-wrap {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.slot-reel-col {
  width: 38px;
  height: 42px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(15,10,50,0.6);
  border: 1px solid rgba(99,102,241,0.4);
  box-shadow: 0 0 10px rgba(99,102,241,0.25);
}

.slot-strip {
  display: flex;
  flex-direction: column;
  animation: reelScroll 0.5s linear infinite;
}

.slot-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold-light);
  flex-shrink: 0;
}

.s1 { animation-duration: 0.42s; }
.s2 { animation-duration: 0.61s; animation-delay: -0.18s; }
.s3 { animation-duration: 0.37s; animation-delay: -0.28s; }

.nav-brand-big { position: relative; z-index: 1; }
.navbar-layout  { position: relative; z-index: 1; }
.nav-brand-big {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  border-radius: 14px;
  background: rgba(99,102,241,0.07);
  border: 1px solid rgba(99,102,241,0.22);
  box-shadow: 0 0 24px rgba(99,102,241,0.12), inset 0 0 20px rgba(79,70,229,0.05);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.nav-brand-big::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, rgba(199,210,254,0.18), rgba(99,102,241,0.22), rgba(240,235,229,0.12));
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-brand-big:hover::before { opacity: 1; }
.nav-brand-big:hover { box-shadow: 0 0 35px rgba(99,102,241,0.25), 0 0 60px rgba(79,70,229,0.12); transform: translateY(-1px); }
.brand-part-1 {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--ivory-light) 0%, var(--gold-light) 40%, var(--gold) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 0 12px rgba(199,210,254,0.5));
}
.brand-part-2 {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--neon-purple) 60%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite reverse;
  filter: drop-shadow(0 0 12px rgba(99,102,241,0.5));
}

/* Sağ Kategoriler */
.nav-right {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
.nav-cats-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-height: 240px;
  width: 100%;
}
.nav-cats-list::-webkit-scrollbar { display: none; }
.nav-cat-pill {
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.15);
  color: #b8a8d8;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}
.nav-cat-pill:hover, .nav-cat-pill.active {
  background: rgba(99,102,241,0.2);
  border-color: var(--gold);
  color: var(--ivory);
  box-shadow: 0 0 10px rgba(99,102,241,0.15);
}
.dropdown-menu, .dropdown-menu-dark {
  background: rgba(15,12,50,0.98) !important;
  border: 1px solid rgba(99,102,241,0.3) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(79,70,229,0.12) !important;
  backdrop-filter: blur(20px);
}
.dropdown-item { color: #c4b5e0 !important; padding: 10px 16px; border-radius: 8px; margin: 2px 4px; transition: all 0.2s; }
.dropdown-item:hover { background: rgba(99,102,241,0.15) !important; color: var(--ivory) !important; }
.dropdown-divider { border-color: rgba(99,102,241,0.2) !important; }

/* Search */
.search-box { min-width: 200px; }
.search-box .form-control {
  border-radius: 20px; padding: 6px 16px; font-size: 0.85rem;
  background: rgba(15,12,50,0.8) !important; border: 1px solid rgba(99,102,241,0.25) !important; color: #fff !important;
}
.search-box .form-control:focus { border-color: var(--gold) !important; box-shadow: 0 0 15px rgba(99,102,241,0.2) !important; }
.search-box .form-control::placeholder { color: #8b85b8; }
.search-results {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(15,12,50,0.98);
  border: 1px solid rgba(99,102,241,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 {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(99,102,241,0.12);
  color: #c4b5e0; cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.search-result-item:hover { background: rgba(99,102,241,0.12); color: var(--ivory); }
.search-result-item:last-child { border-bottom: none; }
.search-result-img { width: 36px; height: 36px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.search-result-title { font-size: 0.85rem; font-weight: 500; color: inherit; }
.search-result-sub { font-size: 0.8rem; color: var(--text-muted); }

/* Category Bar */
.category-bar {
  background: rgba(10,8,30,0.9); border-bottom: 1px solid rgba(99,102,241,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: 10px 16px;
  background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.22);
  border-radius: 20px; color: #c4b5e0; font-size: 0.85rem; font-weight: 500;
  transition: all 0.3s; text-decoration: none; min-height: 44px;
}
.category-pill:hover, .category-pill.active {
  background: rgba(99,102,241,0.2); border-color: var(--gold); color: var(--ivory);
  box-shadow: 0 0 15px rgba(99,102,241,0.2);
}
.cat-icon { font-size: 1rem; }

/* ============ HERO ============ */
.hero-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(79,70,229,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(99,102,241,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(129,140,248,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0d0a2e 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(99,102,241,0.12); border: 1px solid rgba(129,140,248,0.3);
  color: var(--ivory); 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-badge-dollar {
  font-size: 1rem; font-weight: 800;
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(199,210,254,0.6);
}

.title-slot {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
  animation: floatSpin 6s linear infinite;
}
.ts1  { top: -28px;   left: -20px;  font-size: 1.5rem; animation-duration: 5s;  }
.ts2  { top: -24px;   right: -18px; font-size: 1.8rem; animation-duration: 7s;  animation-delay: -2s; }
.ts3  { bottom: -26px; left: 16px;  font-size: 1.4rem; animation-duration: 6s;  animation-delay: -1s; }
.ts4  { bottom: -24px; right: 20px; font-size: 1.7rem; animation-duration: 8s;  animation-delay: -3s; }
.ts5  { top: 50%;    left: -32px;  font-size: 1.6rem; animation-duration: 5.5s; animation-delay: -0.5s; transform: translateY(-50%); }
.ts6  { top: 50%;    right: -30px; font-size: 1.5rem; animation-duration: 6.5s; animation-delay: -1.5s; transform: translateY(-50%); }
.ts7  { top: -22px;  left: 30%;   font-size: 1.4rem; animation-duration: 7.5s; animation-delay: -2.5s; }
.ts8  { top: -20px;  right: 30%;  font-size: 1.6rem; animation-duration: 4.5s; animation-delay: -1s; }
.ts9  { bottom: -22px; left: 45%; font-size: 1.5rem; animation-duration: 6s;   animation-delay: -3.5s; }
.ts10 { bottom: -20px; right: 40%; font-size: 1.7rem; animation-duration: 5s;  animation-delay: -0.8s; }

.hero-title-wrap {
  display: inline-block;
  position: relative;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(79,70,229,0.18), rgba(99,102,241,0.1), rgba(30,27,75,0.25));
  border: 1px solid rgba(99,102,241,0.28);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(79,70,229,0.15), inset 0 0 30px rgba(99,102,241,0.06);
  margin-bottom: 18px;
}
.hero-title-wrap .hero-title { margin-bottom: 0; }

.hero-title {
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--ivory-light) 0%, var(--gold-light) 25%, var(--gold) 50%, var(--gold-light) 75%, var(--ivory-light) 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(99,102,241,0.35));
}
.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,12,50,0.6); backdrop-filter: blur(15px);
  border: 1px solid rgba(99,102,241,0.22); 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(99,102,241,0.4); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-divider { width: 1px; height: 30px; background: rgba(99,102,241,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(99,102,241,0.03)'%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(199,210,254,0.025)'%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(99,102,241,0.6), rgba(129,140,248,0.5), rgba(99,102,241,0.6), transparent);
  box-shadow: 0 0 30px rgba(99,102,241,0.25);
}

/* ============ 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(99,102,241,0.07), 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(79,70,229,0.18), 0 0 15px rgba(99,102,241,0.12);
}
.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(--ivory); }

/* ============ 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(79,70,229,0.06) 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(99,102,241,0.05), 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(79,70,229,0.22), 0 0 30px rgba(99,102,241,0.15), 0 0 0 1px rgba(129,140,248,0.18);
}
.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-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: #fff; font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(99,102,241,0.25);
}
.featured-badge { color: var(--gold); font-size: 1.1rem; animation: pulse 2s infinite; }
.bonus-site-name { color: var(--text-primary) !important; font-weight: 600; font-size: 0.9rem; }
.bonus-card-body { padding: 12px 20px 16px; flex: 1; }
.bonus-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; line-height: 1.4; }
.bonus-title a { color: var(--text-primary); }
.bonus-title a:hover { color: var(--ivory); }
.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-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,12,50,0.9), transparent);
  pointer-events: none;
}
.bonus-card-badge {
  position: absolute; top: 12px; left: 12px; padding: 5px 12px;
  background: rgba(7,5,26,0.78); backdrop-filter: blur(10px);
  border: 1px solid rgba(99,102,241,0.35); border-radius: 20px;
  font-size: 0.75rem; font-weight: 600; color: var(--ivory); z-index: 2;
}
.bonus-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(99,102,241,0.08));
  color: var(--gold); font-size: 2.5rem;
}

/* ============ 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(79,70,229,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(99,102,241,0.05) 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(79,70,229,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(99,102,241,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(30,27,75,0.15) 0%, transparent 60%),
    linear-gradient(135deg, #060118 0%, #0e0b38 30%, #080520 60%, #060012 100%);
  border-top: 2px solid; border-bottom: 2px solid;
  border-image: linear-gradient(90deg, transparent, rgba(99,102,241,0.6), rgba(129,140,248,0.5), rgba(99,102,241,0.6), transparent) 1;
}
.felt-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(79,70,229,0.015) 2px, rgba(79,70,229,0.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(79,70,229,0.015) 2px, rgba(79,70,229,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(99,102,241,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(79,70,229,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(129,140,248,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, var(--ivory-light), var(--ivory), var(--gold-light), var(--gold), var(--ivory));
  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(99,102,241,0.35));
}
.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(--gold); opacity: 0.15; text-shadow: 0 0 30px rgba(99,102,241,0.5); }
.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(--ivory); opacity: 0.1; text-shadow: 0 0 30px rgba(240,235,229,0.3); }
.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(167,139,250,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: var(--gold-light); opacity: 0.12; text-shadow: 0 0 20px rgba(129,140,248,0.3); }
.deco-chip {
  width: 60px; height: 60px; border-radius: 50%;
  border: 5px dashed rgba(99,102,241,0.35);
  background: radial-gradient(circle at 35% 35%, rgba(79,70,229,0.3), rgba(7,5,26,0.5));
  box-shadow: inset 0 0 15px rgba(99,102,241,0.15), 0 0 20px rgba(79,70,229,0.1);
  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(129,140,248,0.3); }
.deco-dice {
  width: 45px; height: 45px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 2px solid rgba(99,102,241,0.25);
  box-shadow: 0 0 15px rgba(79,70,229,0.1), inset 0 0 10px rgba(99,102,241,0.06);
  font-size: 0 !important;
}
.deco-dice::before, .deco-dice::after {
  content: ''; position: absolute; width: 8px; height: 8px;
  background: rgba(199,210,254,0.4); border-radius: 50%;
}
.deco-dice::before { top: 25%; left: 25%; box-shadow: 16px 16px 0 rgba(199,210,254,0.4); }
.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; }
.deco-roulette {
  width: 90px; height: 90px; border-radius: 50%;
  border: 3px solid rgba(99,102,241,0.2);
  background: conic-gradient(
    rgba(79,70,229,0.12) 0deg, rgba(7,5,26,0.2) 15deg,
    rgba(99,102,241,0.08) 30deg, rgba(7,5,26,0.2) 45deg,
    rgba(79,70,229,0.12) 60deg, rgba(7,5,26,0.2) 75deg,
    rgba(99,102,241,0.08) 90deg, rgba(7,5,26,0.2) 105deg,
    rgba(79,70,229,0.12) 120deg, rgba(7,5,26,0.2) 135deg,
    rgba(99,102,241,0.08) 150deg, rgba(7,5,26,0.2) 165deg,
    rgba(79,70,229,0.12) 180deg, rgba(7,5,26,0.2) 195deg,
    rgba(99,102,241,0.08) 210deg, rgba(7,5,26,0.2) 225deg,
    rgba(79,70,229,0.12) 240deg, rgba(7,5,26,0.2) 255deg,
    rgba(99,102,241,0.08) 270deg, rgba(7,5,26,0.2) 285deg,
    rgba(79,70,229,0.12) 300deg, rgba(7,5,26,0.2) 315deg,
    rgba(99,102,241,0.08) 330deg, rgba(7,5,26,0.2) 345deg
  );
  font-size: 0 !important;
  animation: spin 25s linear infinite;
  box-shadow: 0 0 25px rgba(79,70,229,0.1);
}
.deco-roulette::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 20px; height: 20px;
  background: radial-gradient(circle, rgba(199,210,254,0.35), transparent);
  border-radius: 50%; transform: translate(-50%, -50%);
  border: 2px solid rgba(99,102,241,0.25);
}
.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, 12, 45, 0.8); backdrop-filter: blur(15px);
  border: 1px solid rgba(99,102,241,0.22); 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(99,102,241,0.35), rgba(240,235,229,0.2), rgba(99,102,241,0.35));
  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(79,70,229,0.22), 0 0 30px rgba(99,102,241,0.12);
}
.sites-section .site-card { background: rgba(12,10,38,0.75); border-color: rgba(99,102,241,0.22); }
.sites-section .site-card:hover { background: rgba(20,15,55,0.9); border-color: rgba(129,140,248,0.5); box-shadow: 0 10px 40px rgba(79,70,229,0.28), 0 0 30px rgba(99,102,241,0.18); }
.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: #fff; font-size: 1.5rem; margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(99,102,241,0.25);
}
.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 .bi-star-fill { color: var(--gold); text-shadow: 0 0 10px rgba(99,102,241,0.4); }
.text-warning { color: var(--gold) !important; }
.site-bonus-count { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 40px 0 20px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(79,70,229,0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15,12,50,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(--ivory); }
.breadcrumb-item.active { color: var(--text-primary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-secondary); }

/* ============ FILTER BAR ============ */
.filter-bar, .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(99,102,241,0.18); border-color: var(--gold);
  color: var(--ivory); box-shadow: 0 0 15px rgba(99,102,241,0.15);
}

/* ============ 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(--ivory); }
.seo-content a { color: var(--gold); }

/* ============ FAQ ============ */
.faq-section { border-top: 1px solid var(--border); }
.faq-item { background: var(--bg-card); border: 1px solid var(--border) !important; border-radius: var(--radius) !important; margin-bottom: 8px; overflow: hidden; }
.faq-button {
  background: transparent !important; color: var(--text-primary) !important;
  font-weight: 600; font-size: 0.95rem; padding: 16px 20px;
  box-shadow: none !important;
}
.faq-button:not(.collapsed) { color: var(--ivory) !important; }
.faq-button::after { filter: invert(1) brightness(0.7); }
.faq-body { background: transparent; color: var(--text-secondary); padding: 0 20px 16px; line-height: 1.7; }

/* ============ SIDEBAR (DETAIL PAGES) ============ */
.sidebar-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; backdrop-filter: blur(10px);
  position: sticky; top: 100px;
}
.widget-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.category-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  color: var(--text-secondary); text-decoration: none; transition: all 0.2s;
  font-size: 0.875rem;
}
.category-list-item:last-child { border-bottom: none; }
.category-list-item:hover { color: var(--ivory); }
.related-bonus-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: all 0.2s;
}
.related-bonus-item:last-child { border-bottom: none; }
.related-bonus-item:hover { opacity: 0.8; }
.related-logo { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border-light); }
.related-title { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); margin: 0 0 2px; line-height: 1.3; }
.related-site { font-size: 0.72rem; color: var(--text-muted); }

/* ============ SITE DETAIL ============ */
.site-detail-header {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 12px;
}
.site-info-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; backdrop-filter: blur(10px);
}
.site-article-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin: 1.4rem 0 .6rem; }
.site-article-content h3 { font-size: 1.05rem; font-weight: 600; color: var(--gold); margin: 1.2rem 0 .5rem; }
.site-article-content p { color: var(--text-secondary); line-height: 1.85; margin-bottom: .9rem; }
.site-article-content ul { color: var(--text-secondary); line-height: 1.8; padding-left: 1.4rem; margin-bottom: .9rem; }
.site-article-content ul li { margin-bottom: .3rem; }
.site-article-content strong { color: var(--text-primary); }
.site-article-content .article-badge { display:inline-block; background:rgba(168,85,247,.12); color:var(--primary); border:1px solid rgba(168,85,247,.25); border-radius:6px; padding:2px 10px; font-size:.8rem; font-weight:600; margin-bottom:1rem; }
.site-stats-box { display: flex; flex-direction: column; gap: 0; }
.site-stat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.site-stat-row:last-child { border-bottom: none; }
.site-stat-row span { color: var(--text-secondary); }
.site-stat-row strong { color: var(--text-primary); }

/* ============ BONUS DETAIL ============ */
.bonus-detail-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; backdrop-filter: blur(10px);
}
.bonus-detail-img { width: 100%; max-height: 380px; object-fit: cover; display: block; }
.bonus-detail-body { padding: 28px; }
.bonus-description { color: var(--text-secondary); line-height: 1.8; font-size: 0.95rem; }
.bonus-html-content { color: var(--text-secondary); line-height: 1.8; }
.bonus-html-content h1, .bonus-html-content h2, .bonus-html-content h3 { color: var(--text-primary); margin: 20px 0 10px; }
.bonus-html-content a { color: var(--gold); }
.bonus-html-content p { margin-bottom: 14px; }
.bonus-html-content p:empty { display: none; }
.bonus-badge-lg {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.3);
  font-size: 0.82rem; font-weight: 600; color: var(--gold-light);
}

/* ============ SEARCH PAGE ============ */
.search-page-form { max-width: 600px; margin: 0 auto; }
.search-input-lg {
  background: rgba(15,12,50,0.8) !important; border: 1px solid rgba(99,102,241,0.3) !important;
  color: #fff !important; border-radius: 12px !important; padding: 12px 20px !important;
  font-size: 1rem !important;
}
.search-input-lg:focus { border-color: var(--gold) !important; box-shadow: 0 0 20px rgba(99,102,241,0.2) !important; }
.search-input-lg::placeholder { color: var(--text-muted); }

/* ============ EMPTY STATE ============ */
.empty-state {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state i { font-size: 3rem; color: rgba(99,102,241,0.4); display: block; margin-bottom: 16px; }
.empty-state p { font-size: 1rem; margin-bottom: 20px; }

/* ============ DISCLAIMER ============ */
.disclaimer-box {
  background: rgba(99,102,241,0.06); border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius); padding: 20px; backdrop-filter: blur(10px);
}

/* ============ FOOTER ============ */
.site-footer { background: rgba(7,5,26,0.96); border-top: 1px solid var(--border); position: relative; padding: 48px 0 32px; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), rgba(129,140,248,0.5), rgba(240,235,229,0.3), rgba(99,102,241,0.5), transparent);
}
.footer-brand { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; text-shadow: 0 0 20px rgba(99,102,241,0.35); }
.footer-desc { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.7; margin-bottom: 10px; }
.footer-disclaimer { color: var(--text-muted); font-size: 0.78rem; }
.footer-heading { color: var(--ivory); font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.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; display: block; padding: 6px 0; min-height: 44px; display: flex; align-items: center; }
.footer-links a:hover { color: var(--ivory); text-shadow: 0 0 10px rgba(99,102,241,0.2); }
.footer-divider { border-color: rgba(99,102,241,0.15); margin: 28px 0 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { margin: 0; color: var(--text-muted); font-size: 0.82rem; }

/* ============ MOBILE BOTTOM NAV ============ */
.mobile-bottom-nav { display: none; }
.mob-panel-overlay { display: none; }

@media (max-width: 767px) {
  body { padding-bottom: 72px; }

  .mobile-bottom-nav {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    height: 64px; background: rgba(7, 5, 26, 0.97);
    border-top: 1px solid rgba(99,102,241,0.28); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); z-index: 9000;
    align-items: stretch; box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  }
  .mob-nav-item {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 3px; text-decoration: none; color: #8b85b8;
    font-size: 11px; font-weight: 500; letter-spacing: 0.2px; transition: color 0.2s ease;
    padding: 8px 4px; position: relative; min-height: 48px;
  }
  .mob-nav-item::before {
    content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 0 0 4px 4px; opacity: 0; transition: opacity 0.2s ease;
  }
  .mob-nav-item.active::before { opacity: 1; }
  .mob-nav-icon {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 10px; font-size: 18px; transition: background 0.2s ease, transform 0.15s ease;
  }
  .mob-nav-item.active { color: var(--ivory); }
  .mob-nav-item.active .mob-nav-icon { background: rgba(99,102,241,0.15); transform: translateY(-2px); }
  .mob-nav-item:active .mob-nav-icon { transform: scale(0.9); }
  .mob-nav-home { color: var(--ivory); font-weight: 600; font-size: 11px; }
  .mob-nav-home .mob-nav-home-icon {
    width: 48px; height: 48px; border-radius: 50%; font-size: 20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--neon-purple));
    box-shadow: 0 4px 18px rgba(99,102,241,0.4), 0 0 0 3px rgba(99,102,241,0.15);
    color: #fff; margin-top: -16px; border: 2px solid rgba(99,102,241,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex; align-items: center; justify-content: center;
  }
  .mob-nav-home:active .mob-nav-home-icon { transform: scale(0.92); box-shadow: 0 6px 24px rgba(99,102,241,0.55); }
  .mob-nav-home::before { display: none; }

  .mob-panel-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.85); z-index: 10000; align-items: flex-end;
  }
  .mob-panel-overlay.active { display: flex; animation: mobSlideUp 0.25s ease; }
  .mob-panel-inner {
    background: #0f0d35; border: 1px solid rgba(99,102,241,0.35);
    border-bottom: none; border-radius: 20px 20px 0 0; width: 100%;
    padding: 16px 16px calc(80px + env(safe-area-inset-bottom, 0px));
    max-height: 85vh; overflow-y: auto;
  }
  .mob-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
  .mob-panel-title { font-weight: 600; font-size: 15px; color: var(--text-primary); }
  .mob-panel-close {
    background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.28);
    border-radius: 50%; width: 32px; height: 32px; color: var(--text-secondary);
    font-size: 13px; display: flex; align-items: center; justify-content: center; cursor: pointer;
  }
  .mob-search-input {
    width: 100%; background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.28); border-radius: 12px;
    padding: 12px 16px; color: var(--text-primary); font-size: 15px;
    outline: none; margin-bottom: 12px;
  }
  .mob-search-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
  .mob-search-input::placeholder { color: var(--text-muted); }
  .mob-search-result-item {
    display: flex; align-items: center; gap: 12px; padding: 12px 8px;
    border-radius: 10px; text-decoration: none; color: var(--text-primary);
    border-bottom: 1px solid rgba(99,102,241,0.1); transition: background 0.15s;
    min-height: 48px;
  }
  .mob-search-result-item:hover { background: rgba(99,102,241,0.12); }
  .mob-search-result-item img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; border: 1px solid rgba(99,102,241,0.2); }
  .mob-search-result-icon {
    width: 44px; height: 44px; border-radius: 8px; background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2); display: flex; align-items: center;
    justify-content: center; color: var(--gold); font-size: 18px;
  }
  .mob-search-result-name { font-weight: 500; font-size: 13px; color: var(--text-primary); }
  .mob-search-result-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
  .mob-search-empty { text-align: center; padding: 24px; color: var(--text-muted); font-size: 13px; }
  .mob-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 4px 0; }
  .mob-cat-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; padding: 16px 8px; background: rgba(99,102,241,0.07);
    border: 1px solid rgba(99,102,241,0.2); border-radius: 14px; text-decoration: none;
    color: var(--text-primary); transition: background 0.15s, border-color 0.15s, transform 0.15s;
    min-height: 72px;
  }
  .mob-cat-item:hover { background: rgba(99,102,241,0.18); border-color: rgba(240,235,229,0.3); color: var(--ivory); transform: scale(0.97); }
  .mob-cat-emoji { font-size: 24px; line-height: 1; }
  .mob-cat-name { font-size: 12px; font-weight: 600; text-align: center; color: inherit; line-height: 1.2; }
}


/* ============ BOOTSTRAP OVERRIDES ============ */
:root, [data-bs-theme="dark"], [data-bs-theme="light"] {
  --bs-secondary-color: #b8a8d8 !important;
  --bs-body-color: #f5f0ff;
  --bs-body-color-rgb: 245, 240, 255;
}
.text-muted, p.text-muted, span.text-muted, small.text-muted, div.text-muted { color: #b8a8d8 !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-white { color: var(--text-primary) !important; }

/* ============ BUTTONS ============ */
.btn-warning, .btn-primary-indigo {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border: none;
  color: #fff !important; font-weight: 600; box-shadow: 0 4px 15px rgba(99,102,241,0.3); transition: all 0.3s;
}
.btn-warning:hover, .btn-primary-indigo:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #fff !important; box-shadow: 0 6px 25px rgba(99,102,241,0.4); transform: translateY(-1px); }
.btn-outline-warning, .btn-outline-indigo {
  border-color: var(--gold) !important; color: var(--ivory) !important; transition: all 0.3s;
  background: transparent;
}
.btn-outline-warning:hover, .btn-outline-indigo:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; color: #fff !important; box-shadow: 0 4px 20px rgba(99,102,241,0.3); }
.btn-outline-light { border-color: rgba(240,235,229,0.35); color: var(--ivory); transition: all 0.3s; }
.btn-outline-light:hover { background: rgba(240,235,229,0.1); border-color: rgba(240,235,229,0.5); color: var(--ivory); }

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

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99,102,241,0.5); }
::selection { background: rgba(99,102,241,0.3); color: #fff; }

/* ============ 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; }
  .section-title { font-size: 1.3rem; }
  .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; }
  .bokeh-container { display: none; }
  .nav-slot-bg { display: none; }
  .sites-section::before { font-size: 2rem; letter-spacing: 20px; line-height: 80px; }
  .sidebar-widget { position: static; }
  .brand-part-1, .brand-part-2 { animation: none; background-size: 100% auto; }
  .hero-badge { animation: none; }
  .slot-strip { animation: none; }
  .hf-roulette { animation: none; }
  .glowPulse, [style*="animation"] { animation-duration: 0s !important; }
  * { will-change: auto !important; }
}

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

/* Desktop: 8 hero float + 6 bokeh — reduce GPU/battery load */
@media (min-width: 769px) {
  .hf9, .hf10, .hf11, .hf12, .hf13, .hf14, .hf15, .hf16, .hf17, .hf18, .hf19, .hf20 { display: none; }
  .b7, .b8, .b9, .b10, .b11, .b12 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bokeh-container, .hero-casino-elements { display: none; }
}
