/* ===================================================
   CasinoActu – Dark Luxury Casino CSS
   =================================================== */

/* --- Variables --- */
:root {
  --gold: #FFD700;
  --gold-dark: #B8860B;
  --gold-light: #FFF0A0;
  --red: #C0392B;
  --red-bright: #E74C3C;
  --bg-0: #080810;
  --bg-1: #0D0D1A;
  --bg-2: #12122A;
  --bg-3: #1A1A35;
  --bg-card: #111128;
  --bg-card-hover: #16163A;
  --border: rgba(255, 215, 0, 0.15);
  --border-bright: rgba(255, 215, 0, 0.4);
  --text-primary: #F0F0F5;
  --text-secondary: #A0A0C0;
  --text-muted: #60607A;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.2);
  --transition: 0.25s ease;
  --container: 1200px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-xxl: 120px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-0);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-md); }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-secondary); }

.gold-text { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-sm); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  border: none; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000; box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(255,215,0,0.4); color: #000; }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: rgba(255,215,0,0.1); color: var(--gold-light); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-bright); color: #fff; }

/* --- Tags / Badges --- */
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.tag-casino { background: rgba(192, 57, 43, 0.2); color: #E74C3C; border: 1px solid rgba(231,76,60,0.3); }
.tag-poker { background: rgba(52, 152, 219, 0.15); color: #5DADE2; border: 1px solid rgba(93,173,226,0.3); }
.tag-bonus { background: rgba(255, 215, 0, 0.15); color: var(--gold); border: 1px solid var(--border); }
.tag-paris { background: rgba(39, 174, 96, 0.15); color: #2ECC71; border: 1px solid rgba(46,204,113,0.3); }
.tag-actus { background: rgba(142, 68, 173, 0.15); color: #9B59B6; border: 1px solid rgba(155,89,182,0.3); }

/* ===================================================
   HEADER / NAV
   =================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8, 8, 16, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.site-header.scrolled { background: rgba(8, 8, 16, 0.97); box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 1.6rem; }
.logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--text-primary); letter-spacing: -0.5px; }
.logo-accent { color: var(--gold); }

.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary); transition: all var(--transition); text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-link--cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000 !important; font-weight: 700;
}
.nav-link--cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.burger-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.burger-btn span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }
.burger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: absolute; top: 70px; left: 0; right: 0;
  background: var(--bg-1); border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
}
.mobile-menu.open { display: block; }
.mobile-nav-list { padding: 0 var(--space-md); }
.mobile-nav-link {
  display: block; padding: 14px 0; font-size: 1rem; font-weight: 500;
  color: var(--text-secondary); border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 70px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/7594343/pexels-photo-7594343.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1080&w=1920');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,16,0.95) 0%, rgba(8,8,16,0.7) 50%, rgba(8,8,16,0.85) 100%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute; width: 2px; height: 2px; background: var(--gold);
  border-radius: 50%; opacity: 0; animation: float-particle 8s infinite;
}
@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-20px) scale(1); }
}
.hero-content {
  position: relative; z-index: 2; max-width: 750px;
  padding: var(--space-xl) 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 20px;
  background: rgba(255, 215, 0, 0.1); border: 1px solid var(--border-bright);
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  margin-bottom: var(--space-md);
  animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
  0%, 100% { border-color: rgba(255,215,0,0.4); }
  50% { border-color: rgba(255,215,0,0.8); }
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.hero h1 .line-gold {
  display: block; color: var(--gold);
  text-shadow: 0 0 30px rgba(255,215,0,0.5);
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-secondary); max-width: 600px;
  margin-bottom: var(--space-lg); line-height: 1.8;
}
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.hero-stats {
  display: flex; gap: var(--space-lg); flex-wrap: wrap;
  padding-top: var(--space-lg); border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 1.5s ease-in-out infinite;
}
@keyframes scroll-line { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.4; } }

/* ===================================================
   SECTIONS
   =================================================== */
.section { padding: var(--space-xxl) 0; }
.section-sm { padding: var(--space-xl) 0; }
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-label {
  display: inline-block; color: var(--gold); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.section-header p { color: var(--text-secondary); max-width: 560px; margin: var(--space-sm) auto 0; font-size: 1.05rem; }
.divider-gold { width: 60px; height: 3px; background: linear-gradient(to right, var(--gold), var(--gold-dark)); border-radius: 2px; margin: 16px auto 0; }

/* ===================================================
   ARTICLE CARDS
   =================================================== */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.articles-grid--2 { grid-template-columns: repeat(2, 1fr); }
.articles-grid--featured { grid-template-columns: 1.5fr 1fr 1fr; }

.article-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.article-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-gold);
  background: var(--bg-card-hover);
}
.article-card--featured { grid-row: span 2; }

.card-image { position: relative; overflow: hidden; }
.card-image img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.article-card--featured .card-image img { height: 100%; min-height: 300px; }
.article-card:hover .card-image img { transform: scale(1.05); }
.card-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.8) 0%, transparent 60%);
}
.card-tag-overlay { position: absolute; top: 16px; left: 16px; }

.card-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card-date { font-size: 0.8rem; color: var(--text-muted); }
.card-read-time { font-size: 0.8rem; color: var(--text-muted); }
.card-title { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; line-height: 1.4; }
.article-card--featured .card-title { font-size: 1.4rem; }
.card-excerpt { font-size: 0.9rem; color: var(--text-secondary); flex: 1; line-height: 1.6; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: var(--space-sm); padding-top: var(--space-sm); border-top: 1px solid var(--border); }
.card-author { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.card-link { color: var(--gold); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.card-link:hover { color: var(--gold-light); }

/* ===================================================
   FEATURED BANNER (TOP ARTICLE)
   =================================================== */
.featured-article {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 500px; display: flex; align-items: flex-end;
  background: var(--bg-card); border: 1px solid var(--border);
}
.featured-article-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/7594128/pexels-photo-7594128.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200');
  background-size: cover; background-position: center;
  transition: transform 0.4s ease;
}
.featured-article:hover .featured-article-bg { transform: scale(1.03); }
.featured-article-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.98) 0%, rgba(8,8,16,0.5) 50%, transparent 100%);
}
.featured-article-content { position: relative; z-index: 2; padding: var(--space-lg); max-width: 700px; }
.featured-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: #000; padding: 6px 14px; border-radius: 6px;
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}
.featured-article h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.featured-article p { color: var(--text-secondary); margin-bottom: var(--space-md); font-size: 1rem; max-width: 560px; }

/* ===================================================
   CATEGORIES SECTION
   =================================================== */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); }
.category-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--space-lg) var(--space-md);
  text-align: center; transition: all var(--transition); cursor: pointer;
  text-decoration: none; display: block;
}
.category-card:hover { border-color: var(--border-bright); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.category-icon { font-size: 2.5rem; margin-bottom: var(--space-sm); display: block; }
.category-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text-primary); }
.category-card p { font-size: 0.85rem; color: var(--text-muted); }
.category-card--gold { border-color: rgba(255,215,0,0.3); background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,215,0,0.05) 100%); }
.category-card--red { border-color: rgba(192,57,43,0.3); background: linear-gradient(135deg, var(--bg-card) 0%, rgba(192,57,43,0.05) 100%); }
.category-card--blue { border-color: rgba(52,152,219,0.3); background: linear-gradient(135deg, var(--bg-card) 0%, rgba(52,152,219,0.05) 100%); }
.category-card--green { border-color: rgba(39,174,96,0.3); background: linear-gradient(135deg, var(--bg-card) 0%, rgba(39,174,96,0.05) 100%); }

/* ===================================================
   TOP CASINOS TABLE
   =================================================== */
.casinos-table-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.casino-row {
  display: grid; grid-template-columns: 50px 1fr auto auto auto auto;
  align-items: center; gap: var(--space-md); padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border); transition: background var(--transition);
}
.casino-row:last-child { border-bottom: none; }
.casino-row:hover { background: var(--bg-card-hover); }
.casino-row--header {
  background: var(--bg-2); color: var(--text-muted);
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.casino-rank { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--gold); text-align: center; }
.casino-name { font-weight: 700; color: var(--text-primary); }
.casino-bonus-amount { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.casino-stars { color: var(--gold); letter-spacing: 2px; }
.casino-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-new { background: rgba(192,57,43,0.2); color: var(--red-bright); border: 1px solid rgba(231,76,60,0.3); }
.badge-top { background: rgba(255,215,0,0.15); color: var(--gold); border: 1px solid var(--border-bright); }
.badge-hot { background: rgba(231,76,60,0.15); color: #FF6B6B; border: 1px solid rgba(255,107,107,0.3); }

/* ===================================================
   NEWSLETTER SECTION
   =================================================== */
.newsletter-section {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '🎰'; position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 10rem; opacity: 0.05; pointer-events: none;
}
.newsletter-inner { display: flex; align-items: center; gap: var(--space-xl); flex-wrap: wrap; }
.newsletter-content { flex: 1; min-width: 280px; }
.newsletter-content h2 { margin-bottom: var(--space-sm); }
.newsletter-form { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-md); }
.newsletter-form input {
  flex: 1; min-width: 240px; padding: 14px 20px;
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-size: 0.95rem;
  outline: none; transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ===================================================
   RESPONSIBLE GAMBLING BANNER
   =================================================== */
.responsible-banner {
  background: linear-gradient(135deg, rgba(192,57,43,0.1) 0%, rgba(8,8,16,0) 100%);
  border: 1px solid rgba(192,57,43,0.3); border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap;
}
.responsible-banner .icon { font-size: 2rem; flex-shrink: 0; }
.responsible-banner p { font-size: 0.9rem; color: var(--text-secondary); }
.responsible-banner a { color: var(--gold); font-weight: 600; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer { background: var(--bg-1); border-top: 1px solid var(--border); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl); padding: var(--space-xl) var(--space-md);
}
.footer-brand .logo { margin-bottom: var(--space-md); }
.footer-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-md); }
.footer-age-warning {
  display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text-muted);
}
.age-badge {
  background: var(--red); color: #fff; padding: 4px 10px; border-radius: 4px;
  font-weight: 700; font-size: 0.8rem; white-space: nowrap;
}
.footer--footer { margin-bottom: var(--space-md); }
.footer-title { font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--space-md); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-newsletter-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: var(--space-sm); }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input {
  flex: 1; padding: 10px 14px; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-size: 0.85rem; outline: none;
  transition: border-color var(--transition);
}
.footer-newsletter-form input:focus { border-color: var(--gold); }
.footer-newsletter-form input::placeholder { color: var(--text-muted); }
.footer-newsletter-form button {
  padding: 10px 16px; background: var(--gold); color: #000; border: none;
  border-radius: 8px; font-weight: 700; font-size: 0.85rem; white-space: nowrap;
  transition: all var(--transition);
}
.footer-newsletter-form button:hover { opacity: 0.85; }
.responsible-link { font-size: 0.8rem; color: var(--text-muted) !important; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-md) var(--space-md);
  border-top: 1px solid var(--border); flex-wrap: wrap; gap: var(--space-sm);
}
.footer-legal { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: var(--space-md); }
.footer-bottom-links a { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  position: relative; padding: calc(70px + var(--space-xl)) 0 var(--space-xl);
  background: var(--bg-1); border-bottom: 1px solid var(--border); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top center, rgba(255,215,0,0.06) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; margin-bottom: var(--space-md); color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-muted); }

/* ===================================================
   ARTICLE PAGE
   =================================================== */
.article-layout { display: grid; grid-template-columns: 1fr 380px; gap: var(--space-xl); align-items: start; }
.article-content h2 { margin: var(--space-lg) 0 var(--space-sm); color: var(--text-primary); }
.article-content h3 { margin: var(--space-md) 0 var(--space-sm); color: var(--text-secondary); }
.article-content p { margin-bottom: var(--space-md); line-height: 1.8; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: var(--space-md); }
.article-content li { color: var(--text-secondary); margin-bottom: 8px; line-height: 1.7; }
.article-content strong { color: var(--text-primary); }
.article-image { border-radius: var(--radius-lg); margin: var(--space-lg) 0; overflow: hidden; }
.article-image img { width: 100%; height: 400px; object-fit: cover; }
.article-blockquote {
  border-left: 4px solid var(--gold); padding: var(--space-md) var(--space-lg);
  background: rgba(255,215,0,0.05); border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--space-lg) 0; font-style: italic; color: var(--text-secondary); font-size: 1.05rem;
}

/* Sidebar */
.sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-md); margin-bottom: var(--space-md);
}
.sidebar-card h4 { margin-bottom: var(--space-md); padding-bottom: var(--space-sm); border-bottom: 1px solid var(--border); }
.sidebar-bonus { text-align: center; }
.sidebar-bonus-amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--gold); display: block; margin: var(--space-sm) 0; }
.sidebar-bonus p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: var(--space-md); }

/* ===================================================
   INFO BOXES / CALLOUTS
   =================================================== */
.info-box {
  border-radius: var(--radius); padding: var(--space-md);
  margin: var(--space-md) 0; border: 1px solid;
}
.info-box--tip { background: rgba(39,174,96,0.08); border-color: rgba(39,174,96,0.3); }
.info-box--tip .info-title { color: #2ECC71; }
.info-box--warning { background: rgba(255,215,0,0.08); border-color: rgba(255,215,0,0.3); }
.info-box--warning .info-title { color: var(--gold); }
.info-box--danger { background: rgba(192,57,43,0.08); border-color: rgba(192,57,43,0.3); }
.info-box--danger .info-title { color: var(--red-bright); }
.info-title { font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
.info-box p { font-size: 0.9rem; }

/* ===================================================
   RATING STARS
   =================================================== */
.rating { display: flex; align-items: center; gap: 6px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }
.rating-score { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.rating-count { font-size: 0.8rem; color: var(--text-muted); }

/* ===================================================
   SCROLL REVEAL ANIMATIONS
   =================================================== */
.reveal-on-scroll {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.reveal-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* ===================================================
   PAGINATION
   =================================================== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: var(--space-xl); }
.page-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.9rem; transition: all var(--transition);
  text-decoration: none;
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 700; }

/* ===================================================
   MISC
   =================================================== */
.section-divider { height: 1px; background: linear-gradient(to right, transparent, var(--border-bright), transparent); margin: 0; }
.bg-alt { background: var(--bg-1); }
.bg-card { background: var(--bg-card); }

/* ===================================================
   DIRECTORY — Casino par ville / région / jeu
   =================================================== */

/* --- Shared dir breadcrumb --- */
.dir-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: var(--space-md); flex-wrap: wrap;
}
.dir-breadcrumb a { color: var(--text-muted); }
.dir-breadcrumb a:hover { color: var(--gold); }
.dir-breadcrumb span { color: var(--text-muted); }

/* --- Disclaimer --- */
.dir-disclaimer {
  background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.25);
  border-radius: var(--radius); padding: var(--space-md);
  font-size: 0.85rem; color: var(--text-secondary);
  margin: var(--space-lg) 0 var(--space-xl);
}
.dir-disclaimer a { color: var(--gold); }

/* ===================================================
   HERO VILLE
   =================================================== */
.dir-hero {
  position: relative; min-height: 480px; display: flex; align-items: flex-end;
  padding-top: 70px; background-size: cover; background-position: center;
  overflow: hidden;
}
.dir-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.98) 0%, rgba(8,8,16,0.65) 60%, rgba(8,8,16,0.8) 100%);
}
.dir-hero-content {
  position: relative; z-index: 2;
  padding-bottom: var(--space-xl);
}
.dir-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(255,215,0,0.12); border: 1px solid var(--border-bright);
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  margin-bottom: var(--space-sm);
}
.dir-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: var(--space-sm); line-height: 1.15;
}
.dir-zip { font-size: 0.6em; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.dir-hero-subtitle { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: var(--space-md); }
.dir-hero-stats {
  display: flex; gap: var(--space-lg); flex-wrap: wrap;
  padding-top: var(--space-md); border-top: 1px solid var(--border);
}
.dir-stat { display: flex; flex-direction: column; }
.dir-stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.dir-stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- Intro section --- */
.dir-intro { padding: var(--space-xl) 0; }
.dir-intro-grid { display: grid; grid-template-columns: 1fr 420px; gap: var(--space-xl); align-items: center; }
.dir-intro-text h2 { margin-bottom: var(--space-md); }
.dir-intro-text p { margin-bottom: var(--space-sm); }
.dir-intro-tips { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); margin-top: var(--space-md); }
.dir-tip {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px var(--space-sm);
  font-size: 0.85rem; color: var(--text-secondary);
}
.dir-tip-icon { font-size: 1.2rem; flex-shrink: 0; }
.dir-intro-image img { border-radius: var(--radius-lg); width: 100%; height: 300px; object-fit: cover; }

/* --- TOP 5 Casino ranking --- */
.dir-ranking { padding-bottom: var(--space-xl); }
.dir-ranking .section-header { text-align: left; margin-bottom: var(--space-lg); }
.dir-casino-list { display: flex; flex-direction: column; gap: var(--space-sm); }

.dir-casino-card {
  display: grid; grid-template-columns: 50px 100px 1fr 200px 180px 160px;
  align-items: center; gap: var(--space-md);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-md) var(--space-lg);
  position: relative; transition: all var(--transition);
}
.dir-casino-card:hover {
  border-color: var(--border-bright); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}
.dir-casino-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,215,0,0.04) 100%);
  box-shadow: 0 0 30px rgba(255,215,0,0.1);
}
.dir-casino-badge-top {
  position: absolute; top: -12px; left: var(--space-lg);
  background: var(--gold); color: #000; padding: 4px 14px;
  border-radius: 20px; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-silver { background: #C0C0C0 !important; }
.badge-bronze { background: #CD7F32 !important; }
.dir-casino-rank { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--gold); text-align: center; }
.dir-casino-logo-placeholder {
  width: 70px; height: 70px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
}
.dir-logo-letter { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; color: var(--gold); }
.dir-casino-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.dir-casino-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.dir-stars { color: var(--gold); font-size: 0.9rem; }
.dir-rating-num { font-size: 0.85rem; color: var(--text-secondary); }
.dir-casino-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.dir-tag { background: rgba(255,215,0,0.08); border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px; font-size: 0.72rem; color: var(--text-muted); }
.dir-casino-bonus { text-align: center; }
.dir-bonus-highlight { background: rgba(255,215,0,0.08); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-sm); margin-bottom: 8px; }
.dir-bonus-pct { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.dir-bonus-label { font-size: 0.78rem; color: var(--text-muted); }
.dir-bonus-details { font-size: 0.8rem; color: var(--text-secondary); display: flex; flex-direction: column; gap: 2px; }
.dir-wagering { color: var(--text-muted); }
.dir-casino-cta { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.btn-casino-primary {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000; font-weight: 700; font-size: 0.9rem;
  padding: 12px 20px; border-radius: 8px;
  transition: all var(--transition);
}
.btn-casino-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: #000; }
.dir-casino-note { font-size: 0.7rem; color: var(--text-muted); }

/* --- Guide section --- */
.dir-guide-section { background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--space-xl) 0; }
.dir-guide-section h2 { text-align: center; margin-bottom: var(--space-lg); }
.dir-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.dir-guide-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-md);
  transition: all var(--transition);
}
.dir-guide-card:hover { border-color: var(--border-bright); transform: translateY(-3px); }
.dir-guide-icon { font-size: 2rem; margin-bottom: var(--space-sm); }
.dir-guide-card h3 { font-size: 1rem; margin-bottom: 8px; }
.dir-guide-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* --- FAQ --- */
.dir-faq { padding: var(--space-xl) 0; }
.dir-faq h2 { margin-bottom: var(--space-lg); }
.dir-faq-list { display: flex; flex-direction: column; gap: 12px; }
.dir-faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.dir-faq-item.open { border-color: var(--border-bright); }
.dir-faq-q {
  width: 100%; background: none; border: none; padding: var(--space-md);
  color: var(--text-primary); font-size: 0.95rem; font-weight: 600; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm);
  cursor: pointer; transition: color var(--transition);
}
.dir-faq-q:hover { color: var(--gold); }
.faq-arrow { color: var(--gold); flex-shrink: 0; transition: transform 0.3s; font-size: 0.8rem; }
.dir-faq-item.open .faq-arrow { transform: rotate(180deg); }
.dir-faq-a { display: none; padding: 0 var(--space-md) var(--space-md); border-top: 1px solid var(--border); }
.dir-faq-item.open .dir-faq-a { display: block; padding-top: var(--space-md); }
.dir-faq-a p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* --- Nearby cities --- */
.dir-nearby { padding: var(--space-xl) 0; }
.dir-nearby h2 { margin-bottom: var(--space-lg); }
.dir-nearby-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin-bottom: var(--space-lg); }
.dir-nearby-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px var(--space-sm);
  display: flex; align-items: center; gap: 10px;
  transition: all var(--transition); text-decoration: none;
}
.dir-nearby-card:hover { border-color: var(--border-bright); transform: translateX(4px); background: var(--bg-card-hover); }
.dir-nearby-pin { font-size: 0.9rem; }
.dir-nearby-name { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); flex: 1; }
.dir-nearby-zip { font-size: 0.78rem; color: var(--text-muted); }
.dir-nearby-arrow { color: var(--gold); font-size: 0.9rem; }
.dir-region-link { text-align: center; }

/* ===================================================
   REGION PAGE
   =================================================== */
.dir-region-hero {
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--border);
  padding: calc(70px + var(--space-xl)) 0 var(--space-xl);
  position: relative; overflow: hidden;
}
.dir-region-hero::before {
  content: '🗺️'; position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%); font-size: 8rem; opacity: 0.05;
}
.dir-region-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--space-sm); }
.dir-region-subtitle { color: var(--text-secondary); }

.dir-section-intro { color: var(--text-secondary); margin-bottom: var(--space-lg); font-size: 1rem; max-width: 700px; }

/* --- Dept block --- */
.dir-dept-section { padding: var(--space-md) 0; }
.dir-dept-block { margin-bottom: var(--space-xl); }
.dir-dept-title {
  display: flex; align-items: center; gap: var(--space-sm);
  font-size: 1.2rem; margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm); border-bottom: 1px solid var(--border);
}
.dir-dept-code {
  background: var(--gold); color: #000; padding: 3px 10px;
  border-radius: 6px; font-size: 0.85rem; font-weight: 800;
}
.dir-dept-count { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

.dir-city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dir-city-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
  transition: all var(--transition); text-decoration: none;
}
.dir-city-card:hover { border-color: var(--border-bright); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.dir-city-pin { font-size: 0.8rem; }
.dir-city-name { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.dir-city-zip { font-size: 0.75rem; color: var(--text-muted); }
.dir-city-cta { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

/* --- Regions grid --- */
.dir-regions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin-bottom: var(--space-xl); }
.dir-region-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-md);
  display: flex; align-items: center; gap: var(--space-sm);
  transition: all var(--transition); text-decoration: none;
}
.dir-region-card:hover { border-color: var(--border-bright); transform: translateY(-4px); box-shadow: var(--shadow-gold); background: var(--bg-card-hover); }
.dir-region-emoji { font-size: 2rem; flex-shrink: 0; }
.dir-region-info { flex: 1; }
.dir-region-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; font-family: var(--font-body); }
.dir-region-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 6px; }
.dir-region-arrow { color: var(--gold); font-size: 1rem; }

/* --- Search bar --- */
.dir-search-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-lg); margin-bottom: var(--space-xl); }
.dir-search-section h2 { margin-bottom: var(--space-md); font-size: 1.4rem; }
.dir-search-box { display: flex; gap: var(--space-sm); }
.dir-search-input {
  flex: 1; padding: 14px 20px; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-size: 1rem; outline: none;
  transition: border-color var(--transition);
}
.dir-search-input:focus { border-color: var(--gold); }
.dir-search-input::placeholder { color: var(--text-muted); }
.dir-search-btn {
  padding: 14px 28px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000; border: none; border-radius: 8px; font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.dir-search-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.dir-search-results { margin-top: var(--space-sm); }
.dir-search-result-item {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
  padding: 12px var(--space-sm); background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 6px; text-decoration: none;
  color: var(--text-primary); font-size: 0.9rem; transition: all var(--transition);
}
.dir-search-result-item:hover { border-color: var(--gold); color: var(--gold); }
.dir-search-zip { color: var(--text-muted); font-size: 0.8rem; }
.dir-no-result { color: var(--text-muted); font-size: 0.9rem; padding: var(--space-sm); }

/* ===================================================
   CASINO JEU PAGE
   =================================================== */
.jeu-hero {
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--border);
  padding: calc(70px + var(--space-lg)) 0 var(--space-lg);
}
.jeu-hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: var(--space-xl); align-items: start; margin-top: var(--space-md); }
.jeu-logo-box {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  text-align: center; margin-bottom: var(--space-md);
  display: inline-flex; flex-direction: column; align-items: center;
}
.jeu-logo-letter { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.jeu-logo-name { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
.jeu-rating-box { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-md); }
.jeu-stars .star-full, .jeu-stars .star-half { color: var(--gold); }
.jeu-stars .star-empty { color: var(--bg-3); }
.star-full, .star-half, .star-empty { font-size: 1.3rem; }
.jeu-rating-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--text-primary); }
.jeu-review-count { font-size: 0.85rem; color: var(--text-muted); }
.jeu-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.jeu-tag-legal { background: rgba(39,174,96,0.15); color: #2ECC71; border: 1px solid rgba(46,204,113,0.3); padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.jeu-tag-fr { background: rgba(52,152,219,0.15); color: #5DADE2; border: 1px solid rgba(93,173,226,0.3); padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.jeu-tag-mobile { background: rgba(155,89,182,0.15); color: #9B59B6; border: 1px solid rgba(155,89,182,0.3); padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.jeu-tag-live { background: rgba(231,76,60,0.15); color: #E74C3C; border: 1px solid rgba(231,76,60,0.3); padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }

.jeu-bonus-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,215,0,0.04) 100%);
  border: 2px solid var(--gold); border-radius: var(--radius-lg);
  padding: var(--space-lg); text-align: center;
  box-shadow: 0 0 40px rgba(255,215,0,0.15);
}
.jeu-bonus-header { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: var(--space-sm); }
.jeu-bonus-main { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 8px; }
.jeu-bonus-pct { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.jeu-bonus-plus { font-size: 1.5rem; color: var(--text-muted); }
.jeu-bonus-detail { font-size: 1rem; color: var(--text-secondary); }
.jeu-bonus-max { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: var(--space-sm); }
.jeu-bonus-max strong { color: var(--gold); font-size: 1.1rem; }
.jeu-bonus-conditions { list-style: none; font-size: 0.82rem; color: var(--text-muted); margin-bottom: var(--space-md); }
.jeu-bonus-conditions li::before { content: '• '; }
.btn-jeu-primary {
  display: block; padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000; font-weight: 800; font-size: 1rem; border-radius: 8px;
  transition: all var(--transition); margin-bottom: 10px; text-decoration: none;
}
.btn-jeu-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255,215,0,0.4); color: #000; }
.jeu-disclaimer-small { font-size: 0.72rem; color: var(--text-muted); }

.jeu-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); padding: var(--space-lg) 0; }
.jeu-pros, .jeu-cons { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); }
.jeu-pros { border-left: 4px solid #2ECC71; }
.jeu-cons { border-left: 4px solid var(--red-bright); }
.jeu-pros h3, .jeu-cons h3 { margin-bottom: var(--space-sm); font-size: 1rem; }
.jeu-pros ul, .jeu-cons ul { list-style: none; }
.jeu-pros li, .jeu-cons li { font-size: 0.88rem; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border); }
.jeu-pros li:last-child, .jeu-cons li:last-child { border-bottom: none; }
.jeu-pros li::before { content: '✅ '; }
.jeu-cons li::before { content: '⚠️ '; }

.jeu-catalogue { padding: var(--space-lg) 0; }
.jeu-catalogue h2 { margin-bottom: var(--space-lg); }
.jeu-cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-sm); }
.jeu-cat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--space-md) var(--space-sm);
  text-align: center; transition: all var(--transition);
}
.jeu-cat-card:hover { border-color: var(--border-bright); transform: translateY(-3px); }
.jeu-cat-icon { font-size: 1.8rem; margin-bottom: 8px; }
.jeu-cat-count { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--gold); }
.jeu-cat-name { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.jeu-payments { padding: var(--space-lg) 0; }
.jeu-payments h2 { margin-bottom: var(--space-md); }
.jeu-payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.jeu-payment-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--space-sm) var(--space-md);
  display: flex; align-items: center; gap: 12px;
}
.jeu-payment-icon { font-size: 1.4rem; }
.jeu-payment-name { font-size: 0.9rem; color: var(--text-secondary); }

.jeu-simulator { padding: var(--space-lg) 0; }
.jeu-simulator h2 { margin-bottom: var(--space-md); }
.jeu-sim-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
}
.jeu-sim-row { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-md); flex-wrap: wrap; }
.jeu-sim-row label { font-size: 0.9rem; color: var(--text-secondary); white-space: nowrap; }
.jeu-sim-row input[type="range"] { flex: 1; accent-color: var(--gold); min-width: 200px; }
.jeu-sim-val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gold); min-width: 50px; }
.jeu-sim-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-bottom: var(--space-md); }
.jeu-sim-result-item { text-align: center; background: var(--bg-2); border-radius: var(--radius); padding: var(--space-md); }
.jeu-sim-result-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.jeu-sim-result-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.jeu-sim-note { font-size: 0.8rem; color: var(--text-muted); }

.jeu-related { padding: var(--space-lg) 0 var(--space-xl); }
.jeu-related h2 { margin-bottom: var(--space-lg); }
.jeu-related-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-sm); }
.jeu-related-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--space-md) var(--space-sm);
  text-align: center; transition: all var(--transition); text-decoration: none;
}
.jeu-related-card:hover { border-color: var(--border-bright); transform: translateY(-3px); }
.jeu-related-logo {
  width: 50px; height: 50px; background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 900; color: var(--gold);
  margin: 0 auto var(--space-xs);
}
.jeu-related-name { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }
.jeu-related-arrow { font-size: 0.72rem; color: var(--gold); }

/* ===================================================
   LISTING CASINOS PAGE
   =================================================== */
.listing-hero {
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--border);
  padding: calc(70px + var(--space-xl)) 0 var(--space-lg);
}
.listing-hero h1 { margin-bottom: var(--space-sm); }
.listing-hero p { max-width: 650px; }
.listing-stats { display: flex; gap: var(--space-lg); margin-top: var(--space-lg); }
.listing-stat span { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); display: block; }
.listing-stat small { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; }

.listing-filters { padding: var(--space-md) 0; }
.listing-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px; border-radius: 8px; background: var(--bg-card);
  border: 1px solid var(--border); color: var(--text-secondary);
  font-size: 0.85rem; font-weight: 600; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(255,215,0,0.08);
}

.listing-grid { display: flex; flex-direction: column; gap: 10px; padding-bottom: var(--space-lg); }
.listing-casino-card {
  display: grid; grid-template-columns: 50px 80px 1fr 150px 150px 180px;
  align-items: center; gap: var(--space-md);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-md) var(--space-lg);
  transition: all var(--transition); position: relative;
}
.listing-casino-card:hover { border-color: var(--border-bright); transform: translateY(-2px); box-shadow: var(--shadow); }
.listing-rank { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--gold); text-align: center; }
.listing-casino-logo { position: relative; }
.listing-logo-inner {
  width: 60px; height: 60px; background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 900; color: var(--gold);
}
.listing-top-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: #000; font-size: 0.6rem; font-weight: 800;
  padding: 2px 6px; border-radius: 4px;
}
.listing-casino-name { margin-bottom: 6px; }
.listing-casino-name a { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.listing-casino-name a:hover { color: var(--gold); }
.listing-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.star-gold { color: var(--gold); }
.star-dim { color: var(--bg-3); }
.listing-rating-num { font-size: 0.85rem; color: var(--text-secondary); }
.listing-tags-mini { display: flex; gap: 6px; flex-wrap: wrap; font-size: 0.72rem; color: var(--text-muted); }
.tag-hot { color: var(--red-bright) !important; }
.listing-bonus-col { text-align: center; }
.listing-bonus-pct { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--gold); }
.listing-bonus-max { font-size: 0.8rem; color: var(--text-secondary); }
.listing-bonus-fs { font-size: 0.78rem; color: var(--text-muted); }
.listing-wager-col { }
.listing-wager-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.listing-wager-val { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.listing-wager-bar { height: 4px; background: var(--bg-2); border-radius: 2px; overflow: hidden; }
.listing-wager-fill { height: 100%; background: linear-gradient(to right, var(--gold), var(--red)); border-radius: 2px; }
.listing-cta-col { display: flex; flex-direction: column; gap: 8px; }
.btn-listing-primary {
  display: block; text-align: center; padding: 10px 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000; font-weight: 700; font-size: 0.85rem; border-radius: 8px;
  transition: all var(--transition); text-decoration: none;
}
.btn-listing-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); color: #000; }
.btn-listing-secondary {
  display: block; text-align: center; padding: 8px 16px;
  background: transparent; color: var(--gold);
  border: 1px solid var(--border); font-size: 0.82rem; border-radius: 8px;
  transition: all var(--transition); text-decoration: none;
}
.btn-listing-secondary:hover { border-color: var(--gold); background: rgba(255,215,0,0.08); }

.listing-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: var(--space-lg); }
.pag-btn {
  padding: 8px 14px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-secondary); font-size: 0.85rem; text-decoration: none;
  transition: all var(--transition);
}
.pag-btn:hover { border-color: var(--gold); color: var(--gold); }
.pag-active { background: var(--gold) !important; border-color: var(--gold) !important; color: #000 !important; font-weight: 700; }

.listing-ville-cta { margin-bottom: var(--space-xl); }
.listing-ville-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,215,0,0.04) 100%);
  border: 1px solid var(--border-bright); border-radius: var(--radius-lg);
  padding: var(--space-xl); text-align: center;
}
.listing-ville-box h2 { margin-bottom: var(--space-sm); }
.listing-ville-box p { margin-bottom: var(--space-md); }

/* ===================================================
   RESPONSIVE — Directory
   =================================================== */
@media (max-width: 1024px) {
  .dir-casino-card { grid-template-columns: 40px 80px 1fr 150px 160px; }
  .dir-casino-cta { display: none; }
  .dir-intro-grid { grid-template-columns: 1fr; }
  .dir-intro-image { display: none; }
  .dir-guide-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-regions-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-city-grid { grid-template-columns: repeat(3, 1fr); }
  .jeu-hero-grid { grid-template-columns: 1fr; }
  .jeu-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .jeu-related-grid { grid-template-columns: repeat(4, 1fr); }
  .listing-casino-card { grid-template-columns: 40px 70px 1fr 130px 160px; }
  .listing-wager-col { display: none; }
}

@media (max-width: 768px) {
  .dir-casino-card { grid-template-columns: 40px 1fr auto; }
  .dir-casino-logo, .dir-casino-bonus, .dir-casino-cta { display: none; }
  .dir-casino-card .dir-casino-logo { display: block; }
  .dir-guide-grid { grid-template-columns: 1fr; }
  .dir-nearby-grid { grid-template-columns: 1fr 1fr; }
  .dir-regions-grid { grid-template-columns: 1fr; }
  .dir-city-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-intro-tips { grid-template-columns: 1fr; }
  .jeu-proscons { grid-template-columns: 1fr; }
  .jeu-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .jeu-sim-results { grid-template-columns: 1fr 1fr; }
  .jeu-payment-grid { grid-template-columns: 1fr 1fr; }
  .jeu-related-grid { grid-template-columns: repeat(3, 1fr); }
  .listing-casino-card { grid-template-columns: 40px 1fr auto; }
  .listing-casino-logo, .listing-bonus-col, .listing-wager-col { display: none; }
  .listing-stats { gap: var(--space-md); }
  .dir-search-box { flex-direction: column; }
  .dir-hero-stats { gap: var(--space-md); }
}

@media (max-width: 480px) {
  .dir-city-grid { grid-template-columns: 1fr 1fr; }
  .jeu-sim-results { grid-template-columns: 1fr; }
  .jeu-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   BASE RESPONSIVE (original)
   =================================================== */
@media (max-width: 1024px) {
  .articles-grid--featured { grid-template-columns: 1fr 1fr; }
  .article-card--featured { grid-row: span 1; grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .casino-row { grid-template-columns: 40px 1fr auto auto auto; }
  .casino-row .casino-badge { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --space-xl: 60px; --space-xxl: 80px; }
  .main-nav { display: none; }
  .burger-btn { display: flex; }
  .articles-grid, .articles-grid--2, .articles-grid--featured { grid-template-columns: 1fr; }
  .article-card--featured { grid-column: span 1; }
  .hero-stats { gap: var(--space-md); }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .casino-row { grid-template-columns: 40px 1fr auto; }
  .casino-row .casino-stars, .casino-row .casino-badge { display: none; }
  .newsletter-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
}