/*
Theme Name: Slots US
Theme URI: https://slots.us.com
Author: SLOTS.US Team
Description: Premium Vegas neon theme for America's #1 online slots & casino guide
Version: 2.0.0
Text Domain: slots-us
*/

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Core Colors */
  --pink: #ff2d78;
  --cyan: #00d4ff;
  --gold: #ffd700;
  --danger: #ff4444;
  --green: #00e676;
  --yellow: #ffab00;

  /* Backgrounds */
  --bg-darkest: #0a0a1a;
  --bg-card: #0f0f24;
  --bg-hover: #141432;
  --bg-footer: #050510;
  --bg-card-alpha: rgba(15, 15, 36, 0.95);

  /* Text */
  --text-primary: #e0e0f0;
  --text-muted: #8888aa;
  --text-body: #c5c5e0;

  /* Border */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* Radius */
  --radius: 12px;
  --radius-pill: 999px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  /* Glows */
  --glow-pink: 0 0 20px rgba(255, 45, 120, 0.4);
  --glow-blue: 0 0 20px rgba(0, 212, 255, 0.3);
  --glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --glow-pink-strong: 0 0 30px rgba(255, 45, 120, 0.6), 0 0 60px rgba(255, 45, 120, 0.2);
  --glow-blue-strong: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.15);
  --glow-gold-strong: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.15);

  /* Gradients */
  --gradient-pink-gold: linear-gradient(135deg, var(--pink), var(--gold));
  --gradient-pink-blue: linear-gradient(135deg, var(--pink), var(--cyan));
  --gradient-blue-pink: linear-gradient(135deg, var(--cyan), var(--pink));
  --gradient-dark: linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-card) 100%);
  --gradient-header: linear-gradient(180deg, rgba(10,10,26,0.98) 0%, rgba(10,10,26,0.92) 100%);
  --gradient-animated: linear-gradient(90deg, var(--pink), var(--cyan), var(--gold), var(--pink));

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-btn: 0 4px 15px rgba(255, 45, 120, 0.3);

  /* Fonts */
  --font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1280px;
  --container-wide: 1440px;
  --header-height: 72px;
  --sidebar-width: 340px;
  --gap: 24px;
  --gap-sm: 16px;
  --gap-lg: 40px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-darkest);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--pink);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  outline: none;
  transition: border-color var(--transition);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--cyan);
  box-shadow: var(--glow-blue);
}

::selection {
  background: rgba(255, 45, 120, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-hover);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gap);
}

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

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

h5 {
  font-size: 1.3rem;
}

h6 {
  font-size: 1.1rem;
  color: var(--text-muted);
}

p {
  margin-bottom: 1rem;
  color: var(--text-body);
  line-height: 1.8;
}

strong, b {
  color: var(--text-primary);
  font-weight: 600;
}

em, i {
  font-style: italic;
}

small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   4. HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gradient-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.site-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: var(--glow-pink);
  transition: text-shadow var(--transition);
}

.site-logo:hover {
  color: #fff;
  text-shadow: var(--glow-pink-strong);
}

.site-logo span {
  color: var(--pink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  transition: width var(--transition);
}

.main-nav a:hover {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.05);
}

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

.main-nav a.active {
  color: var(--cyan);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gradient-pink-gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-btn);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 45, 120, 0.5);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
}

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

.hamburger span:nth-child(1) {
  margin-bottom: 6px;
}

.hamburger span:nth-child(3) {
  margin-top: 6px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(10, 10, 26, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 24px;
  gap: 8px;
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 24px;
  width: 100%;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav a:hover {
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(30px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
}

.search-overlay.active {
  display: flex;
}

.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}

.search-overlay input[type="search"] {
  width: 100%;
  padding: 20px 24px;
  font-size: 1.5rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.search-overlay input[type="search"]:focus {
  border-color: var(--cyan);
  box-shadow: var(--glow-blue);
}

.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.search-close:hover {
  color: var(--pink);
}

/* Header Animated Border */
.header-border {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-animated);
  background-size: 300% 100%;
  animation: gradientMove 4s linear infinite;
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 45, 120, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  background: var(--gradient-pink-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta .btn-primary {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  text-align: center;
  transition: all var(--transition);
}

.hero-stat:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--glow-blue);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--cyan);
  display: block;
  letter-spacing: 0.02em;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 3s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 0.5s; }
.hero-particles span:nth-child(3) { left: 50%; top: 15%; animation-delay: 1s; }
.hero-particles span:nth-child(4) { left: 70%; top: 45%; animation-delay: 1.5s; }
.hero-particles span:nth-child(5) { left: 85%; top: 70%; animation-delay: 2s; }
.hero-particles span:nth-child(6) { left: 40%; top: 80%; animation-delay: 0.8s; }
.hero-particles span:nth-child(7) { left: 90%; top: 25%; animation-delay: 1.3s; }
.hero-particles span:nth-child(8) { left: 15%; top: 50%; animation-delay: 2.2s; }

/* ============================================================
   6. CASINO CARDS
   ============================================================ */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.casino-card {
  background: var(--bg-card-alpha);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.casino-card:hover {
  border-color: rgba(255, 45, 120, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover), 0 0 30px rgba(255, 45, 120, 0.1);
}

.casino-rank {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 45, 120, 0.1);
  border: 2px solid var(--pink);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--pink);
  flex-shrink: 0;
  box-shadow: var(--glow-pink);
}

.casino-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.casino-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

.casino-stars {
  display: flex;
  gap: 2px;
}

.casino-stars .star {
  color: var(--gold);
  font-size: 0.95rem;
}

.casino-stars .star.empty {
  color: var(--text-muted);
  opacity: 0.3;
}

.casino-rating-score {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-left: 4px;
}

.casino-bonus {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

.casino-bonus-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.casino-features li {
  font-size: 0.85rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.casino-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255, 45, 120, 0.5);
}

.casino-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  min-width: 160px;
}

.casino-visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 28px;
  background: var(--gradient-pink-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  box-shadow: var(--shadow-btn);
}

.casino-visit-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 45, 120, 0.5);
}

.casino-review-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.casino-review-link:hover {
  color: var(--cyan);
}

.casino-tc {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
  text-align: center;
}

/* ============================================================
   7. BONUS CARDS
   ============================================================ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--gap);
}

.bonus-card {
  background: var(--bg-card-alpha);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.bonus-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover), var(--glow-gold);
}

.bonus-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 45, 120, 0.15);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 45, 120, 0.3);
  animation: neonPulse 2s ease-in-out infinite;
}

.bonus-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  text-shadow: var(--glow-gold);
  margin: 16px 0 4px;
  letter-spacing: 0.02em;
}

.bonus-type {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.bonus-wagering {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.bonus-countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.bonus-countdown-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  text-align: center;
  min-width: 56px;
}

.bonus-countdown-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cyan);
}

.bonus-countdown-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bonus-claim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  background: var(--gradient-pink-gold);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  box-shadow: var(--shadow-btn);
}

.bonus-claim-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 45, 120, 0.5);
  animation: countdownPulse 1s ease-in-out infinite;
}

/* ============================================================
   8. GAME CARDS
   ============================================================ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap);
}

.game-card {
  background: var(--bg-card-alpha);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.game-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover), var(--glow-blue);
}

.game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-hover);
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.game-card:hover .game-thumb img {
  transform: scale(1.08);
}

.game-rtp {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.game-rtp.high {
  background: rgba(0, 230, 118, 0.2);
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.game-rtp.medium {
  background: rgba(255, 171, 0, 0.2);
  color: var(--yellow);
  border: 1px solid rgba(255, 171, 0, 0.3);
}

.game-rtp.low {
  background: rgba(255, 68, 68, 0.2);
  color: var(--danger);
  border: 1px solid rgba(255, 68, 68, 0.3);
}

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

.game-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.game-provider {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.game-volatility {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.game-volatility-dots {
  display: flex;
  gap: 3px;
}

.game-volatility-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.game-volatility.low .game-volatility-dots span:nth-child(1) {
  background: var(--green);
  box-shadow: 0 0 6px rgba(0, 230, 118, 0.5);
}

.game-volatility.medium .game-volatility-dots span:nth-child(1),
.game-volatility.medium .game-volatility-dots span:nth-child(2) {
  background: var(--yellow);
  box-shadow: 0 0 6px rgba(255, 171, 0, 0.5);
}

.game-volatility.high .game-volatility-dots span:nth-child(1),
.game-volatility.high .game-volatility-dots span:nth-child(2),
.game-volatility.high .game-volatility-dots span:nth-child(3) {
  background: var(--danger);
  box-shadow: 0 0 6px rgba(255, 68, 68, 0.5);
}

.game-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
}

.game-play-btn:hover {
  background: var(--cyan);
  color: var(--bg-darkest);
  box-shadow: var(--glow-blue);
}

/* ============================================================
   9. TRUST SECTION
   ============================================================ */
.trust-section {
  padding: 80px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.trust-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

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

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

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

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 50%;
  color: var(--cyan);
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.trust-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   10. BLOG / POST CARDS
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--gap);
}

.post-card {
  background: var(--bg-card-alpha);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

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

.post-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-hover);
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-card:hover .post-thumb img {
  transform: scale(1.06);
}

.post-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 45, 120, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

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

.post-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color var(--transition);
}

.post-card:hover .post-title {
  color: var(--cyan);
}

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

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

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   11. ARTICLE / SINGLE POST CONTENT
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: var(--gap-lg);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 40px var(--gap);
}

.article-content {
  max-width: 100%;
  overflow-wrap: break-word;
}

.article-content > * + * {
  margin-top: 1.5rem;
}

.article-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-top: 3rem;
  padding-bottom: 12px;
  border-left: 4px solid var(--pink);
  padding-left: 16px;
}

.article-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: 2.5rem;
  border-left: 3px solid var(--cyan);
  padding-left: 14px;
}

.article-content h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-top: 2rem;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
}

.article-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 255, 0.3);
  text-underline-offset: 3px;
  transition: all var(--transition);
}

.article-content a:hover {
  color: var(--pink);
  text-decoration-color: var(--pink);
}

.article-content ul,
.article-content ol {
  padding-left: 0;
  margin: 1.5rem 0;
}

.article-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-body);
  line-height: 1.7;
}

.article-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 45, 120, 0.5);
}

.article-content ol {
  counter-reset: article-counter;
}

.article-content ol li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px;
  color: var(--text-body);
  line-height: 1.7;
  counter-increment: article-counter;
}

.article-content ol li::before {
  content: counter(article-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.3);
  border-radius: 50%;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Article Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-content thead {
  background: var(--gradient-pink-blue);
}

.article-content th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-content td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  font-size: 0.95rem;
}

.article-content tbody tr {
  background: var(--bg-card);
  transition: background var(--transition);
}

.article-content tbody tr:hover {
  background: var(--bg-hover);
}

.article-content tbody tr:nth-child(even) {
  background: rgba(20, 20, 50, 0.5);
}

/* Blockquotes */
.article-content blockquote {
  border-left: 4px solid var(--gold);
  background: rgba(255, 215, 0, 0.04);
  padding: 24px 28px;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-primary);
}

.article-content blockquote p {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--text-primary);
}

/* Images */
.article-content img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  margin: 2rem auto;
}

.article-content figure {
  margin: 2rem 0;
}

.article-content figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Code */
.article-content code {
  background: var(--bg-card);
  color: var(--cyan);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 0.9em;
}

.article-content pre {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  overflow-x: auto;
  margin: 2rem 0;
}

.article-content pre code {
  background: none;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Table of Contents */
.toc {
  background: var(--bg-card-alpha);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.toc-sticky {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.toc-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.toc-title .toc-toggle {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.toc.collapsed .toc-toggle {
  transform: rotate(-90deg);
}

.toc-list {
  counter-reset: toc-counter;
}

.toc.collapsed .toc-list {
  display: none;
}

.toc-list li {
  counter-increment: toc-counter;
  margin-bottom: 8px;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.toc-list a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--pink);
  min-width: 24px;
}

.toc-list a:hover {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.05);
}

.toc-list a.active {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
}

/* ============================================================
   12. SIDEBAR
   ============================================================ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

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

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.sidebar-widget-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--pink);
}

/* Mini Casino List */
.mini-casino-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-casino-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mini-casino-item:hover {
  background: var(--bg-hover);
}

.mini-casino-rank {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 45, 120, 0.1);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
  flex-shrink: 0;
}

.mini-casino-name {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.mini-casino-bonus {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

/* CTA Widget */
.sidebar-cta {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  border-color: rgba(255, 45, 120, 0.2);
  text-align: center;
}

.sidebar-cta .btn-primary {
  width: 100%;
  margin-top: 16px;
}

/* ============================================================
   13. CTA SECTIONS
   ============================================================ */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.08) 0%, rgba(0, 212, 255, 0.06) 50%, rgba(255, 215, 0, 0.04) 100%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  background: var(--gradient-pink-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.1) 0%, rgba(0, 212, 255, 0.08) 100%);
  border: 1px solid rgba(255, 45, 120, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-animated);
  background-size: 300% 100%;
  animation: gradientMove 4s linear infinite;
}

.cta-box h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-footer);
  position: relative;
  padding: 60px 0 0;
  margin-top: 80px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-animated);
  background-size: 300% 100%;
  animation: gradientMove 4s linear infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

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

/* Responsible Gambling Footer */
.footer-rg {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 32px 0;
  text-align: center;
}

.footer-rg-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.footer-21-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--danger);
  margin-bottom: 12px;
}

.footer-rg p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.footer-rg-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-rg-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px dotted var(--text-muted);
  transition: all var(--transition);
}

.footer-rg-links a:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

/* Payment Icons */
.footer-payments {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer-payments img {
  height: 28px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.footer-payments img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 32px;
}

.footer-bottom-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

/* ============================================================
   15. RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --gap: 20px;
    --sidebar-width: 300px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: 2;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .casino-card-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-start;
    min-width: auto;
  }

  .casino-visit-btn {
    width: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --gap: 16px;
    --header-height: 60px;
  }

  .hamburger {
    display: flex;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat {
    padding: 14px 20px;
    flex: 1;
    min-width: 120px;
  }

  .casino-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
  }

  .casino-rank {
    margin: 0 auto;
  }

  .casino-card-body {
    align-items: center;
  }

  .casino-features {
    justify-content: center;
  }

  .casino-card-actions {
    grid-column: auto;
    width: 100%;
  }

  .casino-visit-btn {
    width: 100%;
  }

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

  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--gap);
  }

  .cta-box {
    padding: 32px 20px;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .bonus-amount {
    font-size: 2.2rem;
  }

  .casino-name {
    font-size: 1.3rem;
  }

  .casino-bonus {
    font-size: 1.1rem;
  }

  .article-content h2 {
    font-size: 1.5rem;
  }

  .article-content h3 {
    font-size: 1.3rem;
  }

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

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

  .hero-stat {
    width: 100%;
  }
}

/* ============================================================
   16. ANIMATIONS (@keyframes)
   ============================================================ */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 45, 120, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.6), 0 0 40px rgba(255, 45, 120, 0.2);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes countdownPulse {
  0%, 100% {
    box-shadow: var(--shadow-btn);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 45, 120, 0.6), 0 0 60px rgba(255, 45, 120, 0.2);
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scale(1) translateY(-30px);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ============================================================
   17. UTILITY CLASSES
   ============================================================ */
.text-gradient {
  background: var(--gradient-pink-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.neon-border {
  border: 1px solid rgba(255, 45, 120, 0.3);
  box-shadow: var(--glow-pink), inset 0 0 20px rgba(255, 45, 120, 0.05);
}

.neon-border-blue {
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: var(--glow-blue), inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-pink {
  background: rgba(255, 45, 120, 0.15);
  color: var(--pink);
  border: 1px solid rgba(255, 45, 120, 0.3);
}

.badge-blue {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.badge-gold {
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.badge-green {
  background: rgba(0, 230, 118, 0.15);
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.badge-red {
  background: rgba(255, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(255, 68, 68, 0.3);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-pink-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  box-shadow: var(--shadow-btn);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 45, 120, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--cyan);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--cyan);
  color: var(--bg-darkest);
  box-shadow: var(--glow-blue);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), #ffaa00);
  color: #1a1a00;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  color: #1a1a00;
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-strong);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* Shimmer Effect */
.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* Text utilities */
.text-pink { color: var(--pink); }
.text-cyan { color: var(--cyan); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }
.pt-0 { padding-top: 0; }
.pt-4 { padding-top: 40px; }
.pb-4 { padding-bottom: 40px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }
.py-5 { padding-top: 60px; padding-bottom: 60px; }

/* Section spacing */
.section {
  padding: 80px 0;
}

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

.section-header h2 {
  margin-bottom: 12px;
}

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

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.divider-neon {
  height: 2px;
  background: var(--gradient-animated);
  background-size: 300% 100%;
  animation: gradientMove 4s linear infinite;
  margin: 40px 0;
}

/* ============================================================
   18. STATE GUIDE SECTION
   ============================================================ */
.state-guide {
  padding: 80px 0;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--gap-sm);
}

.state-card {
  background: var(--bg-card-alpha);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}

.state-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.state-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.state-status {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.state-status.legal {
  background: rgba(0, 230, 118, 0.15);
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.state-status.pending {
  background: rgba(255, 171, 0, 0.15);
  color: var(--yellow);
  border: 1px solid rgba(255, 171, 0, 0.3);
}

.state-status.no {
  background: rgba(136, 136, 170, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(136, 136, 170, 0.2);
}

/* ============================================================
   19. RESPONSIBLE GAMBLING
   ============================================================ */
.rg-section {
  background: var(--bg-card-alpha);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 60px 0;
}

.rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 3px solid var(--danger);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--danger);
  margin-bottom: 20px;
}

.rg-section h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.rg-section p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 0.95rem;
}

.rg-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.rg-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.rg-links a:hover {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.3);
}

/* ============================================================
   20. BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumbs-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.breadcrumbs a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.breadcrumbs .separator {
  color: rgba(136, 136, 170, 0.4);
  margin: 0 4px;
}

.breadcrumbs .current {
  color: var(--text-primary);
}

/* ============================================================
   21. AUTHOR BOX
   ============================================================ */
.author-box {
  background: var(--bg-card-alpha);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 40px 0;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.05);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: var(--glow-blue);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.author-title {
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: 10px;
}

.author-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.author-social {
  display: flex;
  gap: 10px;
}

.author-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.author-social a:hover {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--glow-blue);
}

@media (max-width: 768px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-social {
    justify-content: center;
  }
}

/* ============================================================
   22. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: var(--glow-pink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #ff1a6a;
  box-shadow: var(--glow-pink-strong);
  transform: translateY(-3px);
}

/* ============================================================
   23. ADDITIONAL COMPONENTS
   ============================================================ */

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
}

.comparison-table thead {
  background: var(--gradient-pink-blue);
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  background: var(--bg-card);
}

.comparison-table tbody tr:hover td {
  background: var(--bg-hover);
}

.comparison-table .highlight-cell {
  color: var(--gold);
  font-weight: 700;
}

.comparison-table .check {
  color: var(--green);
}

.comparison-table .cross {
  color: var(--danger);
}

/* FAQ Accordion */
.faq-section {
  margin: 40px 0;
}

.faq-item {
  background: var(--bg-card-alpha);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item.active {
  border-color: rgba(0, 212, 255, 0.2);
}

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

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

.faq-toggle {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Pros/Cons Box */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin: 32px 0;
}

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

.pros-box {
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-top: 3px solid var(--green);
}

.cons-box {
  border: 1px solid rgba(255, 68, 68, 0.2);
  border-top: 3px solid var(--danger);
}

.pros-box h4,
.cons-box h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-left: none;
  padding-left: 0;
}

.pros-box h4 { color: var(--green); }
.cons-box h4 { color: var(--danger); }

.pros-box li {
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-body);
  position: relative;
}

.pros-box li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.cons-box li {
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-body);
  position: relative;
}

.cons-box li::before {
  content: '-';
  position: absolute;
  left: 2px;
  color: var(--danger);
  font-weight: 700;
}

@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

/* Rating Bar */
.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.rating-bar-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 100px;
}

.rating-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

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

.rating-bar-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 32px;
  text-align: right;
}

/* Notification Banner */
.notification-banner {
  background: linear-gradient(90deg, rgba(255, 45, 120, 0.1) 0%, rgba(0, 212, 255, 0.08) 100%);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-body);
}

.notification-banner a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.notification-banner a:hover {
  color: var(--pink);
}

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

.skeleton-text {
  height: 16px;
  margin-bottom: 10px;
}

.skeleton-title {
  height: 28px;
  width: 60%;
  margin-bottom: 14px;
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 16/9;
}

/* Tooltip */
.tooltip {
  position: relative;
  cursor: help;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  color: var(--text-body);
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
  z-index: 100;
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 48px 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.pagination a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-blue);
}

.pagination .current {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}

.pagination .dots {
  background: transparent;
  border: none;
  color: var(--text-muted);
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.tag-cloud a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.05);
}

/* WordPress Core Overrides */
.wp-block-image {
  margin: 2rem 0;
}

.wp-block-image img {
  border-radius: var(--radius);
}

.alignwide {
  max-width: calc(var(--container-max) + 100px);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal;
}

/* WP Navigation */
.wp-block-navigation a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.wp-block-navigation a:hover {
  color: var(--cyan);
}

/* Search Form */
.search-form {
  display: flex;
  gap: 0;
}

.search-form input[type="search"] {
  flex: 1;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border-right: none;
}

.search-form button {
  padding: 10px 20px;
  background: var(--pink);
  color: #fff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  transition: background var(--transition);
}

.search-form button:hover {
  background: #ff1a6a;
}

/* Comments */
.comments-area {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comment {
  background: var(--bg-card-alpha);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.comment-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.comment-author-name {
  font-weight: 600;
  color: var(--text-primary);
}

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

.comment-content {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.comment-reply-link {
  font-size: 0.82rem;
  color: var(--cyan);
  margin-top: 8px;
  display: inline-block;
}

/* Comment Form */
.comment-form {
  margin-top: 32px;
}

.comment-form label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 500;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  margin-bottom: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: var(--glow-blue);
}

.comment-form .submit {
  display: inline-flex;
  padding: 12px 28px;
  background: var(--gradient-pink-gold);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  border: none;
}

.comment-form .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 45, 120, 0.5);
}

/* Print styles */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  .site-header,
  .site-footer,
  .sidebar,
  .back-to-top,
  .header-border,
  .cta-section,
  .cta-box {
    display: none;
  }

  .article-content a {
    color: #000;
    text-decoration: underline;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }
}
