/* ============================================================
   TopParisEnLigne — CSS Global
   ============================================================ */
:root {
  --green: #1a472a;
  --green-dark: #0f2d1a;
  --green-light: #2d6a4f;
  --gold: #f0b429;
  --gold-dark: #d4950a;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--gray-800);
  background: #fff;
  line-height: 1.6;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-light); }

img { max-width: 100%; height: auto; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; margin-top: 32px; }

/* ── NAVBAR ── */
.navbar {
  background: var(--green-dark);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; height: 64px; gap: 32px;
}
.logo {
  font-size: 1.2rem; font-weight: 800; color: var(--gold) !important;
  white-space: nowrap; flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85); padding: 8px 12px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; white-space: nowrap;
  transition: all .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--gold) !important; color: var(--green-dark) !important;
  font-weight: 700 !important; margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-dark) !important; }
.nav-burger {
  display: none; background: none; border: none; color: #fff;
  font-size: 1.4rem; cursor: pointer; padding: 8px;
}
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--green-dark); padding: 12px 20px; gap: 4px; }
  .navbar.open .nav-links { display: flex; }
  .nav-burger { display: block; margin-left: auto; }
}

/* ── BOUTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--green-dark) !important;
  font-weight: 700; padding: 11px 22px; border-radius: 8px;
  transition: all .2s; border: none; cursor: pointer; font-size: 0.9rem;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,180,41,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--green) !important;
  font-weight: 600; padding: 10px 20px; border-radius: 8px;
  border: 2px solid var(--green); transition: all .2s; font-size: 0.9rem;
}
.btn-ghost:hover { background: var(--green); color: #fff !important; }
/* Bouton ghost sur fond gris/sombre */
.section-dark .btn-ghost {
  color: var(--green-dark) !important;
  border-color: var(--green-dark);
  background: #fff;
}
.section-dark .btn-ghost:hover { background: var(--green-dark); color: #fff !important; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { display: inline-flex; align-items: center; background: var(--green); color: #fff !important; padding: 6px 14px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; }
.btn-sm:hover { background: var(--green-light); }
.w-full { width: 100%; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 80px 20px;
  text-align: center;
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9);
  padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 20px;
}
.highlight { color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.hero-stats {
  display: flex; justify-content: center; gap: 40px; margin-bottom: 36px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SECTION WARNING ── */
.section-warning {
  background: #fffbeb; border-top: 1px solid #fde68a; border-bottom: 1px solid #fde68a;
  padding: 12px 0;
}
.section-warning p { font-size: 0.82rem; color: #92400e; text-align: center; }
.section-warning a { color: #92400e; text-decoration: underline; }

/* ── SECTIONS ── */
.section { padding: 64px 0; }
.section-dark { background: var(--gray-50); }
.section-title { font-size: 1.7rem; font-weight: 800; text-align: center; margin-bottom: 12px; color: var(--green-dark); }
.section-sub { text-align: center; color: var(--gray-600); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ── CARDS GRID ── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 32px;
}
.bk-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.bk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bk-card-top { display: flex; align-items: center; gap: 14px; }
.bk-emoji { font-size: 2.2rem; }
.bk-info { flex: 1; }
.bk-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.bk-stars { font-size: 0.85rem; display: flex; align-items: center; gap: 4px; }
.bk-badge { background: #ecfdf5; color: #065f46; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 20px; white-space: nowrap; }
.bk-bonus { background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 10px 14px; font-size: 0.88rem; font-weight: 600; color: #92400e; }
.bk-code { font-size: 0.82rem; color: var(--gray-600); }
.bk-code code { background: var(--gray-100); padding: 2px 8px; border-radius: 4px; font-weight: 700; color: var(--green-dark); }
.bk-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { background: var(--gray-100); color: var(--gray-600); font-size: 0.72rem; padding: 3px 10px; border-radius: 20px; }

/* ── PROMO TABLE ── */
.promo-table { overflow-x: auto; margin: 24px 0; }
.promo-table table { width: 100%; border-collapse: collapse; }
.promo-table th { background: var(--green-dark); color: #fff; padding: 12px 16px; text-align: left; font-size: 0.85rem; }
.promo-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-200); font-size: 0.88rem; }
.promo-table tr:hover td { background: var(--gray-50); }
.promo-code { background: var(--gray-100); padding: 3px 10px; border-radius: 6px; font-weight: 700; color: var(--green-dark); font-size: 0.88rem; }

/* ── BLOG GRID ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column; gap: 10px;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 24px; text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: var(--green); letter-spacing: .08em; }
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-800); line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; flex: 1; }
.blog-read { font-size: 0.78rem; color: #9ca3af; }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; }
.faq-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--green-dark); }
.faq-item p { font-size: 0.9rem; color: var(--gray-600); }

/* ── FOOTER ── */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.7); padding: 56px 20px 24px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--gold); margin-bottom: 12px; }
.footer-desc { font-size: 0.83rem; line-height: 1.7; margin-bottom: 12px; }
.footer-warning { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-warning a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 10px 0; }
.breadcrumb .container { font-size: 0.82rem; color: var(--gray-600); }
.breadcrumb a { color: var(--green); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 48px 20px; text-align: center; }
.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* ── REVIEW PAGE ── */
.review-hero { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 48px 0; }
.review-hero-inner { display: flex; gap: 32px; align-items: flex-start; }
.review-logo { font-size: 4rem; flex-shrink: 0; }
.review-info { flex: 1; }
.review-info h1 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 16px; color: var(--green-dark); }
.review-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.review-note { font-size: 1.1rem; font-weight: 700; }
.badge-legal { background: #ecfdf5; color: #065f46; font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.badge-year { background: var(--gray-100); color: var(--gray-600); font-size: 0.78rem; padding: 4px 10px; border-radius: 20px; }
.review-bonus-box { background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bonus-label { color: #92400e; font-weight: 600; }
.promo-inline code { background: #fff; border: 1px solid #fde68a; padding: 2px 10px; border-radius: 6px; font-weight: 700; color: var(--green-dark); }
.disclaimer-small { font-size: 0.72rem; color: #9ca3af; margin-top: 8px; }
.review-body { padding: 40px 0; }
.review-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.review-section { margin-bottom: 40px; }
.review-section h2 { font-size: 1.3rem; font-weight: 700; color: var(--green-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-100); }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-list, .cons-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pros-list li, .cons-list li { font-size: 0.88rem; padding: 8px 12px; border-radius: 8px; }
.pros-list li { background: #ecfdf5; color: #065f46; }
.cons-list li { background: #fef2f2; color: #991b1b; }
.notes-grid { display: flex; flex-direction: column; gap: 14px; }
.note-item { display: grid; grid-template-columns: 120px 1fr 60px; align-items: center; gap: 12px; font-size: 0.88rem; }
.note-bar { height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.note-fill { height: 100%; border-radius: 4px; transition: width .5s; }
.promo-box { background: var(--gray-50); border: 2px dashed var(--gold); border-radius: 12px; padding: 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.promo-code-big { font-size: 2rem; font-weight: 900; color: var(--green-dark); background: var(--gray-100); padding: 12px 32px; border-radius: 10px; letter-spacing: .1em; }
.info-table { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
.info-row { display: flex; align-items: center; gap: 20px; padding: 12px 16px; border-bottom: 1px solid var(--gray-200); font-size: 0.88rem; }
.info-row:last-child { border-bottom: none; }
.info-row > span:first-child { color: var(--gray-600); min-width: 180px; }
.steps { display: flex; flex-direction: column; gap: 12px; padding-left: 0; list-style: none; counter-reset: steps; }
.steps li { counter-increment: steps; display: flex; gap: 14px; align-items: flex-start; font-size: 0.9rem; padding: 14px; background: var(--gray-50); border-radius: 8px; }
.steps li::before { content: counter(steps); background: var(--green); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; flex-shrink: 0; }
.sidebar-box { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; text-align: center; }
.sidebar-emoji { font-size: 3rem; margin-bottom: 8px; }
.sidebar-box h3 { font-weight: 700; margin-bottom: 14px; font-size: 1rem; }
.sidebar-note { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.sidebar-bonus { background: #fffbeb; border-radius: 8px; padding: 10px; font-size: 0.85rem; font-weight: 600; color: #92400e; margin-bottom: 14px; }
.sidebar-info { text-align: left; display: flex; flex-direction: column; gap: 8px; margin-top: 14px; font-size: 0.82rem; color: var(--gray-600); }
.sidebar-list { text-align: left; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-list a { font-size: 0.85rem; display: block; padding: 8px 12px; background: var(--gray-50); border-radius: 6px; color: var(--gray-800); }
.sidebar-list a:hover { background: #ecfdf5; color: var(--green); }
@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-hero-inner { flex-direction: column; }
  .pros-cons { grid-template-columns: 1fr; }
}

/* ── BOOKMAKER LIST ── */
.bk-list { display: flex; flex-direction: column; gap: 12px; padding: 32px 0; }
.bk-row { display: grid; grid-template-columns: 200px 1fr 140px 100px; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px 20px; transition: box-shadow .2s; }
.bk-row:hover { box-shadow: var(--shadow); }
.bk-row-left { display: flex; align-items: center; gap: 12px; }
.bk-emoji-sm { font-size: 1.8rem; }
.bk-row-left h3 { font-size: 0.95rem; font-weight: 700; }
.bk-stars-sm { font-size: 0.8rem; }
.bk-row-bonus { font-size: 0.85rem; color: #92400e; background: #fffbeb; padding: 6px 10px; border-radius: 6px; }
.bk-row-code code { background: var(--gray-100); padding: 3px 8px; border-radius: 4px; font-size: 0.82rem; font-weight: 700; }
@media (max-width: 768px) { .bk-row { grid-template-columns: 1fr 1fr; } .bk-row-bonus { display: none; } }

/* ── ARTICLE ── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 48px 20px; }
.article-header { margin-bottom: 32px; }
.article-header h1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin: 12px 0; color: var(--green-dark); }
.article-meta { font-size: 0.82rem; color: #9ca3af; }
.article-body h2 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 14px; color: var(--green-dark); }
.article-body h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 10px; }
.article-body p { margin-bottom: 16px; font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 16px; }
.article-body li { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 8px; }
.article-intro { font-size: 1.05rem !important; font-weight: 500; color: var(--gray-800) !important; border-left: 4px solid var(--gold); padding-left: 16px; }
.article-cta { background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 12px; padding: 24px; margin: 32px 0; }
.article-cta h3 { font-size: 1rem; margin-bottom: 14px; }
.article-bk-list { display: flex; flex-direction: column; gap: 8px; }
.article-bk { display: flex; align-items: center; gap: 12px; background: #fff; padding: 10px 14px; border-radius: 8px; text-decoration: none; color: inherit; font-size: 0.88rem; }
.article-bk:hover { background: var(--gray-50); }
.article-bk-bonus { flex: 1; color: var(--gray-600); font-size: 0.82rem; }
.article-disclaimer { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 8px; padding: 14px; font-size: 0.82rem; color: #92400e; margin-top: 32px; }
.article-sidebar { position: sticky; top: 80px; height: fit-content; }
.sidebar-bk { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.85rem; }
.sidebar-bk:last-child { border-bottom: none; }
.sidebar-bk code { background: var(--gray-100); padding: 2px 8px; border-radius: 4px; font-size: 0.78rem; }
.blog-card-sm { display: flex; flex-direction: column; gap: 4px; padding: 10px; background: var(--gray-50); border-radius: 8px; margin-bottom: 8px; text-decoration: none; color: inherit; }
.blog-card-sm h4 { font-size: 0.82rem; font-weight: 600; color: var(--gray-800); }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } .article-sidebar { position: static; } }

/* ── INFO BANNER ── */
.info-banner { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px; padding: 14px 18px; font-size: 0.88rem; color: #1e40af; margin: 24px 0; }

/* ── CONTENT BLOCK ── */
.content-block { padding: 40px 0; max-width: 860px; }
.content-block h2 { font-size: 1.4rem; font-weight: 700; color: var(--green-dark); margin: 24px 0 12px; }
.content-block h3 { font-size: 1.1rem; font-weight: 700; margin: 20px 0 10px; }
.content-block p { color: var(--gray-600); margin-bottom: 14px; font-size: 0.93rem; line-height: 1.75; }
.content-block ul { padding-left: 20px; margin-bottom: 16px; }
.content-block li { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 8px; }

/* ── PROMO BOX HERO ── */
.promo-box-hero { text-align: center; background: var(--gray-50); border: 2px solid var(--gold); border-radius: 16px; padding: 40px; margin: 32px 0; }
.promo-code-display { font-size: 2.5rem; font-weight: 900; color: var(--green-dark); background: #fff; display: inline-block; padding: 14px 40px; border-radius: 12px; border: 2px dashed var(--gold); letter-spacing: .12em; margin-bottom: 16px; }
.promo-offer { font-size: 1.1rem; font-weight: 600; color: var(--gray-800); margin-bottom: 20px; }

/* ── TAGS ── */
.tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
