/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */
:root {
  /* Pink Color Palette */
  --pink-50: #fff0f6;
  --pink-100: #ffe0ee;
  --pink-200: #ffb3d1;
  --pink-300: #ff80b3;
  --pink-400: #ff4d94;
  --pink-500: #ff1a75;
  --pink-600: #e6005c;
  --pink-700: #b30047;
  --pink-800: #800033;
  --pink-900: #4d001f;

  /* Dark Theme Base */
  --bg-primary: #0d0a12;
  --bg-secondary: #14101d;
  --bg-card: #1a1525;
  --bg-card-hover: #201b2e;

  /* Glass */
  --glass-bg: rgba(255, 26, 117, 0.06);
  --glass-border: rgba(255, 26, 117, 0.2);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #c4a8c4;
  --text-muted: #7a6a7a;

  /* Accent */
  --gold: #ffd700;
  --gold-light: #ffe566;

  /* Shadows */
  --shadow-pink: 0 0 30px rgba(255, 26, 117, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(255, 26, 117, 0.15);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Gradients */
  --gradient-pink: linear-gradient(
    135deg,
    #ff1a75 0%,
    #e6005c 50%,
    #b30047 100%
  );
  --gradient-dark: linear-gradient(135deg, #1a1525 0%, #0d0a12 100%);
  --gradient-card: linear-gradient(
    135deg,
    rgba(255, 26, 117, 0.1) 0%,
    rgba(230, 0, 92, 0.05) 100%
  );

  /* Typography */
  --font-body: "Inter", sans-serif;
  --font-heading: "Playfair Display", serif;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ============================================================
   2. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--pink-600);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--pink-400);
}

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink-300);
}

/* ============================================================
   4. HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  /* left: 0;
  right: 0; */
  z-index: 1000;
  background: rgba(13, 10, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(13, 10, 18, 0.98);
  box-shadow: var(--shadow-pink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  width: 150px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
}

.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-logo .logo-text span {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

/* Navigation */
#main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

#main-nav a {
  position: relative;
  padding: 8px 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

#main-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-pink);
  border-radius: 1px;
  transition: var(--transition);
}

#main-nav a:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
}

#main-nav a:hover::after,
#main-nav a.active::after {
  width: 60%;
}

#main-nav a.active {
  color: var(--pink-300);
}

/* CTA Button in Nav */
.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-pink) !important;
  color: var(--text-primary) !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(255, 26, 117, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 26, 117, 0.5) !important;
  background: rgba(0, 0, 0, 0) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13, 10, 18, 0.98);
  backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--glass-border);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

#mobile-nav.open {
  display: flex;
}

#mobile-nav a {
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

#mobile-nav a:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
}

/* ============================================================
   5. HERO BANNER
   ============================================================ */
#hero-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* margin-top: 72px; */
}

/* Background placeholder (replace with .webp via inline style or bg-image) */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(13, 10, 18, 0.85) 0%,
      rgba(26, 21, 37, 0.7) 100%
    ),
    url("images/banner.webp") center / cover no-repeat;
  background-color: #14101d;
}

/* Animated background particles */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(255, 26, 117, 0.25) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(230, 0, 92, 0.15) 0%,
      transparent 50%
    );
  animation: pulseBg 6s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    var(--bg-primary) 100%
  );
}

@keyframes pulseBg {
  from {
    opacity: 0.7;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--pink-400);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 25%;
  animation-duration: 12s;
  animation-delay: 2s;
  width: 6px;
  height: 6px;
  background: var(--gold);
}
.particle:nth-child(3) {
  left: 45%;
  animation-duration: 9s;
  animation-delay: 1s;
}
.particle:nth-child(4) {
  left: 65%;
  animation-duration: 11s;
  animation-delay: 3s;
  width: 3px;
  height: 3px;
  background: var(--pink-300);
}
.particle:nth-child(5) {
  left: 80%;
  animation-duration: 7s;
  animation-delay: 0.5s;
}
.particle:nth-child(6) {
  left: 90%;
  animation-duration: 13s;
  animation-delay: 4s;
  width: 5px;
  height: 5px;
  background: var(--gold-light);
}

@keyframes floatParticle {
  0% {
    bottom: -10px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    bottom: 110%;
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 26, 117, 0.15);
  border: 1px solid rgba(255, 26, 117, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-300);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge::before {
  content: "★";
  font-size: 14px;
  color: var(--gold);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

h1.hero-title .highlight {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  animation: fadeInUp 0.9s ease 0.8s both;
  position: relative;
  z-index: 2;
}

.hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-stat span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-pink);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 26, 117, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(255, 26, 117, 0.6);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--pink-500);
  color: var(--pink-300);
  background: var(--glass-bg);
  transform: translateY(-2px);
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: var(--gradient-pink);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 26, 117, 0.35);
}

.btn-visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 26, 117, 0.55);
  color: #fff;
}

.btn-visit::after {
  content: "→";
  font-size: 16px;
}

/* ============================================================
   7. SECTION TITLES
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 18px;
  background: rgba(255, 26, 117, 0.1);
  border: 1px solid rgba(255, 26, 117, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-400);
  -webkit-text-fill-color: unset !important;
}

.section-header h2.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header h2.section-title .accent {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header .section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   8. CASINO SHOWCASE (VITRINA)
   ============================================================ */
#casino-vitrina {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#casino-vitrina::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(255, 26, 117, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.casino-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: var(--transition);
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-pink);
  opacity: 0;
  transition: var(--transition);
}

.casino-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 26, 117, 0.4);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), var(--shadow-pink);
}

.casino-card:hover::before {
  opacity: 1;
}

/* Rank badge */
.casino-rank {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 26, 117, 0.4);
  z-index: 10;
}

/* Casino Logo */
.casino-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
  overflow: hidden;
}

.casino-logo-wrap img {
  /* max-width: 140px; */
  /* max-height: 80px; */
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: var(--transition);
}

.casino-card:hover .casino-logo-wrap img {
  transform: scale(1.05);
}

/* Casino Name */
.casino-name {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.casino-tagline {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

/* Divider */
.casino-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--glass-border),
    transparent
  );
  margin-bottom: 20px;
}

/* Bonus Info */
.casino-bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.bonus-item {
  background: rgba(255, 26, 117, 0.06);
  border: 1px solid rgba(255, 26, 117, 0.12);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.bonus-item .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.bonus-item .value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.bonus-item.highlight .value {
  color: var(--gold);
}

.bonus-item.full-width {
  grid-column: span 2;
}

.bonus-amount {
  font-size: 22px !important;
  color: var(--pink-400) !important;
}

/* Rating */
.casino-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-sm);
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.star {
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--transition);
}

.star.filled {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.star.half {
  color: var(--gold);
  opacity: 0.5;
}

.rating-score {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}

/* ============================================================
   9. CONTENT AREA TYPOGRAPHY
   ============================================================ */
#content-section {
  padding: 80px 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.content-body {
  /* Content typography styles */
}

/* Content Headings */
.content-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  border-image: var(--gradient-pink) 1;
  line-height: 1.3;
  position: relative;
}

.content-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 3px;
  background: var(--gradient-pink);
  border-radius: 2px;
}

.content-body h3 {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--pink-300);
  margin: 32px 0 12px;
  padding-left: 16px;
  border-left: 3px solid var(--pink-500);
  line-height: 1.3;
}

.content-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-body p:first-of-type {
  font-size: 17px;
}

/* Ordered List */
.content-body ol {
  counter-reset: list-counter;
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.content-body ol li {
  counter-increment: list-counter;
  position: relative;
  padding: 12px 16px 12px 64px;
  margin-bottom: 8px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.content-body ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--gradient-pink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 26, 117, 0.35);
}

.content-body ol li:hover {
  border-color: rgba(255, 26, 117, 0.3);
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

/* Unordered List */
.content-body ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.content-body ul li {
  position: relative;
  padding: 10px 16px 10px 44px;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.content-body ul li::before {
  content: "♦";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--pink-500);
  transition: var(--transition);
}

.content-body ul li:hover {
  background: var(--glass-bg);
  color: var(--text-primary);
}

.content-body ul li:hover::before {
  color: var(--gold);
  transform: translateY(-50%) scale(1.3);
}

/* Content Table */
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.content-body table thead tr {
  background: var(--gradient-pink);
}

.content-body table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-body table tbody tr {
  border-bottom: 1px solid rgba(255, 26, 117, 0.1);
  transition: var(--transition);
}

.content-body table tbody tr:last-child {
  border-bottom: none;
}

.content-body table tbody tr:nth-child(even) {
  background: rgba(255, 26, 117, 0.03);
}

.content-body table tbody tr:hover {
  background: rgba(255, 26, 117, 0.07);
}

.content-body table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  vertical-align: middle;
}

.content-body table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* Sidebar */
.content-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--pink-300);
}

.sidebar-casino-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.sidebar-casino-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-casino-item:hover {
  padding-left: 4px;
}

.sidebar-casino-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.sidebar-casino-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.sidebar-casino-info span {
  font-size: 12px;
  color: var(--pink-400);
  font-weight: 600;
}

/* ============================================================
   10. FAQ SECTION
   ============================================================ */
#faq-section {
  background: var(--bg-secondary);
  position: relative;
}

#faq-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--pink-700),
    transparent
  );
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 26, 117, 0.3);
}

.faq-item.open {
  border-color: rgba(255, 26, 117, 0.4);
  box-shadow: 0 4px 24px rgba(255, 26, 117, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--pink-300);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 26, 117, 0.1);
  border: 1px solid rgba(255, 26, 117, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--pink-400);
  transition: var(--transition);
  line-height: 1;
  -webkit-text-fill-color: unset !important;
}

.faq-item.open .faq-icon {
  background: var(--gradient-pink);
  border-color: transparent;
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 26, 117, 0.1);
  padding-top: 16px;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand .site-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Footer Top Casinos */
.footer-top-casinos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-casino-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.footer-casino-link:hover {
  border-color: rgba(255, 26, 117, 0.3);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.footer-casino-link img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg-secondary);
}

.footer-casino-link span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.footer-brand-mobile {
  display: none;
}

.footer-casino-link:hover span {
  color: var(--text-primary);
}

/* Footer Nav Columns */
.footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-nav-list a::before {
  content: "›";
  font-size: 18px;
  color: var(--pink-700);
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: var(--pink-300);
  padding-left: 4px;
}

.footer-nav-list a:hover::before {
  color: var(--pink-400);
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.footer-legal strong {
  display: block;
  color: var(--pink-600);
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.footer-badge::before {
  content: "🔞";
  font-size: 16px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-pink);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 26, 117, 0.4);
}

/* ============================================================
   12. LOGO PLACEHOLDERS (CSS-generated logos for demo)
   ============================================================ */
.logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  border-radius: 8px;
}

.logo-placeholder.lucky {
  background: linear-gradient(135deg, #4a0080, #9b00c8, #cc00ff);
  color: #ffd700;
}

.logo-placeholder.star {
  background: linear-gradient(135deg, #001a4d, #003399, #0055ff);
  color: #ff69b4;
}

.logo-placeholder.mega {
  background: linear-gradient(135deg, #004d00, #007700, #009900);
  color: #ff1a75;
}

/* ============================================================
   13. RESPONSIVE — MOBILE OPTIMISED
   ============================================================ */

/* ── Tablet landscape (≤1024px) ─────────────────────────────── */
@media (max-width: 1024px) {
  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2.section-title {
    font-size: 32px;
  }

  .footer-brand {
    display: grid;
  }

  .footer-brand-mobile {
    display: none;
  }
}

@media (max-width: 864px) {
  #main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ── Tablet portrait (≤768px) ───────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --radius-lg: 16px;
    --radius-xl: 24px;
  }

  .footer-brand {
    display: none;
  }

  .footer-brand-mobile {
    display: block;
  }

  .section {
    padding: 52px 0;
  }

  .site-logo .logo-text {
    font-size: 18px;
  }

  /* Hero */
  #hero-banner {
    min-height: auto;
    padding: 48px 0 52px;
  }

  h1.hero-title {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.2;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 18px;
  }

  .hero-text {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 15px;
  }

  /* Casino grid */
  .casino-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .casino-card {
    padding: 22px 18px 20px;
  }

  .casino-logo-wrap {
    height: 84px;
    margin-bottom: 14px;
  }

  .casino-name {
    font-size: 18px;
  }

  /* Content */
  .content-sidebar {
    grid-template-columns: 1fr;
  }

  .content-body h2 {
    font-size: 22px;
    margin-top: 36px;
  }

  .content-body h3 {
    font-size: 18px;
  }

  .content-body ol li,
  .content-body ul li {
    font-size: 14px;
  }

  /* Table — horizontal scroll on mobile */
  .content-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2.section-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .section-header .section-desc {
    font-size: 15px;
  }

  /* FAQ */
  .faq-question {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-answer-inner {
    font-size: 13px;
    padding: 0 18px 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bottom > div:last-child {
    align-items: flex-start;
  }

  #site-footer {
    padding-top: 48px;
  }

  main {
    min-width: 320px;
  }
}

/* ── Large phone (≤600px) ───────────────────────────────────── */
@media (max-width: 600px) {
  .casino-bonus-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .bonus-item {
    padding: 8px 10px;
  }

  .bonus-item .label {
    font-size: 10px;
  }

  .bonus-item .value {
    font-size: 13px;
  }

  .bonus-amount {
    font-size: 18px !important;
  }

  .btn-visit {
    font-size: 13px;
    padding: 11px 16px;
  }

  .faq-grid {
    gap: 12px;
  }

  .social-links {
    gap: 6px;
  }

  .social-link {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

/* ── Small phone (≤480px) ───────────────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 44px 0;
  }

  /* Header */
  .header-inner {
    height: 60px;
  }

  #mobile-nav {
    top: 60px;
  }

  .site-logo img {
    width: 100px;
    height: 60px;
  }

  /* Hero */
  #hero-banner {
    margin-top: 60px;
    padding: 40px 0 44px;
  }

  h1.hero-title {
    font-size: clamp(26px, 8vw, 34px);
  }

  .hero-text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-actions .btn {
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 12px;
  }

  /* Casino cards */
  .casino-card {
    padding: 18px 14px 16px;
    border-radius: 16px;
  }

  .casino-bonus-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bonus-item.full-width {
    grid-column: span 1;
  }

  .casino-rank {
    width: 30px;
    height: 30px;
    font-size: 11px;
    top: 12px;
    right: 12px;
  }

  /* Content */
  .content-body h2 {
    font-size: 20px;
  }

  .content-body h3 {
    font-size: 16px;
  }

  .content-body ol li {
    padding-left: 52px;
  }

  /* Section header */
  .section-header h2.section-title {
    font-size: 22px;
  }

  .section-label {
    font-size: 11px;
  }

  /* Footer */
  .footer-casino-link span {
    font-size: 12px;
  }

  .footer-legal {
    font-size: 11px;
  }

  .footer-nav-title {
    font-size: 13px;
  }

  .footer-nav-list a {
    font-size: 13px;
  }
}

/* ── Very small phone (≤360px) ──────────────────────────────── */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  h1.hero-title {
    font-size: 24px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .casino-name {
    font-size: 16px;
  }

  .btn-visit {
    font-size: 12px;
    padding: 10px 12px;
  }

  .faq-question {
    font-size: 13px;
  }
}

/* ── Reduced motion (accessibility) ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   14. ANIMATIONS & EFFECTS
   ============================================================ */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.shimmer {
  background: linear-gradient(
    90deg,
    var(--bg-card) 25%,
    var(--bg-card-hover) 50%,
    var(--bg-card) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Glow pulse animation for top casino card */
.casino-card.featured {
  border-color: rgba(255, 26, 117, 0.4);
  box-shadow: 0 0 0 0 rgba(255, 26, 117, 0.3);
  animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(255, 26, 117, 0.3),
      var(--shadow-card);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(255, 26, 117, 0.05),
      var(--shadow-card);
  }
}

.casino-card.featured::before {
  opacity: 1;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

/* ============================================================
   WORDPRESS NAV MENU (wp_nav_menu output)
   ============================================================ */
#main-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#mobile-nav .nav-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#main-nav .nav-menu > li,
#mobile-nav .nav-menu > li {
  margin: 0;
}

/* Активний пункт меню (WordPress додає клас .current-menu-item) */
#main-nav .current-menu-item > a {
  color: var(--pink-300);
}
#main-nav .current-menu-item > a::after {
  width: 60%;
}

/* CTA-пункт: якщо клас nav-cta призначено пункту меню (li) в адмінці */
#main-nav .nav-menu > li.nav-cta > a,
#main-nav .nav-menu > li.menu-item-cta > a {
  padding: 10px 10px !important;
  background: var(--gradient-pink) !important;
  color: var(--text-primary) !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(255, 26, 117, 0.4);
}
#main-nav .nav-menu > li.nav-cta > a::after,
#main-nav .nav-menu > li.menu-item-cta > a::after {
  display: none !important;
}

#mobile-nav .nav-menu > li.nav-cta > a,
#mobile-nav .nav-menu > li.menu-item-cta > a {
  padding: 10px 10px !important;
  background: var(--gradient-pink) !important;
  color: var(--text-primary) !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(255, 26, 117, 0.4);
}
#mobile-nav .nav-menu > li.nav-cta > a::after,
#mobile-nav .nav-menu > li.menu-item-cta > a::after {
  display: none !important;
}

span {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-casino-bonus {
  background: none !important;
  -webkit-text-fill-color: unset !important;
  color: var(--pink-400) !important;
}

html {
  overflow-x: hidden;
}
