/* ============================================================
   SOCCERBETTINGTIP.COM — CSS Principal
   Palette : noir (#111) + jaune (#F5C518) + blanc (#fff)
   Fonts   : Bebas Neue (display) + Barlow (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,600;0,700;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --primary:       #F5C518;
  --primary-dark:  #d4a900;
  --primary-light: #fff3cd;
  --black:         #111111;
  --black2:        #1a1a1a;
  --black3:        #222222;
  --body-bg:       #ffffff;
  --card-bg:       #f8f8f6;
  --header-bg:     #111111;
  --border:        #e5e5e5;
  --border-dark:   #2a2a2a;
  --text:          #333333;
  --text-light:    #666666;
  --muted:         #999999;
  --white:         #ffffff;
  --success:       #28a745;
  --danger:        #dc3545;
  --warning:       #F5C518;
  --font-display:  'Bebas Neue', sans-serif;
  --font-cond:     'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--body-bg); color: var(--text); font-size: 15px; line-height: 1.7; }
a { color: var(--black); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Section label + titles ── */
.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.sub-title::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-display); font-size: 44px; color: var(--black); margin-bottom: 12px; letter-spacing: 0.01em; }
.section-title p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 15px; }

/* ── Preloader ── */
.preloader { position: fixed; inset: 0; background: var(--black); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.spinner { width: 44px; height: 44px; border: 3px solid #333; border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }


/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.header { position: sticky; top: 0; z-index: 999; }
.header-bottom { background: var(--black); border-bottom: 1px solid var(--black3); padding: 0; }

/* Logo texte */
.sbt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sbt-logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--black);
  letter-spacing: 0;
  flex-shrink: 0;
}
.sbt-logo-text {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.sbt-logo-text span { color: var(--primary); }

.navbar { padding: 0; }
.navbar-nav { display: flex; flex-direction: row; align-items: center; gap: 2px; }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.65) !important;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 22px 16px;
  transition: color .2s;
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link:hover { color: var(--primary) !important; }

.nav-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--black) !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 8px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--primary-dark); color: var(--black) !important; }

/* Language switcher */
.lang-switcher .nav-link { display: flex !important; align-items: center; gap: 6px; }
.lang-flag { font-size: 16px; line-height: 1; }
.lang-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); font-family: var(--font-cond); letter-spacing: 0.05em; }
.lang-menu {
  min-width: 180px;
  padding: 8px 0;
  background: var(--black2) !important;
  border: 1px solid var(--black3) !important;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.lang-item { display: flex !important; align-items: center; gap: 10px; padding: 9px 18px; color: rgba(255,255,255,0.6) !important; font-size: 13px; transition: background .15s; }
.lang-item:hover { background: rgba(245,197,24,.1) !important; color: var(--white) !important; }
.lang-item.active { background: rgba(245,197,24,.12) !important; color: var(--white) !important; }
.lang-name { flex: 1; }
.lang-check { color: var(--primary); font-size: 11px; }


/* ════════════════════════════════════════
   BANNER / HERO
════════════════════════════════════════ */
.banner {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black) center/cover no-repeat;
}
.banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.15) 100%);
  z-index: 1;
}
.banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  z-index: 1;
}
.banner .container { position: relative; z-index: 2; padding-bottom: 60px; }

.banner-content .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--black);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.banner-content .subtitle::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
}
.banner-content h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 90px);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}
.banner-content h1 span { color: var(--primary); display: block; }
.banner-content p { color: rgba(255,255,255,.75); font-size: 16px; max-width: 440px; margin-bottom: 2rem; line-height: 1.65; }

.banner-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--black);
  padding: 14px 34px;
  border-radius: 3px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 12px;
  transition: background .2s;
}
.banner-btn:hover { background: var(--primary-dark); color: var(--black); }
.banner-btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 3px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all .2s;
}
.banner-btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* Hero stats sidebar */
.banner-stats {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; gap: 1px;
}
.banner-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: 20px 26px;
  text-align: center;
  min-width: 150px;
  backdrop-filter: blur(6px);
}
.banner-stat-val { font-family: var(--font-display); font-size: 40px; color: var(--primary); display: block; line-height: 1; }
.banner-stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; display: block; }


/* ════════════════════════════════════════
   TICKER
════════════════════════════════════════ */
.ticker-wrap { background: var(--primary); overflow: hidden; padding: 10px 0; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 35s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 2rem;
  font-family: var(--font-cond); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--black);
}
.ticker-sep { width: 5px; height: 5px; background: var(--black); border-radius: 50%; opacity: 0.3; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.statics { background: var(--black); padding: 55px 0; border-top: 1px solid var(--black3); border-bottom: 1px solid var(--black3); }
.single-static { display: flex; align-items: center; gap: 18px; padding: 10px; }
.stat-icon {
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--black); flex-shrink: 0;
}
.single-static .number { display: block; font-family: var(--font-display); font-size: 36px; color: var(--primary); line-height: 1; }
.single-static .title { display: block; font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; font-weight: 700; }


/* ════════════════════════════════════════
   PICKS SECTION
════════════════════════════════════════ */
.picks-section { padding: 80px 0; background: var(--card-bg); }

/* Picks locked */
.picks-locked {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  padding: 60px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.lock-icon { font-size: 48px; color: var(--primary); margin-bottom: 20px; opacity: .8; }
.picks-locked h3 { font-family: var(--font-display); font-size: 28px; color: var(--black); margin-bottom: 14px; }
.picks-locked p { color: var(--muted); margin-bottom: 28px; }
.subscribe-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--black);
  padding: 14px 36px;
  border-radius: 3px;
  font-family: var(--font-cond);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.subscribe-btn:hover { background: var(--primary-dark); color: var(--black); }

/* Picks pending */
.picks-pending {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 60px 40px;
  text-align: center;
}
.clock-icon { font-size: 48px; color: var(--primary); margin-bottom: 20px; }
.picks-pending h3 { font-family: var(--font-display); font-size: 28px; color: var(--black); margin-bottom: 14px; }
.picks-pending p { color: var(--muted); margin-bottom: 20px; }
.pub-time {
  display: inline-block;
  background: rgba(245,197,24,.1);
  border: 1.5px solid rgba(245,197,24,.4);
  color: var(--primary-dark);
  padding: 10px 28px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 22px;
}

/* Picks table */
.picks-table { overflow-x: auto; }
.picks-table .table { background: var(--white); border-radius: 4px; overflow: hidden; color: var(--text); margin: 0; border: 1px solid var(--border); }
.picks-table .table thead th {
  background: var(--black);
  color: rgba(255,255,255,.5);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 16px;
  border: none;
}
.picks-table .table tbody td { padding: 16px; border-top: 1px solid var(--border); vertical-align: middle; color: var(--text); }
.picks-table .table tbody tr:hover { background: var(--card-bg); }
.match-name { display: block; font-family: var(--font-cond); font-weight: 700; font-size: 16px; color: var(--black); }
.league-name { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.kick-time .date { display: block; font-size: 12px; color: var(--muted); }
.kick-time .time { display: block; font-weight: 700; color: var(--black); font-size: 15px; }
.prob-wrap { min-width: 90px; }
.prob-val { font-weight: 700; color: var(--black); font-size: 15px; }
.prob-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: 5px; }
.prob-bar-fill { height: 3px; background: var(--primary); border-radius: 2px; }
.odd-badge {
  background: var(--black);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 18px;
  display: inline-block;
}
.result-win { color: var(--success); font-weight: 700; }
.result-lose { color: var(--danger); font-weight: 700; }
.result-pending { color: var(--primary-dark); font-weight: 700; }

/* Pick type badge */
.pick-type-badge {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
}

/* Combo card */
.combo-card {
  background: var(--black);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.combo-card-label { font-family: var(--font-cond); font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.combo-card-name { font-family: var(--font-cond); font-weight: 700; font-size: 18px; color: var(--white); }
.combo-card-detail { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 2px; }
.combo-card-odd { font-family: var(--font-display); font-size: 44px; color: var(--primary); line-height: 1; text-align: right; }
.combo-card-odd-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.3); text-align: right; }


/* ════════════════════════════════════════
   HOW IT WORKS / METHODOLOGY
════════════════════════════════════════ */
.how-it-works { padding: 80px 0; background: var(--white); }
.single-process {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: left;
  height: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.single-process:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.process-icon { font-size: 28px; color: var(--primary); margin-bottom: 16px; }
.single-process .title { font-family: var(--font-cond); font-weight: 700; font-size: 18px; color: var(--black); margin-bottom: 10px; }
.single-process .title .number { color: var(--primary); }
.single-process p { color: var(--muted); font-size: 14px; }


/* ════════════════════════════════════════
   HISTORIQUE / RESULTS
════════════════════════════════════════ */
.historique { padding: 80px 0; background: var(--card-bg); }
.day-block { margin-bottom: 24px; }
.day-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.day-label { font-family: var(--font-cond); font-weight: 700; font-size: 13px; color: var(--black); white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase; }
.day-line { flex: 1; height: 1px; background: var(--border); }
.day-stats { font-size: 12px; color: var(--muted); white-space: nowrap; font-weight: 600; }
.histo-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  margin-bottom: 6px;
}
.histo-match { flex: 1; font-size: 14px; color: var(--text); font-weight: 600; }
.histo-odd { font-family: var(--font-display); font-weight: 700; color: var(--black); font-size: 18px; margin: 0 8px; }
.badge-win { background: rgba(40,167,69,.1); border: 1px solid rgba(40,167,69,.25); color: #28a745; padding: 3px 14px; border-radius: 2px; font-size: 11px; font-weight: 700; white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase; }
.badge-lose { background: rgba(220,53,69,.08); border: 1px solid rgba(220,53,69,.2); color: #dc3545; padding: 3px 14px; border-radius: 2px; font-size: 11px; font-weight: 700; white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase; }
.badge-pending { background: rgba(245,197,24,.1); border: 1px solid rgba(245,197,24,.3); color: var(--primary-dark); padding: 3px 14px; border-radius: 2px; font-size: 11px; font-weight: 700; white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase; }
.notice-public { font-size: 12px; color: var(--muted); margin-top: 20px; text-align: center; }
.notice-public a { color: var(--primary-dark); font-weight: 600; }


/* ════════════════════════════════════════
   STATS ROI SECTION (fond noir)
════════════════════════════════════════ */
.stats-roi { background: var(--black); padding: 80px 0; }
.stats-roi .section-title h2 { color: var(--white); }
.stats-roi .section-title p { color: rgba(255,255,255,.4); }
.stats-roi .sub-title { color: rgba(245,197,24,.65); }
.stats-roi .sub-title::before { background: var(--primary); }
.stat-block-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 3rem; }
.stat-block {
  background: var(--black2);
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: border-color .2s;
}
.stat-block:hover { border-top-color: var(--primary); }
.stat-block-num { font-family: var(--font-display); font-size: 54px; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.stat-block-num sup { font-size: 24px; vertical-align: super; }
.stat-block-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 8px; font-family: var(--font-cond); }
.stat-block-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 200px; }


/* ════════════════════════════════════════
   EXPERTS / TEAM SECTION
════════════════════════════════════════ */
.experts-section { padding: 80px 0; background: var(--white); }
.experts-photo-zone {
  position: relative;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
}
.experts-photo-zone img { width: 100%; height: 100%; object-fit: cover; }
.experts-photo-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--primary);
  padding: 12px 18px;
  border-radius: 3px;
}
.experts-photo-badge strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--black); line-height: 1; }
.experts-photo-badge span { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(0,0,0,.55); }
.expert-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 3px;
  margin-bottom: 10px;
  transition: box-shadow .2s;
}
.expert-row:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.expert-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--border); object-fit: cover; flex-shrink: 0; }
.expert-name { font-family: var(--font-cond); font-weight: 700; font-size: 16px; color: var(--black); }
.expert-spec { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; }
.expert-winrate { font-family: var(--font-display); font-size: 22px; color: var(--primary-dark); flex-shrink: 0; }


/* ════════════════════════════════════════
   LEAGUES SECTION (fond noir)
════════════════════════════════════════ */
.leagues-section { background: var(--black); padding: 60px 0; }
.leagues-section .section-title h2 { color: var(--white); }
.leagues-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; justify-content: center; }
.league-pill {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  padding: 8px 18px;
  border-radius: 2px;
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all .2s;
  cursor: pointer;
}
.league-pill:hover, .league-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black);
}


/* ════════════════════════════════════════
   ABONNEMENT / SUBSCRIPTION PLAN
════════════════════════════════════════ */
.abonnement { padding: 80px 0; background: var(--card-bg); }
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.plan-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); }
.plan-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--primary); color: var(--black);
  font-family: var(--font-cond); font-weight: 700;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px;
}
.plan-name { font-family: var(--font-display); font-size: 28px; color: var(--black); letter-spacing: 0.01em; }
.plan-price { margin: 24px 0; }
.plan-price .currency { font-size: 22px; color: var(--black); vertical-align: top; margin-top: 8px; display: inline-block; font-weight: 700; }
.plan-price .amount { font-family: var(--font-display); font-size: 60px; color: var(--black); line-height: 1; }
.plan-price .period { font-size: 16px; color: var(--muted); }
.plan-features { text-align: left; margin: 24px 0; }
.plan-features li { padding: 9px 0; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.plan-features .check { color: var(--primary-dark); font-size: 12px; flex-shrink: 0; }
.plan-subscribe {
  display: block; width: 100%; padding: 15px;
  background: var(--primary); color: var(--black);
  font-family: var(--font-cond); font-weight: 700;
  font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 3px; border: none; cursor: pointer;
  margin-top: 24px; transition: background .2s; text-align: center;
}
.plan-subscribe:hover { background: var(--primary-dark); color: var(--black); }
.plan-note { font-size: 11px; color: var(--muted); margin-top: 14px; }
.stripe-logo { margin-top: 12px; font-size: 12px; color: var(--muted); }
.stripe-logo .fab { font-size: 20px; color: #6772e5; margin-right: 4px; }

.benefit-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.benefit-icon {
  width: 42px; height: 42px;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.25);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--primary-dark); flex-shrink: 0;
}
.benefit-text h5 { font-family: var(--font-cond); font-weight: 700; font-size: 16px; color: var(--black); margin-bottom: 4px; }
.benefit-text p { font-size: 13px; color: var(--muted); margin: 0; }


/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonial { padding: 80px 0; background: var(--white); }
.single-testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  text-align: center;
  margin: 10px;
}
.part-pic { display: flex; justify-content: center; margin-bottom: 16px; }
.part-pic img { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--primary); object-fit: cover; }
.icon-for-quot { font-size: 24px; color: var(--primary); opacity: .6; margin-bottom: 16px; display: block; }
.single-testimonial p { color: var(--muted); font-style: italic; margin-bottom: 16px; font-size: 15px; }
.single-testimonial .name { font-family: var(--font-cond); font-weight: 700; font-size: 16px; color: var(--black); }
.single-testimonial .position { font-size: 11px; color: var(--primary-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }


/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  padding: 100px 0; text-align: center;
}
.cta-section .cta-bg { position: absolute; inset: 0; background: center/cover no-repeat; z-index: 0; }
.cta-section .cta-overlay { position: absolute; inset: 0; background: rgba(10,10,10,.88); z-index: 1; }
.cta-section .container { position: relative; z-index: 2; }
.cta-title { font-family: var(--font-display); font-size: clamp(44px, 6vw, 70px); color: var(--white); line-height: 1; margin-bottom: 1rem; }
.cta-title span { color: var(--primary); }
.cta-sub { color: rgba(255,255,255,.5); font-size: 16px; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.6; }


/* ════════════════════════════════════════
   NEWSLETTER SECTION
════════════════════════════════════════ */
.newsletter { background: var(--black); padding: 55px 0; }
.newsletter h3 { font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 6px; }
.newsletter p { color: rgba(255,255,255,.4); font-size: 14px; margin-bottom: 20px; }
.nl-form { display: flex; max-width: 440px; gap: 0; }
.nl-form input {
  flex: 1; padding: 13px 18px;
  border: 1.5px solid rgba(255,255,255,.15); border-right: none;
  background: rgba(255,255,255,.05);
  color: var(--white); font-size: 14px;
  border-radius: 3px 0 0 3px; outline: none;
  font-family: var(--font-body);
}
.nl-form input::placeholder { color: rgba(255,255,255,.3); }
.nl-form button {
  background: var(--primary); border: none;
  padding: 13px 22px; cursor: pointer;
  color: var(--black); font-size: 16px;
  border-radius: 0 3px 3px 0;
  transition: background .2s;
}
.nl-form button:hover { background: var(--primary-dark); }


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: #0a0a0a; padding: 60px 0 0; }
.footer .about-text { color: rgba(255,255,255,.35); font-size: 13px; line-height: 1.7; margin: 16px 0; max-width: 280px; }
.footer-links h4 {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }

/* Langs footer */
.footer-langs { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 1rem; }
.footer-lang {
  color: rgba(255,255,255,.25);
  font-family: var(--font-cond); font-weight: 700;
  font-size: 11px; letter-spacing: 0.05em;
  text-decoration: none;
  padding: 3px 7px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  transition: all .2s;
}
.footer-lang:hover { color: var(--primary); border-color: var(--primary); }

/* Social icons */
.social-links { display: flex; gap: 8px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 14px;
  transition: all .2s;
}
.social-icon:hover { background: var(--primary); border-color: var(--primary); color: var(--black); }

/* App store buttons footer */
.app-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(245,197,24,.05);
  border: 1px solid rgba(245,197,24,.15);
  border-radius: 3px;
  padding: 10px 14px; margin-bottom: 8px;
  text-decoration: none; transition: border-color .2s;
}
.app-btn:hover { border-color: rgba(245,197,24,.4); }
.app-btn-sub { font-size: 10px; color: rgba(255,255,255,.35); line-height: 1; }
.app-btn-name { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.4; }

.copyright-footer { background: #080808; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.04); }
.copyright-text { color: rgba(255,255,255,.2); font-size: 12px; margin: 0; }
.copyright-text a { color: rgba(255,255,255,.3); }
.copyright-text a:hover { color: var(--primary); }

/* Warning disclaimer */
.gambling-warning {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.6;
}


/* ════════════════════════════════════════
   AUTH PAGES
════════════════════════════════════════ */
.auth-section { padding: 80px 0; background: var(--card-bg); min-height: 70vh; display: flex; align-items: center; }
.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 4px;
  padding: 44px 40px;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}
.auth-card h2 { font-family: var(--font-display); font-size: 32px; color: var(--black); margin-bottom: 8px; }
.auth-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.form-group label { font-family: var(--font-cond); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: block; }
.form-control {
  border: 1.5px solid var(--border); border-radius: 3px;
  padding: 11px 14px; font-size: 14px; color: var(--text);
  background: var(--white); width: 100%;
  font-family: var(--font-body);
  transition: border-color .2s;
}
.form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(245,197,24,.1); }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--primary); color: var(--black);
  border: none; border-radius: 3px; cursor: pointer;
  font-family: var(--font-cond); font-weight: 700;
  font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background .2s;
}
.btn-submit:hover { background: var(--primary-dark); }


/* ════════════════════════════════════════
   ACCOUNT PAGE
════════════════════════════════════════ */
.account-section { padding: 60px 0; background: var(--card-bg); }
.account-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 20px;
}
.account-card h4 { font-family: var(--font-cond); font-weight: 700; font-size: 16px; color: var(--black); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sub-status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(40,167,69,.08); border: 1px solid rgba(40,167,69,.2);
  color: var(--success); padding: 5px 14px; border-radius: 2px;
  font-family: var(--font-cond); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
}


/* ════════════════════════════════════════
   ADMIN OVERRIDES (on garde le fond sombre)
════════════════════════════════════════ */
/* L'admin garde ses propres styles, pas de changement nécessaire */


/* ════════════════════════════════════════
   ALERTS & FLASH
════════════════════════════════════════ */
.alert-success { background: rgba(40,167,69,.08); border: 1px solid rgba(40,167,69,.2); color: #1a6b2e; border-radius: 3px; }
.alert-danger  { background: rgba(220,53,69,.06); border: 1px solid rgba(220,53,69,.18); color: #a02030; border-radius: 3px; }
.alert-info    { background: rgba(245,197,24,.08); border: 1px solid rgba(245,197,24,.25); color: #7a6000; border-radius: 3px; }


/* ════════════════════════════════════════
   AFFILIATE DASHBOARD
════════════════════════════════════════ */
.affiliate-section { padding: 60px 0; background: var(--card-bg); }
.aff-stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--primary); border-radius: 4px;
  padding: 24px; text-align: center;
}
.aff-stat-val { font-family: var(--font-display); font-size: 38px; color: var(--black); }
.aff-stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-family: var(--font-cond); }
.aff-ref-box {
  background: var(--black); border-radius: 3px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.aff-ref-url { font-family: var(--font-cond); font-size: 14px; color: rgba(255,255,255,.6); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.aff-copy-btn {
  background: var(--primary); color: var(--black);
  border: none; padding: 7px 16px; border-radius: 2px;
  font-family: var(--font-cond); font-weight: 700;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; flex-shrink: 0;
}


/* ════════════════════════════════════════
   FIXTURE PAGES
════════════════════════════════════════ */
.fixture-section { padding: 60px 0; }
.fixture-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--primary); border-radius: 3px;
  padding: 20px; margin-bottom: 12px;
  transition: box-shadow .2s;
}
.fixture-card:hover { box-shadow: 0 2px 16px rgba(0,0,0,.07); }
.fixture-teams { font-family: var(--font-cond); font-weight: 700; font-size: 18px; color: var(--black); }
.fixture-meta { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }


/* ════════════════════════════════════════
   SEO PAGES (ligues)
════════════════════════════════════════ */
.seo-hero { background: var(--black); padding: 60px 0; text-align: center; }
.seo-hero h1 { font-family: var(--font-display); font-size: 52px; color: var(--white); }
.seo-hero h1 span { color: var(--primary); }
.seo-hero p { color: rgba(255,255,255,.45); max-width: 560px; margin: 12px auto 0; }
.seo-content { padding: 60px 0; }
.seo-content h2 { font-family: var(--font-display); font-size: 32px; color: var(--black); margin-bottom: 12px; }
.seo-content p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 1rem; }


/* ════════════════════════════════════════
   SIMULATEUR
════════════════════════════════════════ */
.simulateur-section { padding: 60px 0; background: var(--card-bg); }
.sim-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: 32px;
}
.sim-result-val { font-family: var(--font-display); font-size: 52px; color: var(--primary-dark); line-height: 1; }
.sim-result-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-family: var(--font-cond); }


/* ════════════════════════════════════════
   BOOKMAKERS PAGE
════════════════════════════════════════ */
.bookmaker-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: 24px;
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 16px;
  transition: box-shadow .2s;
}
.bookmaker-card:hover { box-shadow: 0 2px 14px rgba(0,0,0,.07); }
.bookmaker-logo { width: 100px; flex-shrink: 0; }
.bookmaker-cta {
  background: var(--primary); color: var(--black);
  padding: 10px 22px; border-radius: 3px;
  font-family: var(--font-cond); font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; transition: background .2s;
}
.bookmaker-cta:hover { background: var(--primary-dark); color: var(--black); }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 991px) {
  .banner-stats { display: none; }
  .banner-content h1 { font-size: 44px; }
  .stat-block-wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  section, .picks-section, .historique, .abonnement,
  .experts-section, .how-it-works, .stats-roi { padding: 50px 0; }
  .banner { min-height: 70vh; }
  .banner-content h1 { font-size: 38px; }
  .stat-block-wrap { grid-template-columns: 1fr 1fr; gap: 2px; }
  .combo-card { flex-direction: column; gap: 12px; text-align: center; }
  .auth-card { padding: 28px 20px; }
  .nl-form { flex-direction: column; }
  .nl-form input { border-right: 1.5px solid rgba(255,255,255,.15); border-bottom: none; border-radius: 3px 3px 0 0; }
  .nl-form button { border-radius: 0 0 3px 3px; }
}
@media (max-width: 575px) {
  .banner-content h1 { font-size: 32px; }
  .section-title h2 { font-size: 30px; }
  .stat-block-wrap { grid-template-columns: 1fr; }
}
