/*
Theme Name: ImAFan Casino Affiliate
Theme URI: https://imafan.live
Description: High-conversion casino affiliate theme with dark luxe design, psychological triggers, and full funnel architecture. Built for automated content pipelines.
Version: 1.0.0
Author: ImAFan
Author URI: https://imafan.live
Text Domain: flavor777
Requires at least: 6.0
Requires PHP: 8.0
License: GPLv2 or later
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  /* Core palette */
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #161622;
  --bg-card-hover: #1c1c30;
  --bg-elevated: #1a1a2e;

  /* Accent colors (electric cyan + magenta pink) */
  --gold: #00E5FF;
  --gold-light: #80DEEA;
  --gold-dark: #0097A7;
  --gold-glow: rgba(0, 229, 255, 0.3);
  --purple: #D500F9;
  --purple-light: #E040FB;
  --purple-dark: #9C27B0;
  --neon-blue: #00D4FF;
  --neon-pink: #FF006E;
  --green-cta: #00E5FF;
  --green-cta-hover: #00B8D4;
  --red-hot: #FF3D3D;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0C0;
  --text-muted: #6B6B80;
  --text-gold: #00E5FF;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #00E5FF 0%, #00B8D4 50%, #00E5FF 100%);
  --gradient-purple: linear-gradient(135deg, #D500F9 0%, #9C27B0 100%);
  --gradient-hero: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.8) 60%, #0A0A0A 100%);
  --gradient-card: linear-gradient(145deg, #1a1a2e 0%, #161622 100%);
  --gradient-neon: linear-gradient(135deg, #D500F9, #00D4FF, #FF006E);

  /* Shadows */
  --shadow-gold: 0 0 20px rgba(0, 229, 255, 0.15), 0 0 60px rgba(0, 229, 255, 0.05);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 12px 48px rgba(213, 0, 249, 0.2), 0 0 20px rgba(0, 229, 255, 0.1);
  --shadow-cta: 0 4px 24px rgba(0, 229, 255, 0.3);
  --shadow-cta-hover: 0 6px 32px rgba(0, 229, 255, 0.5);

  /* Borders */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --border-gold: 1px solid rgba(0, 229, 255, 0.2);
  --border-purple: 1px solid rgba(213, 0, 249, 0.3);

  /* Typography */
  --font-display: 'Oswald', 'Bebas Neue', sans-serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Sizing */
  --container: 1280px;
  --container-wide: 1440px;
  --header-height: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--gold); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--gold-light); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.glow-text {
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5), 0 0 30px rgba(0, 229, 255, 0.2);
}

/* ============================================
   ANIMATED BACKGROUND PARTICLES
   ============================================ */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-particles::before,
.bg-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}

.bg-particles::before {
  width: 600px;
  height: 600px;
  background: var(--purple);
  top: -200px;
  right: -200px;
}

.bg-particles::after {
  width: 500px;
  height: 500px;
  background: var(--gold);
  bottom: -200px;
  left: -200px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  height: 56px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.site-logo .logo-icon {
  font-size: 2rem;
}

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

/* WordPress custom logo image sizing */
.site-logo img,
.custom-logo-link img,
.site-logo .custom-logo-link,
.site-logo .custom-logo-link img {
  max-height: 48px !important;
  width: auto !important;
  height: auto !important;
  max-width: 180px !important;
  object-fit: contain;
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .custom-logo-link img {
  max-height: 36px !important;
}

/* Navigation — Nuclear list-style reset */
.main-nav,
.main-nav ul,
.main-nav li,
.main-nav .menu,
.main-nav .menu li,
#mainNav,
#mainNav ul,
#mainNav li,
#mainNav .menu,
#mainNav .menu li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

.main-nav li::before,
.main-nav li::marker,
#mainNav li::before,
#mainNav li::marker,
.main-nav .menu li::before,
.main-nav .menu li::marker {
  display: none !important;
  content: none !important;
  content: '' !important;
}

.main-nav,
.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a,
.main-nav .menu li a {
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.current {
  color: var(--gold);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gradient-gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s ease;
  text-decoration: none;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  color: #000;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

/* ---- Animated Casino Atmosphere (default when no image/video) ---- */
.hero-bg-generated {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, rgba(213, 0, 249, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, #0f0f1a 0%, #0A0A0A 100%);
}

/* Floating gold particles */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float linear infinite;
  opacity: 0;
}

.hero-particle.gold {
  background: radial-gradient(circle, rgba(0, 229, 255, 0.8), rgba(0, 229, 255, 0) 70%);
}

.hero-particle.purple {
  background: radial-gradient(circle, rgba(213, 0, 249, 0.6), rgba(213, 0, 249, 0) 70%);
}

.hero-particle.white {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 70%);
}

@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

/* Casino card silhouettes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(0, 229, 255, 0.06);
  border-radius: 8px;
  animation: shape-drift 25s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 80px; height: 120px; top: 15%; left: 8%;
  animation-delay: 0s;
  transform: rotate(-15deg);
}
.hero-shape:nth-child(2) {
  width: 60px; height: 90px; top: 60%; left: 85%;
  animation-delay: -8s;
  transform: rotate(20deg);
  border-color: rgba(213, 0, 249, 0.08);
}
.hero-shape:nth-child(3) {
  width: 70px; height: 105px; top: 30%; left: 75%;
  animation-delay: -16s;
  transform: rotate(10deg);
}
.hero-shape:nth-child(4) {
  width: 50px; height: 75px; top: 70%; left: 15%;
  animation-delay: -4s;
  transform: rotate(-8deg);
  border-color: rgba(213, 0, 249, 0.06);
}
.hero-shape:nth-child(5) {
  width: 90px; height: 135px; top: 45%; left: 45%;
  animation-delay: -12s;
  transform: rotate(5deg);
  border-color: rgba(0, 229, 255, 0.04);
}

@keyframes shape-drift {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  25% { transform: translateY(-15px) rotate(calc(var(--r, 0deg) + 3deg)); }
  50% { transform: translateY(10px) rotate(calc(var(--r, 0deg) - 2deg)); }
  75% { transform: translateY(-8px) rotate(calc(var(--r, 0deg) + 1deg)); }
}

/* Neon glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite;
}

.hero-glow.gold-orb {
  width: 400px; height: 400px;
  background: rgba(0, 229, 255, 0.06);
  top: 20%; right: -100px;
}

.hero-glow.purple-orb {
  width: 500px; height: 500px;
  background: rgba(213, 0, 249, 0.08);
  bottom: -100px; left: -100px;
  animation-delay: -4s;
}

.hero-glow.blue-orb {
  width: 300px; height: 300px;
  background: rgba(0, 212, 255, 0.04);
  top: 50%; left: 30%;
  animation-delay: -6s;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Grid pattern overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(213, 0, 249, 0.2);
  border: var(--border-purple);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(213, 0, 249, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(213, 0, 249, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.5;
}

/* Primary CTA Button */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--gradient-gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-cta-hover);
  color: #000;
}

.cta-primary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 60px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-secondary:hover {
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
  color: var(--gold);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Countdown Timer */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: rgba(255, 61, 61, 0.1);
  border: 1px solid rgba(255, 61, 61, 0.3);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--red-hot);
  animation: pulse-countdown 1.5s ease-in-out infinite;
}

@keyframes pulse-countdown {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.countdown-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown-digits {
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-bar {
  background: var(--bg-secondary);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.ticker-item .flag { font-size: 1.2rem; }
.ticker-item .amount { color: var(--green-cta); font-weight: 700; }
.ticker-item .game { color: var(--gold); }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-2px);
}

.trust-badge .badge-icon {
  font-size: 1.3rem;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(213, 0, 249, 0.15);
  border: var(--border-purple);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.15);
  box-shadow: var(--shadow-card-hover);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
  text-transform: none;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   CASINO CARDS
   ============================================ */
.casinos-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

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

.casino-card {
  position: relative;
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.casino-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.casino-card.featured::before {
  content: '👑 EDITOR\'S CHOICE';
  position: absolute;
  top: 16px;
  right: -32px;
  transform: rotate(45deg);
  background: var(--gradient-gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 40px;
  letter-spacing: 0.1em;
}

.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(213, 0, 249, 0.3);
}

.casino-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.casino-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  overflow: hidden;
}

.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casino-info h3 {
  font-size: 1.15rem;
  text-transform: none;
  margin-bottom: 4px;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}

.casino-rating .stars {
  color: var(--gold);
}

.casino-rating .score {
  color: var(--text-secondary);
  font-weight: 600;
}

.casino-bonus {
  background: rgba(213, 0, 249, 0.1);
  border: var(--border-purple);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  text-align: center;
}

.casino-bonus .bonus-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.casino-bonus .bonus-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.casino-tag {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.casino-progress {
  margin-bottom: 16px;
}

.casino-progress .progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.casino-progress .progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.casino-progress .progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 4px;
  transition: width 1s ease;
}

.casino-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gradient-gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s ease;
  text-decoration: none;
}

.casino-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  color: #000;
}

.casino-cta.green {
  background: var(--green-cta);
}

.casino-cta.green:hover {
  background: var(--green-cta-hover);
}

.casino-wagering {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================
   LIVE WINNERS FEED
   ============================================ */
.winners-feed {
  padding: 60px 0;
}

.winners-list {
  max-height: 360px;
  overflow: hidden;
  position: relative;
}

.winners-list::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--bg-primary));
  pointer-events: none;
}

.winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  animation: slide-in 0.5s ease;
}

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

.winner-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.winner-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.winner-game {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.winner-amount {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-cta);
  font-weight: 700;
}

.winner-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-elevated);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card-meta .category {
  color: var(--purple-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card h3 {
  font-size: 1.2rem;
  text-transform: none;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card h3 a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.blog-card h3 a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  gap: 10px;
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-post-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: var(--bg-secondary);
}

.single-post-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: none;
  max-width: 800px;
  margin: 0 auto 20px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* ===== BLOG SECTION CARDS (H2 creates a new card) ===== */
.post-content .blog-section-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 32px 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.post-content .blog-section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(213,0,249,0.6), transparent);
}

/* H2 inside cards */
.post-content .blog-section-card h2 {
  margin: 0 0 6px !important;
  font-size: 1.25rem !important;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  text-transform: none;
}

.post-content .blog-section-card h2 .bc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.post-content .blog-section-card .bc-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 0 0 16px;
}

/* H3 inside cards */
.post-content .blog-section-card h3 {
  font-size: 1.05rem !important;
  margin: 24px 0 12px !important;
  color: var(--gold) !important;
  padding-left: 14px;
  border-left: 3px solid rgba(0,229,255,0.3);
  text-transform: none;
}

/* Paragraphs */
.post-content .blog-section-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 16px;
}

/* Links */
.post-content .blog-section-card a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.post-content .blog-section-card a:hover {
  color: #fff;
}

/* ===== PREMIUM TABLES ===== */
.post-content .blog-section-card table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.post-content .blog-section-card thead tr {
  background: linear-gradient(135deg, rgba(213,0,249,0.15), rgba(0,229,255,0.08));
}

.post-content .blog-section-card th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(0,229,255,0.12);
  font-weight: 700;
}

.post-content .blog-section-card td {
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.2s;
}

.post-content .blog-section-card tbody tr:hover td {
  background: rgba(0,229,255,0.03);
}

.post-content .blog-section-card tbody tr:last-child td {
  border-bottom: none;
}

/* Bold text in tables (casino names etc) */
.post-content .blog-section-card td strong,
.post-content .blog-section-card td b {
  color: #fff;
  font-weight: 700;
}

/* Table links */
.post-content .blog-section-card td a {
  text-decoration: none;
  font-weight: 700;
}

/* ===== LISTS (checkmark style) ===== */
.post-content .blog-section-card ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Short-item lists get 2-column grid (applied by JS) */
.post-content .blog-section-card ul.bc-grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}

.post-content .blog-section-card ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.post-content .blog-section-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #53FC18;
  font-weight: 700;
}

/* ===== AUTO CTA BUTTONS ===== */
.post-content .bc-cta-btn {
  display: block;
  text-align: center;
  margin: 20px auto;
  max-width: 420px;
}

.post-content .bc-cta-btn a {
  display: block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00E5FF, #00B8D4);
  color: #000 !important;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.25);
}

.post-content .bc-cta-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 229, 255, 0.4);
}

.post-content .blog-section-card ol {
  margin: 0 0 18px 24px;
  padding: 0;
  color: var(--text-secondary);
}

.post-content .blog-section-card ol li {
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 6px;
  padding-left: 4px;
}

.post-content .blog-section-card ol li::marker {
  color: var(--gold);
  font-weight: 700;
}

/* ===== BLOCKQUOTES ===== */
.post-content .blog-section-card blockquote {
  background: linear-gradient(135deg, rgba(213,0,249,0.1), rgba(0,212,255,0.05));
  border: 1px solid rgba(213,0,249,0.2);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 18px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: normal;
}

.post-content .blog-section-card blockquote strong {
  color: var(--gold);
}

/* ===== IMAGES INSIDE CARDS ===== */
.post-content .blog-section-card img {
  border-radius: var(--radius-md);
  margin: 16px 0;
  max-width: 100%;
}

/* ===== INTRO TEXT (before first H2 — no card) ===== */
.post-content > p:first-child,
.post-content > .blog-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ===== FALLBACK: non-wrapped elements ===== */
.post-content h2 {
  font-size: 1.8rem;
  margin: 48px 0 20px;
  text-transform: none;
  color: var(--gold);
}

.post-content h3 {
  font-size: 1.3rem;
  margin: 36px 0 16px;
  text-transform: none;
}

.post-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content ul, .post-content ol {
  margin: 0 0 20px 24px;
  color: var(--text-secondary);
}

.post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.post-content img {
  border-radius: var(--radius-md);
  margin: 32px 0;
}

.post-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--bg-card);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.post-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.post-content th, .post-content td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.post-content thead tr {
  background: linear-gradient(135deg, rgba(213,0,249,0.15), rgba(0,229,255,0.08));
}

.post-content th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  border-bottom: 1px solid rgba(0,229,255,0.12);
  font-weight: 700;
}

.post-content td {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.post-content td strong, .post-content td b {
  color: #fff;
}

.post-content tbody tr:hover td {
  background: rgba(0,229,255,0.03);
}

.post-content tbody tr:last-child td {
  border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .post-content .blog-section-card {
    padding: 20px 16px 16px;
    border-radius: 12px;
  }
  .post-content .blog-section-card ul {
    grid-template-columns: 1fr;
  }
  .post-content .blog-section-card table {
    font-size: 0.82rem;
  }
  .post-content .blog-section-card th,
  .post-content .blog-section-card td {
    padding: 10px 12px;
  }
}

/* FAQ Accordion in posts */
.faq-section {
  margin: 48px 0;
}

.faq-item {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: none;
  transition: color 0.3s ease;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA Box in posts */
.post-cta-box {
  margin: 40px 0;
  padding: 32px;
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  text-align: center;
}

.post-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.post-cta-box p {
  margin-bottom: 20px;
}

/* ============================================
   BONUSES PAGE
   ============================================ */
.bonuses-hero {
  padding: 120px 0 40px;
  text-align: center;
  background: var(--bg-secondary);
}

.bonuses-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.bonus-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.bonus-filter-btn {
  padding: 10px 24px;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: 50px;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bonus-filter-btn:hover,
.bonus-filter-btn.active {
  background: rgba(213, 0, 249, 0.2);
  border-color: var(--purple);
  color: var(--purple-light);
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.bonus-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  border-color: rgba(0, 229, 255, 0.15);
  box-shadow: var(--shadow-card-hover);
}

.bonus-card.editor-pick {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  position: relative;
}

.bonus-card.editor-pick::after {
  content: '👑 EDITOR\'S PICK';
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--gradient-gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.08em;
}

/* ============================================
   CASINO REVIEW SINGLE
   ============================================ */
.review-hero {
  padding: 120px 0 40px;
  background: var(--bg-secondary);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.review-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 40px 0;
}

.review-stat {
  padding: 20px;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
}

.review-stat .stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.review-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.pros, .cons {
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
}

.pros { border-top: 3px solid var(--green-cta); }
.cons { border-top: 3px solid var(--red-hot); }

.pros h3, .cons h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: none;
}

.pros li, .cons li {
  list-style: none;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
}

.pros li::before { content: '✅'; position: absolute; left: 0; }
.cons li::before { content: '⚠️'; position: absolute; left: 0; }

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.exit-popup-overlay.active {
  display: flex;
}

.exit-popup {
  background: var(--bg-elevated);
  border: var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-gold);
  animation: popup-in 0.4s ease;
}

@keyframes popup-in {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-subtle);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.exit-popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.exit-popup h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.exit-popup .bonus-highlight {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin: 16px 0;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: var(--border-gold);
  z-index: 999;
  display: none;
  text-align: center;
}

.sticky-cta-mobile .cta-primary {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 60px 0 30px;
  background: var(--bg-secondary);
  border-top: var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-about .site-logo img {
  max-height: 48px !important;
  width: auto !important;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 30px;
  border-top: var(--border-subtle);
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 16px;
}

.footer-disclaimer strong {
  color: var(--red-hot);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   DEMO GAMES GRID
   ============================================ */
.games-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

.games-grid .game-card,
a.game-card {
  position: relative;
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 229, 255, 0.2);
  color: inherit;
}

.game-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-card-play-overlay {
  opacity: 1;
}

.game-card-play-btn {
  padding: 12px 28px;
  background: var(--gradient-gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-card-body {
  padding: 16px 20px;
}

.game-card-body h3 {
  font-size: 1rem;
  text-transform: none;
  margin-bottom: 4px;
  line-height: 1.3;
}

.game-card-provider {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Single Demo Game Page */
.game-embed-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.game-embed-frame {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
}

.game-embed-frame img {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
}

.game-embed-frame iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.game-cta-bar {
  padding: 24px;
  background: var(--bg-elevated);
  border-top: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.game-cta-bar .game-cta-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.game-cta-bar .game-cta-text span {
  color: var(--gold);
}

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.game-info-item {
  padding: 16px;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
}

.game-info-item .info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.game-info-item .info-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .container [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .container [style*="grid-template-columns:repeat(3"],
  .container [style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
  }
  .main-nav { display: none; }
  .menu-toggle { display: block; }

  .main-nav.active,
  #mainNav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: var(--border-subtle);
    list-style: none !important;
  }

  .main-nav.active ul,
  .main-nav.active .menu,
  #mainNav.active ul,
  #mainNav.active .menu {
    flex-direction: column;
    width: 100%;
    list-style: none !important;
    margin: 0;
    padding: 0;
  }

  .main-nav.active a,
  .main-nav.active li a,
  .main-nav.active .menu li a {
    padding: 14px 20px;
    border-bottom: var(--border-subtle);
    width: 100%;
    display: block;
  }

  .sticky-cta-mobile {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

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

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

  .bonus-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .trust-badges {
    gap: 12px;
  }

  .trust-badge {
    font-size: 0.75rem;
    padding: 8px 14px;
  }

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

  .review-header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .cta-primary {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .section-padding {
    padding: 50px 0;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Blog post content images */
.wp-block-image img,
.post-content .wp-block-image img {
  border-radius: var(--radius-md);
}

/* WordPress specific overrides */
.wp-block-separator {
  border-color: rgba(255, 255, 255, 0.06);
  margin: 40px 0;
}

.alignwide {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
