/* ============================================================
   JULIUS CASINO — style.css
   Palette: bg #020107, accent #dd901c (gold), header/footer #44266a (purple)
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #020107;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}
a { color: #dd901c; text-decoration: none; transition: color .2s; }
a:hover { color: #f0b050; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ---- HEADER OFFSET variable ---- */
:root {
  --gold: #dd901c;
  --gold-light: #f0b050;
  --purple: #44266a;
  --purple-light: #5a3488;
  --bg: #020107;
  --bg2: #0d0c14;
  --bg3: #13101e;
  --text: #ffffff;
  --text-muted: #b0a8c8;
  --border: rgba(221,144,28,0.25);
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --header-h: 70px;
}

/* ---- CONTAINER ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   FLOATING BAR
   ============================================================ */
.floating-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, #2a1040 0%, #44266a 100%);
  border-top: 2px solid var(--gold);
  z-index: 9999;
  padding: 10px 20px;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.floating-bar.visible { transform: translateY(0); }
.floating-bar__inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.floating-bar__bonus { font-size: 15px; font-weight: 600; }
.floating-bar__bonus strong { color: var(--gold); font-size: 18px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #e5960a 0%, #dd901c 50%, #c07a10 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: .5px;
  transition: all .25s;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(221,144,28,.35);
  text-decoration: none;
}
.btn-cta:hover {
  background: linear-gradient(135deg, #f0aa30 0%, #e5960a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(221,144,28,.5);
  color: #fff !important;
}
.btn-cta--floating { padding: 11px 24px; font-size: 14px; }
.btn-cta--hero { font-size: 20px; padding: 18px 48px; border-radius: 50px; }
.btn-cta--main { font-size: 17px; padding: 15px 36px; }
.btn-cta--large { font-size: 20px; padding: 18px 48px; }
.cta-center { text-align: center; margin: 30px 0; }
.cta-disclaimer { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--purple);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 20px;
}
.logo-img {
  height: 54px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.logo-text {
  font-size: 22px; font-weight: 800; color: #fff; letter-spacing: 1px;
}
.logo-text-sm { font-size: 16px; font-weight: 800; color: #fff; }
.logo-accent { color: var(--gold); }
.header__nav { display: flex; }
.nav__list { display: flex; gap: 6px; align-items: center; }
.nav__link {
  color: #fff; font-size: 14px; font-weight: 600; padding: 8px 12px;
  border-radius: 6px; transition: all .2s;
}
.nav__link:hover { color: var(--gold); background: rgba(255,255,255,.08); }
.header__btns { display: flex; gap: 10px; }
.btn-header {
  padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all .2s; border: none;
}
.btn-header--login {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4);
}
.btn-header--login:hover { border-color: var(--gold); color: var(--gold); }
.btn-header--register { background: var(--gold); color: #fff; }
.btn-header--register:hover { background: var(--gold-light); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px; background: #fff;
  border-radius: 2px; transition: all .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  margin-top: var(--header-h);
  background-image: url('../img/hero-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  border-bottom: 2px solid var(--gold);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(2,1,7,.85) 0%,
    rgba(2,1,7,.60) 50%,
    rgba(2,1,7,.20) 100%
  );
  pointer-events: none;
}
.hero__link {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 60px 20px;
  text-align: center;
  position: relative; z-index: 1;
}
.hero__content { max-width: 700px; width: 100%; }
.hero__badge {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: 13px; font-weight: 700; padding: 6px 16px;
  border-radius: 20px; margin-bottom: 18px; letter-spacing: .5px;
}
.hero__title {
  font-size: clamp(42px, 6vw, 72px); font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero__subtitle {
  font-size: 18px; color: var(--text-muted); margin-bottom: 10px; font-weight: 500;
}
.hero__bonus {
  font-size: clamp(22px, 3.5vw, 36px); font-weight: 800;
  color: var(--gold); margin-bottom: 30px; line-height: 1.2;
}
.hero__disclaimer { font-size: 12px; color: var(--text-muted); margin-top: 14px; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  padding: 12px 20px; background: var(--bg2);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.breadcrumbs__list { display: flex; gap: 6px; align-items: center; }
.breadcrumbs__list li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs__list li:not(:last-child)::after { content: '›'; color: var(--text-muted); }
.breadcrumbs__list a { color: var(--text-muted); }
.breadcrumbs__list a:hover { color: var(--gold); }
.updated-badge {
  background: rgba(221,144,28,.15); border: 1px solid var(--gold);
  color: var(--gold); font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
}

/* ============================================================
   CONTENT WRAP
   ============================================================ */
.content-wrap { padding: 40px 0 80px; }

/* ============================================================
   SECTIONS TYPOGRAPHY
   ============================================================ */
section { margin-bottom: 60px; }
section h2 {
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  color: #fff; margin-bottom: 20px; padding-top: 10px;
  border-left: 4px solid var(--gold); padding-left: 16px;
}
section h3 { font-size: 20px; font-weight: 700; color: var(--gold-light); margin: 24px 0 12px; }
section h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
section p { margin-bottom: 14px; font-size: 16px; color: #e0d8f0; line-height: 1.8; }

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.toc {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 36px;
}
.toc__head {
  font-size: 16px; font-weight: 700; color: var(--gold);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.toc__list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 6px;
}
.toc__list a {
  color: var(--text-muted); font-size: 14px; padding: 4px 0;
  display: block; transition: color .2s;
}
.toc__list a:hover { color: var(--gold); }
.toc__list a::before { content: '▸ '; color: var(--gold); font-size: 11px; }

/* ============================================================
   RATING CARD
   ============================================================ */
.rating-card {
  background: linear-gradient(135deg, var(--bg3) 0%, #1a102e 100%);
  border: 2px solid var(--gold); border-radius: 16px;
  padding: 28px; display: flex; gap: 24px; align-items: flex-start;
  flex-wrap: wrap; margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(221,144,28,.15);
}
.rating-card__logo { min-width: 140px; }
.rating-card__stars { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.rating-card__stars i { color: var(--gold); font-size: 18px; }
.rating-card__score { font-size: 18px; font-weight: 800; color: var(--gold); }
.rating-card__bonus { font-size: 16px; margin-bottom: 12px; color: #e0d8f0; }
.rating-card__bonus strong { color: var(--gold); }
.rating-card__features li {
  font-size: 14px; padding: 4px 0; color: #e0d8f0;
  display: flex; align-items: center; gap: 8px;
}
.rating-card__features i { color: #4ade80; font-size: 13px; }
.rating-card__info { flex: 1; min-width: 220px; }
.rating-card__cta { min-width: 180px; text-align: center; }
.rating-card__note { font-size: 11px; color: var(--text-muted); margin-top: 8px; }

/* ============================================================
   INFO TABLE
   ============================================================ */
.info-table-wrap { overflow-x: auto; margin-bottom: 20px; }
.info-table { border-collapse: collapse; width: 100%; }
.info-table th {
  background: var(--purple); color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 16px; text-align: left; border: 1px solid rgba(221,144,28,.3);
}
.info-table td {
  padding: 11px 16px; font-size: 14px; color: #e0d8f0;
  border: 1px solid rgba(255,255,255,.07);
}
.info-table tbody tr:nth-child(odd) { background: rgba(255,255,255,.03); }
.info-table tbody tr:nth-child(even) { background: rgba(68,38,106,.2); }
.info-table tbody tr:hover { background: rgba(221,144,28,.08); }
.table-note { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ============================================================
   BONUS CARDS
   ============================================================ */
.bonus-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin: 28px 0;
}
.bonus-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; text-align: center;
  position: relative; transition: transform .2s, box-shadow .2s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bonus-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #1a102e 0%, #2a1040 100%);
  box-shadow: 0 4px 24px rgba(221,144,28,.2);
}
.bonus-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.bonus-card__num { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.bonus-card__amount { font-size: 15px; color: #e0d8f0; margin-bottom: 8px; }
.bonus-card__amount strong { font-size: 28px; color: var(--gold); display: block; }
.bonus-card__spins { font-size: 18px; font-weight: 700; color: #a78bfa; margin-bottom: 6px; }
.bonus-card__game { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.bonus-card__min { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   BONUS CONDITIONS
   ============================================================ */
.bonus-conditions {
  background: var(--bg3); border-left: 4px solid var(--gold);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0;
}
.conditions-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #e0d8f0; padding: 5px 0;
}
.conditions-list i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* ============================================================
   PROMOS GRID
   ============================================================ */
.promos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin: 20px 0;
}
.promo-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; transition: border-color .2s;
}
.promo-item:hover { border-color: var(--gold); }
.promo-item__icon { font-size: 28px; margin-bottom: 10px; }
.promo-item h4 { font-size: 15px; color: var(--gold-light); margin-bottom: 8px; }
.promo-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calculator-section { background: var(--bg3); border-radius: 16px; padding: 32px; }
.calculator-section h2 { border-left-color: #a78bfa; }
.calculator { margin-top: 24px; }
.calculator__inputs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field label { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.calc-field input, .calc-field select {
  background: var(--bg2); border: 1px solid var(--border);
  color: #fff; padding: 12px 16px; border-radius: 8px;
  font-size: 15px; font-family: 'Montserrat', sans-serif;
  outline: none; transition: border-color .2s;
}
.calc-field input:focus, .calc-field select:focus { border-color: var(--gold); }
.calc-field select option { background: var(--bg2); }
.btn-calc {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff; border: none; padding: 14px 36px;
  border-radius: var(--radius); font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: 'Montserrat', sans-serif;
  transition: all .2s; box-shadow: 0 4px 16px rgba(124,58,237,.35);
  width: 100%;
}
.btn-calc:hover { background: linear-gradient(135deg, #8b5cf6, #c084fc); transform: translateY(-2px); }
.calculator__result {
  margin-top: 24px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: none;
}
.calculator__result.visible { display: block; animation: fadeIn .3s ease; }
.calc-result-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px;
  margin-bottom: 16px;
}
.calc-result-item { text-align: center; }
.calc-label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.calc-value { display: block; font-size: 22px; font-weight: 800; color: #fff; }
.calc-value--bonus { color: #4ade80; }
.calc-value--total { color: var(--gold); font-size: 26px; }
.calc-note { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   GAME TABS
   ============================================================ */
.game-tabs { margin: 24px 0; }
.game-tabs__nav {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
  border-bottom: 1px solid var(--border); padding-bottom: 12px;
}
.game-tab-btn {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text-muted); padding: 10px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: all .2s;
}
.game-tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.game-tab-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.game-tab-panel { display: none; }
.game-tab-panel.active { display: block; animation: fadeIn .3s; }
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px;
}
.game-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; text-align: center;
  transition: all .2s;
}
.game-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.game-card__img { font-size: 36px; margin-bottom: 10px; }
.game-card__name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.game-card__provider { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; }
.game-card__btn {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: 12px; font-weight: 700; padding: 7px 18px;
  border-radius: 6px; cursor: pointer; transition: background .2s; border: none;
}
.game-card__btn:hover { background: var(--gold-light); color: #fff; }

/* ============================================================
   PROVIDERS
   ============================================================ */
.providers-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0;
}
.provider-badge {
  background: var(--bg3); border: 1px solid var(--border);
  color: #e0d8f0; padding: 10px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600; transition: all .2s;
}
.provider-badge:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   PAYMENT LIMITS
   ============================================================ */
.limits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin: 16px 0;
}
.limit-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
}
.limit-card__label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; }
.limit-card__value { display: block; font-size: 26px; font-weight: 800; color: var(--gold); }

/* ============================================================
   MOBILE FEATURES
   ============================================================ */
.mobile-features {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin: 24px 0;
}
.mobile-feature {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px;
}
.mobile-feature i { color: var(--gold); font-size: 20px; flex-shrink: 0; }
.mobile-feature span { font-size: 14px; font-weight: 600; color: #e0d8f0; }

/* ============================================================
   SECURITY GRID
   ============================================================ */
.security-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; margin: 24px 0;
}
.security-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; transition: border-color .2s;
}
.security-item:hover { border-color: var(--gold); }
.security-item__icon { font-size: 32px; margin-bottom: 12px; }
.security-item h3 { font-size: 16px; color: var(--gold-light); margin-bottom: 8px; }
.security-item p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ============================================================
   PROS / CONS
   ============================================================ */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 20px 0; }
.pros, .cons {
  background: var(--bg3); border-radius: var(--radius); padding: 24px;
}
.pros { border-top: 3px solid #4ade80; }
.cons { border-top: 3px solid #f87171; }
.pros h3 { color: #4ade80; margin-bottom: 14px; font-size: 18px; }
.cons h3 { color: #f87171; margin-bottom: 14px; font-size: 18px; }
.pros li, .cons li {
  font-size: 14px; color: #e0d8f0; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06); line-height: 1.6;
}
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before { content: '✓ '; color: #4ade80; font-weight: 700; }
.cons li::before { content: '✗ '; color: #f87171; font-weight: 700; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table .highlight-col { background: rgba(221,144,28,.12); font-weight: 700; }
.comparison-table th.highlight-col { background: var(--gold); color: #fff; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-summary { text-align: center; margin: 20px 0 30px; }
.reviews-score__num { font-size: 56px; font-weight: 800; color: var(--gold); line-height: 1; }
.reviews-score__stars { margin: 8px 0; }
.reviews-score__stars i { color: var(--gold); font-size: 22px; }
.reviews-score__count { font-size: 14px; color: var(--text-muted); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px;
}
.review-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: border-color .2s;
}
.review-card:hover { border-color: rgba(221,144,28,.5); }
.review-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.review-stars i { color: var(--gold); font-size: 13px; }
.review-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0 0 10px; }
.review-date { font-size: 12px; color: rgba(176,168,200,.5); }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: border-color .2s;
}
.step:hover { border-color: var(--gold); }
.step__num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold);
  color: #fff; font-weight: 800; font-size: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.step__content h3 { font-size: 16px; color: #fff; margin-bottom: 6px; }
.step__content p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 20px; background: none; border: none;
  color: #fff; font-size: 15px; font-weight: 600; font-family: 'Montserrat', sans-serif;
  cursor: pointer; text-align: left; transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question i { color: var(--gold); font-size: 14px; transition: transform .3s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
}
.faq-answer.open {
  max-height: 600px; padding: 0 20px 18px;
}
.faq-answer p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.8; }

/* ============================================================
   VERDICT BOX
   ============================================================ */
.verdict-box {
  background: linear-gradient(135deg, var(--bg3) 0%, #1a102e 100%);
  border: 2px solid var(--gold); border-radius: 16px; padding: 32px;
  display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(221,144,28,.15); margin-bottom: 28px;
}
.verdict-score { text-align: center; min-width: 140px; }
.verdict-score__num { font-size: 64px; font-weight: 800; color: var(--gold); line-height: 1; }
.verdict-score__label { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.verdict-score__stars i { color: var(--gold); font-size: 20px; }
.verdict-text { flex: 1; min-width: 260px; }
.verdict-text p { font-size: 15px; color: #e0d8f0; margin-bottom: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--purple);
  border-top: 2px solid rgba(255,255,255,.1);
  padding: 48px 0 0; margin-bottom: 56px;
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__tagline { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.footer__logo-img { height: 42px; width: auto; }
.footer__nav-col h4 { font-size: 14px; color: #fff; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer__nav-col ul li { margin-bottom: 8px; }
.footer__nav-col ul a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footer__nav-col ul a:hover { color: var(--gold); }
.footer__trust h4 { font-size: 14px; color: #fff; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #e0d8f0; font-size: 11px; font-weight: 600; padding: 5px 10px;
  border-radius: 4px;
}
.footer__providers {
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: 13px; color: var(--text-muted);
}
.fp {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 4px 12px; border-radius: 4px; font-size: 12px; color: #e0d8f0;
}
.footer__disclaimer {
  padding: 20px 0; font-size: 12px; color: var(--text-muted); line-height: 1.8;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__bottom {
  padding: 16px 0; text-align: center;
  font-size: 13px; color: var(--text-muted);
}
.footer__bottom a { color: var(--gold); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; right: 20px; bottom: 70px; z-index: 999;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold); color: #fff; border: none; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 16px rgba(221,144,28,.35);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── TABLET / SMALL DESKTOP ── */
@media (max-width: 992px) {
  /* Header */
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .header__btns { display: none; }

  /* Mobile nav drawer */
  .header__nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--purple);
    padding: 16px 20px 20px;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header__nav.open .nav__list {
    flex-direction: column; gap: 4px; width: 100%;
  }
  .header__nav.open .nav__link {
    display: block; padding: 12px 16px; font-size: 15px;
    border-radius: 8px; border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .header__nav.open .header__btns {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: 16px; width: 100%;
  }
  .header__nav.open .btn-header {
    width: 100%; text-align: center; padding: 13px 20px; font-size: 15px;
  }

  /* Hero */
  .hero__title { font-size: 36px; }
  .hero__bonus { font-size: 22px; }
  .hero__link { padding: 48px 20px; }

  /* Layout grids */
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .rating-card { flex-direction: column; }
  .verdict-box { flex-direction: column; align-items: flex-start; }

  /* Calculator */
  .calculator-section { padding: 24px 20px; }
}

/* ── MOBILE (≤ 640px) ── */
@media (max-width: 640px) {
  /* Base */
  html { font-size: 15px; }
  .container { padding: 0 16px; }

  /* Header */
  --header-h: 62px;
  .header__inner { height: var(--header-h); gap: 12px; }
  .logo-img { height: 36px; }
  .hamburger { padding: 8px 4px; }
  .hamburger span { width: 24px; }

  /* Hero */
  .hero {
    min-height: 340px;
    background-position: left center;
  }
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(2,1,7,.78) 0%,
      rgba(2,1,7,.65) 60%,
      rgba(2,1,7,.78) 100%
    );
  }
  .hero__link { padding: 36px 20px; }
  .hero__title { font-size: clamp(26px, 8vw, 34px); }
  .hero__bonus { font-size: 18px; }
  .hero__subtitle { font-size: 15px; }
  .hero__badge { font-size: 11px; padding: 5px 12px; }
  .btn-cta--hero { font-size: 16px; padding: 14px 28px; border-radius: 40px; }
  .btn-cta--large { font-size: 16px; padding: 14px 28px; }
  .btn-cta--main { font-size: 15px; padding: 13px 24px; }

  /* Content */
  .content-wrap { padding: 28px 0 64px; }
  section { margin-bottom: 40px; }
  section h2 { font-size: 20px; padding-left: 12px; }
  section h3 { font-size: 17px; }
  section p { font-size: 15px; }

  /* TOC */
  .toc { padding: 16px; }
  .toc__list { grid-template-columns: 1fr; }

  /* Rating card */
  .rating-card { padding: 20px 16px; gap: 16px; }
  .rating-card__cta { width: 100%; }
  .rating-card__cta .btn-cta { width: 100%; }

  /* Bonus cards */
  .bonus-cards { grid-template-columns: 1fr; }
  .bonus-card { padding: 20px 16px; }

  /* Tables — horizontal scroll on mobile */
  .info-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
  .info-table th, .info-table td { padding: 9px 12px; font-size: 13px; white-space: nowrap; }

  /* Games grid */
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .game-card { padding: 12px; }
  .game-card__img { font-size: 28px; }

  /* Game tab buttons — scrollable row */
  .game-tabs__nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; gap: 6px; }
  .game-tab-btn { white-space: nowrap; flex-shrink: 0; padding: 9px 14px; font-size: 13px; }

  /* Calculator */
  .calculator-section { padding: 20px 16px; border-radius: 12px; }
  .calculator__inputs { grid-template-columns: 1fr; gap: 14px; }
  .calc-result-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .calc-value { font-size: 18px; }
  .calc-value--total { font-size: 22px; }

  /* Pros/cons */
  .pros-cons { gap: 16px; }
  .pros, .cons { padding: 18px 16px; }

  /* Verdict */
  .verdict-box { padding: 22px 16px; gap: 20px; }
  .verdict-score__num { font-size: 52px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-score__num { font-size: 44px; }

  /* Steps */
  .step { padding: 16px; gap: 14px; }
  .step__num { width: 36px; height: 36px; font-size: 15px; }

  /* Providers */
  .providers-grid { gap: 8px; }
  .provider-badge { padding: 8px 14px; font-size: 13px; }

  /* Limits */
  .limits-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .limit-card { padding: 16px 12px; }
  .limit-card__value { font-size: 22px; }

  /* Footer */
  .footer { padding: 36px 0 0; margin-bottom: 70px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 24px; }
  .footer__logo-img { height: 36px; }
  .footer__bottom { font-size: 12px; }

  /* Breadcrumbs */
  .breadcrumbs { flex-direction: column; align-items: flex-start; padding: 10px 16px; }
  .updated-badge { font-size: 11px; }

  /* Floating bar */
  .floating-bar { padding: 8px 16px; }
  .floating-bar__inner { flex-direction: row; flex-wrap: wrap; gap: 6px; justify-content: space-between; align-items: center; }
  .floating-bar__bonus { font-size: 13px; }
  .floating-bar__bonus strong { font-size: 15px; }
  .btn-cta--floating { padding: 9px 18px; font-size: 13px; white-space: nowrap; }

  /* Scroll-top button */
  .scroll-top { right: 12px; bottom: 76px; width: 40px; height: 40px; font-size: 14px; }

  /* Promo grid */
  .promos-grid { grid-template-columns: 1fr; }

  /* Security grid */
  .security-grid { grid-template-columns: 1fr; }

  /* Mobile features */
  .mobile-features { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { font-size: 14px; padding: 15px 16px; }
}

/* ── EXTRA SMALL (≤ 390px) ── */
@media (max-width: 390px) {
  .hero { background-position: left center; }
  .hero__title { font-size: 24px; }
  .btn-cta--hero { font-size: 15px; padding: 13px 22px; }
  .hero__bonus { font-size: 16px; }
  .calc-result-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .limits-grid { grid-template-columns: 1fr; }
  .rating-card__logo { min-width: unset; width: 100%; }
  .game-tabs__nav { gap: 4px; }
  .game-tab-btn { padding: 8px 11px; font-size: 12px; }
  section h2 { font-size: 18px; }
}

/* ============================================================
   JS STATES – styles pilotés par main.js
   ============================================================ */

/* Hamburger : animation X quand le menu est ouvert */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav link active (surbrillance au scroll) */
.nav__link.active {
  color: var(--gold) !important;
  font-weight: 700;
}

/* FAQ : bouton ouvert – couleur gold */
.faq-question.is-open {
  color: var(--gold);
}

/* Calculateur : message d'erreur */
.calc-error {
  color: #ff6b6b;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.3);
  border-radius: var(--radius);
  text-align: center;
}

/* Game tabs : panels masqués par défaut (JS gère display) */
.game-tab-panel {
  /* display géré inline par JS — pas de conflit avec CSS */
}

/* TOC mobile – tête cliquable */
.toc__head[role="button"] {
  user-select: none;
}
.toc__head[role="button"]:hover {
  color: var(--gold-light);
}
