/*
Theme Name: Maxims Casino
Theme URI: https://maximscasino.com
Author: MaximsCasino Team
Description: Ultra-luxury black and gold theme for the premier VIP online casino guide
Version: 2.0.0
Text Domain: maxims-casino
*/

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Core Colors */
  --gold: #c9a84c;
  --gold-dark: #8b7430;
  --gold-light: #e8d5a3;
  --gold-bright: #d4b65a;
  --danger: #c0392b;
  --green: #2ecc71;
  --blue: #3498db;

  /* Backgrounds */
  --bg-darkest: #0a0908;
  --bg-card: #141210;
  --bg-hover: #1a1816;
  --bg-footer: #060504;
  --bg-card-alpha: rgba(20, 18, 16, 0.95);

  /* Text */
  --text-primary: #f0ece4;
  --text-muted: #888070;
  --text-body: #c8c0b0;

  /* Border */
  --border: rgba(201, 168, 76, 0.08);
  --border-hover: rgba(201, 168, 76, 0.18);

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

  /* Glows */
  --glow-gold: 0 0 15px rgba(201, 168, 76, 0.18);
  --glow-gold-strong: 0 0 20px rgba(201, 168, 76, 0.3), 0 0 40px rgba(201, 168, 76, 0.09);

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

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.7);
  --shadow-btn: 0 4px 12px rgba(201, 168, 76, 0.15);

  /* Fonts */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Lato', -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(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (forced-colors: active) {
  .card, .fp-tool-card, .fp-casino-row, .fp-featured {
    border: 1px solid ButtonText;
  }
  a { color: LinkText; }
}

.card-meta span, .fp-pill, .fp-hero-badge {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

a:hover {
  color: var(--gold-light);
}

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(--gold);
  box-shadow: var(--glow-gold);
}

::selection {
  background: rgba(201, 168, 76, 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(--gold-dark); }

.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.01em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

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: 700; }
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, 9, 8, 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: 1.6rem;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  transition: opacity var(--transition);
  font-weight: 600;
}

.site-logo:hover { color: var(--text-primary); opacity: 0.85; }
.site-logo span { color: var(--gold); }

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

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

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

.main-nav a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.main-nav a:hover::after { width: 60%; }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after { width: 60%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-family: var(--font-body);
}

.header-cta:hover {
  color: var(--bg-darkest);
  background: var(--gold);
  border-color: var(--gold);
}

/* 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: 1px;
  background: var(--gold);
  border-radius: 1px;
  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, 9, 8, 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.1rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  padding: 14px 24px;
  width: 100%;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav a:hover {
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 9, 8, 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: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  color: var(--text-primary);
  transition: border-color var(--transition);
  font-family: var(--font-heading);
}

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

.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(--gold); }

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

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  text-align: center;
  min-height: 60vh;
  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(201, 168, 76, 0.04) 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(139, 116, 48, 0.03) 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(2.2rem, 4.5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
  font-weight: 400;
}

.hero h1 .gold-text {
  color: var(--gold);
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
  line-height: 1.8;
}

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

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

.hero-stat {
  background: rgba(201, 168, 76, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 36px;
  text-align: center;
  transition: all var(--transition);
}

.hero-stat:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

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

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

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

.hero-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 4s 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.7s; }
.hero-particles span:nth-child(3) { left: 50%; top: 15%; animation-delay: 1.4s; }
.hero-particles span:nth-child(4) { left: 70%; top: 45%; animation-delay: 2.1s; }
.hero-particles span:nth-child(5) { left: 85%; top: 70%; animation-delay: 2.8s; }
.hero-particles span:nth-child(6) { left: 40%; top: 80%; animation-delay: 1s; }
.hero-particles span:nth-child(7) { left: 90%; top: 25%; animation-delay: 1.8s; }
.hero-particles span:nth-child(8) { left: 15%; top: 50%; animation-delay: 3s; }

/* ============================================================
   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(201, 168, 76, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.casino-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.casino-rank {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

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

.casino-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  font-weight: 600;
}

.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.1rem; font-weight: 600; color: var(--gold); }
.casino-bonus-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; }

.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: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.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: 10px 22px;
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-family: var(--font-body);
}

.casino-visit-btn:hover {
  color: var(--bg-darkest);
  background: var(--gold);
  border-color: var(--gold);
}

.casino-review-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.06em;
}

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

.casino-tc {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.6;
  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(201, 168, 76, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.bonus-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 168, 76, 0.2);
  animation: goldPulse 3s ease-in-out infinite;
}

.bonus-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-primary);
  margin: 16px 0 4px;
  font-weight: 600;
}

.bonus-type { font-size: 1.05rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.bonus-wagering { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }

.bonus-claim-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-family: var(--font-body);
}

.bonus-claim-btn:hover {
  color: var(--bg-darkest);
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   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(201, 168, 76, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.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.06); }

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

.game-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
}

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

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

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

.trust-card {
  background: rgba(201, 168, 76, 0.02);
  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: 1px;
  background: var(--gradient-gold);
  opacity: 0.3;
  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: 0.7; }

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

.trust-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.trust-desc {
  font-size: 0.88rem;
  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.04); }

.post-category {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(201, 168, 76, 0.9);
  color: var(--bg-darkest);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

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

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

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

.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.78rem;
  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.5rem, 2.5vw, 2rem);
  margin-top: 2.5rem;
  padding-bottom: 10px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

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

.article-content h4 {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  margin-top: 1.5rem;
  border-left: 1px solid var(--gold-light);
  padding-left: 12px;
}

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

.article-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 76, 0.3);
  text-underline-offset: 3px;
  transition: all var(--transition);
}

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

.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: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.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: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
}

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

.article-content thead { background: rgba(201, 168, 76, 0.08); }

.article-content th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
}

.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); }

/* Blockquotes */
.article-content blockquote {
  border-left: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.03);
  padding: 24px 28px;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.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;
}

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

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

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

.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.88rem;
  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: 0.95rem;
  color: var(--gold);
  min-width: 24px;
}

.toc-list a:hover { color: var(--gold); background: rgba(201, 168, 76, 0.04); }
.toc-list a.active { color: var(--gold); background: rgba(201, 168, 76, 0.06); }

/* ============================================================
   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.1rem;
  color: var(--text-primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-weight: 600;
}

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

/* CTA Widget */
.sidebar-cta {
  background: rgba(201, 168, 76, 0.03);
  border-color: rgba(201, 168, 76, 0.12);
  text-align: center;
}

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

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, rgba(139, 116, 48, 0.03) 50%, transparent 100%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold);
  margin-bottom: 16px;
}

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

.cta-box {
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  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: 1px;
  background: var(--gradient-animated);
  background-size: 300% 100%;
  animation: gradientMove 6s linear infinite;
  opacity: 0.5;
}

.cta-box h3 {
  font-size: 1.8rem;
  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: 48px 0 0;
  margin-top: 64px;
}

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

.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.1rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

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

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

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

.footer-about p {
  font-size: 0.88rem;
  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: 1px solid var(--danger);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  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;
}

/* 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.78rem; color: var(--text-muted); }

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@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; }
}

@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; }
  .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; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .hero-stats { flex-direction: column; align-items: center; }
  .hero-stat { width: 100%; }
}

/* ============================================================
   16. ANIMATIONS
   ============================================================ */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(201, 168, 76, 0.1); }
  50% { box-shadow: 0 0 12px rgba(201, 168, 76, 0.25); }
}

@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(-6px); }
}

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

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

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

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

.gold-border {
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.06);
}

.btn-primary {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-primary:hover {
  color: var(--bg-darkest);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-secondary:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.3);
}

.btn-gold {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--bg-darkest);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-darkest);
  box-shadow: var(--glow-gold);
}

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

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

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

.pros-list h4, .cons-list h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.pros-list li, .cons-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap);
}

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

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

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

.card-image { display: block; aspect-ratio: 16/9; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.card:hover .card-image img { transform: scale(1.04); }

.card-body { padding: 20px; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
.card-body h3 a { color: var(--text-primary); }
.card-body h3 a:hover { color: var(--gold); }
.card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; }
.card-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 12px; }

/* Section */
.section { padding: 3rem 0; }

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
}

.filter-btn:hover, .filter-btn.is-active {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

/* Star rating */
.star-rating { display: inline-flex; align-items: center; gap: 4px; }
.star-rating .star { color: var(--gold); font-size: 0.9rem; }
.star-rating .star.half { color: var(--gold); opacity: 0.6; }
.star-rating .star:not(.filled):not(.half) { color: var(--text-muted); opacity: 0.3; }
.star-rating-number { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-left: 4px; }

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

.pagination a, .pagination span {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all var(--transition);
}

.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); color: var(--bg-darkest); border-color: var(--gold); }

/* Content with sidebar layout */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1024px) { .content-with-sidebar { grid-template-columns: 1fr; } }

/* Payment grid */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.payment-method {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-body);
}

/* 404 */
.page-404 {
  text-align: center;
  padding: 6rem 0;
}

.page-404 h1 {
  font-size: 8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.slot-reel {
  width: 60px; height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}

/* Widget base */
.widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 1rem;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
