/* ============================================
   COMMENT JOUER AU CASINO – styles.css
   Design: Élégant, sobre, professionnel
   Primary: #1B4F72 | Secondary: #D4AF37
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --primary:       #1B4F72;
  --primary-dark:  #143D57;
  --primary-light: #2E6DA4;
  --secondary:     #D4AF37;
  --secondary-dark:#B8960A;
  --secondary-light:#E8CC6A;
  --text-dark:     #1A1A2E;
  --text-body:     #3D4051;
  --text-muted:    #6B7280;
  --bg-white:      #FFFFFF;
  --bg-light:      #F8F9FA;
  --bg-subtle:     #F2F4F7;
  --border:        #E5E7EB;
  --border-light:  #F0F0F0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.14);
  --radius:        8px;
  --radius-lg:     14px;
  --radius-xl:     20px;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --transition:    0.25s ease;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
strong { font-weight: 600; color: var(--text-dark); }

/* ── Layout ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; }
.section { padding: 80px 0; }
.section--light { background: var(--bg-light); }
.section--subtle { background: var(--bg-subtle); }
.section--dark { background: var(--primary); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }

/* ── Reveal on scroll ── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Warning Banner ── */
.warning-banner {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  padding: 8px 20px;
  letter-spacing: 0.02em;
}
.warning-banner a { color: var(--secondary-light); text-decoration: underline; }

/* ── Header / Nav ── */
.site-header {
  background: var(--bg-white);
  border-bottom: 2px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.logo span { color: var(--secondary); }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { color: var(--secondary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--primary);
  color: #fff;
}
.nav-links a.nav-cta {
  background: var(--secondary);
  color: var(--primary-dark);
  font-weight: 600;
}
.nav-links a.nav-cta:hover { background: var(--secondary-dark); color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
  padding: 8px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  border-radius: var(--radius);
  color: var(--text-body);
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/4677402/pexels-photo-4677402.jpeg?auto=compress&cs=tinysrgb&h=650&w=940');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 0;
}
.hero-content h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-content .hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 2rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 2.5rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--gold { background: var(--secondary); color: var(--primary-dark); }
.badge--outline { border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn--primary { background: var(--secondary); color: var(--primary-dark); border-color: var(--secondary); }
.btn--primary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: #fff; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn--blue { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--blue:hover { background: var(--primary-dark); }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Cards ── */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--accent { border-top: 3px solid var(--secondary); }
.card--primary-border { border-left: 4px solid var(--primary); }

.card-grid { display: grid; gap: 24px; }
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Game Cards */
.game-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.game-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.game-card__img {
  width: 100%; height: 200px;
  object-fit: cover;
}
.game-card__body { padding: 20px; }
.game-card__level {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.level--beginner { background: #D1FAE5; color: #065F46; }
.level--intermediate { background: #FEF3C7; color: #92400E; }
.level--expert { background: #EDE9FE; color: #4C1D95; }
.game-card__title { font-size: 1.1rem; margin-bottom: 8px; }
.game-card__desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 14px; }
.game-card__link {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.game-card__link:hover { color: var(--secondary-dark); }

/* ── Section Headers ── */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header .label {
  display: inline-block;
  color: var(--secondary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}
.section-header--center .lead { margin: 0 auto; }

/* ── Alert / Info Boxes ── */
.alert {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin: 20px 0;
}
.alert--warning { background: #FFFBEB; border-left: 4px solid #F59E0B; color: #78350F; }
.alert--info    { background: #EFF6FF; border-left: 4px solid var(--primary); color: var(--primary-dark); }
.alert--danger  { background: #FEF2F2; border-left: 4px solid #EF4444; color: #7F1D1D; }
.alert--success { background: #F0FDF4; border-left: 4px solid #22C55E; color: #14532D; }
.alert-icon { flex-shrink: 0; margin-top: 1px; }

/* ── Legal / Responsible notice ── */
.responsible-notice {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex; gap: 24px; align-items: center;
  margin: 40px 0;
}
.responsible-notice__icon {
  width: 60px; height: 60px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.responsible-notice h3 { color: var(--secondary-light); margin-bottom: 8px; }
.responsible-notice p { margin: 0; font-size: 0.9rem; opacity: 0.9; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}
.stat-item .stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb__sep { color: var(--border); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(212,175,55,.08);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .subtitle { color: rgba(255,255,255,.78); font-size: 1.05rem; }
.page-hero .label { color: var(--secondary-light); }

/* ── TOC (Table of Contents) ── */
.toc {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}
.toc h4 { margin-bottom: 14px; color: var(--primary); font-size: 1rem; }
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 6px; font-size: 0.9rem; }
.toc a { color: var(--primary); }
.toc a:hover { color: var(--secondary-dark); }

/* ── Content Styles ── */
.content h2 { margin: 2.5rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.content h3 { margin: 2rem 0 0.75rem; color: var(--primary); }
.content ul, .content ol { padding-left: 24px; margin-bottom: 1rem; }
.content ul { list-style: disc; }
.content ol { list-style: decimal; }
.content li { margin-bottom: 6px; }
.content table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0; font-size: 0.9rem;
}
.content table th, .content table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}
.content table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.content table tr:nth-child(even) { background: var(--bg-light); }

/* ── Accordion / FAQ ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question .faq-icon { color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.93rem; color: var(--text-body);
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 16px 22px 20px;
}

/* ── Casino Ranking Table ── */
.casino-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.casino-table thead th {
  background: var(--primary);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
}
.casino-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.casino-table tbody tr:hover { background: var(--bg-light); }
.casino-table tbody td { padding: 16px; vertical-align: middle; }
.casino-rank { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--secondary); }
.casino-score {
  display: flex; align-items: center; gap: 6px;
}
.casino-score-bar {
  flex: 1; height: 6px; background: var(--bg-subtle);
  border-radius: 999px; overflow: hidden; max-width: 80px;
}
.casino-score-bar-fill { height: 100%; background: var(--secondary); border-radius: 999px; }
.stars { color: var(--secondary); letter-spacing: 2px; }
.tag {
  display: inline-block; padding: 3px 10px;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: 999px; font-size: 0.75rem; color: var(--text-muted);
  margin: 2px;
}

/* ── Provider Cards ── */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.provider-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.provider-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); }
.provider-card__logo {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
}
.provider-card__name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; }
.provider-card__type { font-size: 0.75rem; color: var(--text-muted); }

/* ── Level Tabs ── */
.level-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.level-tab {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--bg-white);
  color: var(--text-muted);
  transition: all var(--transition);
}
.level-tab.active, .level-tab:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.level-content { display: none; }
.level-content.active { display: block; }

/* ── Strategy Cards ── */
.strategy-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-top: 4px solid var(--primary);
  transition: all var(--transition);
}
.strategy-card:hover { box-shadow: var(--shadow-md); }
.strategy-card__number {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* ── Simulator / Widget ── */
.widget {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.widget h3 { color: var(--primary); margin-bottom: 6px; }
.widget-form { display: grid; gap: 16px; margin-top: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,79,114,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.widget-result {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
  display: none;
}
.widget-result.show { display: block; }
.result-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

/* ── Icon Blocks ── */
.icon-block {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
}
.icon-block__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.icon-block h4 { margin-bottom: 6px; font-size: 1rem; }
.icon-block p { margin: 0; font-size: 0.875rem; color: var(--text-muted); }

/* ── Footer ── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand .logo span { color: var(--secondary); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 {
  color: var(--secondary-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--secondary-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-legal a { color: rgba(255,255,255,0.45); margin-left: 16px; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.cgj-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
}
.cgj-badge strong { color: var(--secondary-light); }

/* ── Roulette Simulator ── */
.roulette-demo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: center;
}
.roulette-wheel-wrap {
  position: relative; width: 220px; height: 220px; margin: 0 auto;
}
.roulette-wheel {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: conic-gradient(
    #1a1a1a 0deg 9.72deg,
    #b22222 9.72deg 19.44deg,
    #1a1a1a 19.44deg 29.16deg,
    #b22222 29.16deg 38.88deg,
    #1a1a1a 38.88deg 48.6deg,
    #b22222 48.6deg 58.32deg,
    #1a1a1a 58.32deg 68.04deg,
    #b22222 68.04deg 77.76deg,
    #006400 77.76deg 87.48deg,
    #b22222 87.48deg 97.2deg,
    #1a1a1a 97.2deg 106.92deg,
    #b22222 106.92deg 116.64deg,
    #1a1a1a 116.64deg 126.36deg,
    #b22222 126.36deg 136.08deg,
    #1a1a1a 136.08deg 145.8deg,
    #b22222 145.8deg 155.52deg,
    #1a1a1a 155.52deg 165.24deg,
    #b22222 165.24deg 174.96deg,
    #1a1a1a 174.96deg 184.68deg,
    #b22222 184.68deg 194.4deg,
    #1a1a1a 194.4deg 204.12deg,
    #b22222 204.12deg 213.84deg,
    #1a1a1a 213.84deg 223.56deg,
    #b22222 223.56deg 233.28deg,
    #1a1a1a 233.28deg 243deg,
    #b22222 243deg 252.72deg,
    #1a1a1a 252.72deg 262.44deg,
    #b22222 262.44deg 272.16deg,
    #1a1a1a 272.16deg 281.88deg,
    #b22222 281.88deg 291.6deg,
    #1a1a1a 291.6deg 301.32deg,
    #b22222 301.32deg 311.04deg,
    #1a1a1a 311.04deg 320.76deg,
    #b22222 320.76deg 330.48deg,
    #1a1a1a 330.48deg 340.2deg,
    #b22222 340.2deg 349.92deg,
    #1a1a1a 349.92deg 360deg
  );
  border: 8px solid #8B6914;
  box-shadow: 0 0 0 4px #5a4008, var(--shadow-lg);
  transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.roulette-ball {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,0,0,0.5);
  transform: translate(-50%, -90px);
  transition: all 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

/* ── Blackjack Table Visual ── */
.bj-table {
  background: #2d6a4f;
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  border: 4px solid #1a3d2b;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.3);
}
.bj-cards { display: flex; gap: 8px; justify-content: center; margin: 16px 0; }
.playing-card {
  width: 54px; height: 76px;
  background: #fff;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  border: 1px solid #ddd;
}
.playing-card.red { color: #DC2626; }
.playing-card.black { color: #1a1a1a; }
.playing-card.face-down {
  background: linear-gradient(135deg, #1B4F72 25%, #143D57 75%);
  font-size: 0; color: transparent;
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary-dark); }
.text-muted { color: var(--text-muted); }
.text-small { font-size: 0.875rem; }
.text-gold { color: var(--secondary); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 16px; }
.items-center { align-items: center; }
.gold-line {
  display: block; width: 50px; height: 3px;
  background: var(--secondary);
  margin: 12px 0;
}
.gold-line--center { margin: 12px auto; }
.divider {
  border: none; border-top: 1px solid var(--border-light);
  margin: 48px 0;
}

/* ── Sticky CTA ── */
.sticky-help {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.sticky-help:hover { background: var(--secondary); color: var(--primary-dark); }

/* ── 18+ Badge ── */
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: #DC2626;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .roulette-demo { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 2px solid var(--secondary); padding: 16px; flex-direction: column; align-items: flex-start; box-shadow: var(--shadow-md); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding: 0; opacity: 1; visibility: visible; transform: none; background: var(--bg-light); margin-top: 4px; }
  .nav-dropdown > a::after { content: ''; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 500px; }
  .responsible-notice { flex-direction: column; padding: 24px; }
  .casino-table { font-size: 0.8rem; }
  .casino-table thead th, .casino-table tbody td { padding: 10px 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}