/* ═══════════════════════════════════════════════════════════
   HolyLuck Casino — Premium Emerald Gold Theme
   Domain: holyluckcasino.games | Lang: fr-FR
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Dark backgrounds — deep forest/emerald night */
  --bg-deep:      #030a05;
  --bg-dark:      #060f08;
  --bg-card:      #0a1a0d;
  --bg-card2:     #0f2214;
  --bg-card3:     #142b19;

  --border:       rgba(255,255,255,.07);
  --border-green: rgba(52,211,153,.28);
  --border-gold:  rgba(212,175,55,.28);

  /* Brand colors */
  --emerald:      #10b981;
  --emerald-light:#34d399;
  --emerald-dim:  #059669;
  --emerald-glow: rgba(16,185,129,.2);

  --gold:         #d4af37;
  --gold-light:   #f0d060;
  --gold-dark:    #a07820;

  --purple:       #7c3aed;
  --purple-light: #a78bfa;
  --cyan:         #06b6d4;
  --green:        #22c55e;
  --red:          #ef4444;

  --text-main:    #f0faf4;
  --text-muted:   #7dab8a;
  --text-dim:     #3d6b4a;

  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #34d399 50%, #059669 100%);
  --gradient-gold:    linear-gradient(135deg, #d4af37 0%, #f0d060 50%, #a07820 100%);
  --gradient-hero:    linear-gradient(160deg, #030a05 0%, #0a1a0d 40%, #071408 100%);
  --gradient-card:    linear-gradient(145deg, #0a1a0d, #0f2214);
  --gradient-btn:     linear-gradient(135deg, #10b981, #34d399);
  --gradient-btn-gold: linear-gradient(135deg, #d4af37, #f0d060);
  --gradient-magic:   linear-gradient(135deg, #10b981 0%, #7c3aed 50%, #d4af37 100%);

  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-green: 0 0 30px rgba(16,185,129,.3), 0 8px 32px rgba(0,0,0,.7);
  --shadow-gold:  0 0 30px rgba(212,175,55,.25), 0 8px 32px rgba(0,0,0,.7);
  --shadow-card:  0 4px 24px rgba(0,0,0,.6), 0 1px 0 rgba(255,255,255,.03) inset;

  --font:       'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
  --transition: .2s cubic-bezier(.4,0,.2,1);
  --max-w:      1240px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--emerald-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--emerald-dim); border-radius: 3px; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--bg-card2);
  border-top: 1px solid var(--border-green);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  animation: slideUp .4s ease;
}
#cookie-banner p { flex: 1; font-size: .85rem; color: var(--text-muted); }
#cookie-banner a { color: var(--emerald-light); }
.cookie-buttons { display: flex; gap: 10px; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ── SHAMROCK FLOAT ANIMATION ── */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .6; }
  50%       { transform: translateY(-18px) rotate(10deg); opacity: 1; }
}
.shamrock-float {
  animation: float 4s ease-in-out infinite;
  display: inline-block;
}

/* ── HEADER / NAV ── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(3,10,5,.93);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-green);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.5px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo .holy { color: var(--emerald-light); text-shadow: 0 0 20px rgba(52,211,153,.5); }
.logo .luck { color: var(--gold); text-shadow: 0 0 20px rgba(212,175,55,.4); }
.logo .clover { font-size: 1.1rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  display: block;
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover { color: var(--emerald-light); background: rgba(16,185,129,.07); }
.nav-links li a.active { color: var(--emerald-light); }

.nav-cta {
  background: var(--gradient-btn) !important;
  color: var(--bg-deep) !important;
  font-weight: 800 !important;
  padding: 8px 20px !important;
  border-radius: 100px !important;
  box-shadow: 0 0 20px rgba(16,185,129,.35);
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); color: var(--bg-deep) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--emerald-light);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px;
  font-size: .9rem; font-weight: 700; cursor: pointer;
  border: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap; letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-green {
  background: var(--gradient-btn);
  color: var(--bg-deep);
  box-shadow: var(--shadow-green);
}
.btn-green:hover { filter: brightness(1.1); box-shadow: 0 0 40px rgba(16,185,129,.45), 0 8px 32px rgba(0,0,0,.6); color: var(--bg-deep); }

.btn-gold {
  background: var(--gradient-btn-gold);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { filter: brightness(1.1); color: var(--bg-deep); }

.btn-outline {
  background: transparent;
  color: var(--emerald-light);
  border: 1.5px solid var(--emerald-dim);
}
.btn-outline:hover { background: rgba(16,185,129,.08); border-color: var(--emerald-light); color: var(--emerald-light); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-dark);
}
.btn-outline-gold:hover { background: rgba(212,175,55,.08); border-color: var(--gold); color: var(--gold-light); }

.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); color: var(--text-main); }

.btn-magic {
  background: var(--gradient-magic);
  color: #fff;
  box-shadow: 0 0 30px rgba(16,185,129,.2), 0 0 30px rgba(124,58,237,.15);
}
.btn-magic:hover { filter: brightness(1.1); color: #fff; }

.btn-lg  { padding: 16px 36px; font-size: 1rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.1rem; border-radius: 100px; }
.btn-full { width: 100%; }
.btn-sm  { padding: 8px 18px; font-size: .82rem; }

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 24px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/img/hero-banner.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(.25) saturate(1.6) hue-rotate(10deg);
  transform: scale(1.05);
  transition: transform 12s ease;
}
.hero:hover .hero-bg { transform: scale(1.08); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(3,10,5,.88) 0%,
    rgba(6,15,8,.72) 40%,
    rgba(3,10,5,.92) 100%
  );
}
/* Emerald left-edge accent */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: var(--gradient-btn);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 20px rgba(16,185,129,.6);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 64px; align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 20px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3);
  color: var(--emerald-light); font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; width: fit-content;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -.03em;
}
.hero h1 .line1 { color: var(--text-main); display: block; }
.hero h1 .line2 {
  background: var(--gradient-emerald);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}
.hero h1 .line3 {
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; font-size: .75em;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.7; max-width: 540px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 8px;
}
.stat-box {
  background: rgba(10,26,13,.8); border: 1px solid var(--border-green);
  border-radius: var(--radius); padding: 14px 12px; text-align: center;
  backdrop-filter: blur(8px);
}
.stat-box .num { font-size: 1.5rem; font-weight: 900; color: var(--emerald-light); display: block; line-height: 1.2; }
.stat-box .num.gold { color: var(--gold); }
.stat-box .lbl { font-size: .72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO CARD */
.hero-card {
  background: linear-gradient(145deg, rgba(10,26,13,.97), rgba(15,34,20,.97));
  border: 1px solid var(--border-green); border-radius: var(--radius-xl);
  padding: 36px 32px; backdrop-filter: blur(24px);
  box-shadow: var(--shadow-green); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-btn);
}
.offer-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: .9rem;
}
.offer-row:last-of-type { border-bottom: none; }
.offer-label { color: var(--text-muted); }
.offer-value { font-weight: 700; color: var(--emerald-light); }
.offer-value.gold  { color: var(--gold); }
.offer-value.purple { color: var(--purple-light); }

/* ── TICKER / PROMO BAR ── */
.promo-bar {
  background: linear-gradient(90deg, var(--bg-card2), var(--bg-card3), var(--bg-card2));
  border-top: 1px solid var(--border-green); border-bottom: 1px solid var(--border-green);
  overflow: hidden; height: 44px; display: flex; align-items: center;
}
.promo-bar-inner {
  display: flex; animation: ticker 32s linear infinite; white-space: nowrap;
}
.promo-bar-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 32px; font-size: .82rem; color: var(--text-muted);
  border-right: 1px solid var(--border);
}
.ticker-item .hl { color: var(--emerald-light); font-weight: 600; }
.ticker-item .hg { color: var(--gold); font-weight: 600; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { max-width: var(--max-w); margin: 0 auto; padding: 100px 24px; }
.section-sm { padding: 64px 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--emerald-light); margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--emerald-dim);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
  letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px;
}
.section-title .e  { color: var(--emerald-light); }
.section-title .g  { color: var(--gold); }
.section-title .p  { color: var(--purple-light); }
.section-sub {
  font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ── CARD BASE ── */
.card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.card:hover { border-color: var(--border-green); transform: translateY(-4px); box-shadow: var(--shadow-green); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16,185,129,.4), transparent);
  opacity: 0; transition: opacity .3s;
}
.card:hover::before { opacity: 1; }

/* ── FEATURES GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.feature-card:hover { border-color: var(--border-green); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 20px rgba(16,185,129,.1); }
.feature-icon {
  width: 52px; height: 52px; background: rgba(16,185,129,.1);
  border: 1px solid var(--border-green); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.feature-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ── BONUS GRID ── */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .bonus-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bonus-grid { grid-template-columns: 1fr; } }

.bonus-card {
  background: var(--gradient-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.bonus-card.featured { border-color: var(--border-green); background: linear-gradient(145deg, #0a1a0d, #162d1e); }
.bonus-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-btn);
}
.bonus-card.gold-card { border-color: var(--border-gold); background: linear-gradient(145deg, #14110a, #231c0e); }
.bonus-card.gold-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-btn-gold);
}
.bonus-card:hover { transform: translateY(-4px); border-color: var(--border-green); box-shadow: var(--shadow-green); }
.bonus-badge {
  position: absolute; top: -1px; right: 20px;
  background: var(--gradient-btn); color: var(--bg-deep);
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 0 0 8px 8px;
}
.bonus-badge.gold-badge { background: var(--gradient-btn-gold); }
.bonus-icon  { font-size: 2.8rem; margin-bottom: 12px; }
.bonus-amount { font-size: 2.2rem; font-weight: 900; color: var(--emerald-light); line-height: 1; margin-bottom: 8px; }
.bonus-amount.gold-amount { color: var(--gold); }
.bonus-title  { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.bonus-desc   { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.bonus-meta   { background: var(--bg-card3); border-radius: 10px; padding: 12px; font-size: .8rem; margin-bottom: 16px; text-align: left; }
.bonus-meta-row { display: flex; justify-content: space-between; padding: 4px 0; }
.bonus-meta-row .k { color: var(--text-muted); }
.bonus-meta-row .v { font-weight: 600; }
.bonus-terms { font-size: .72rem; color: var(--text-dim); margin-top: 10px; }

/* ── GAMES GRID ── */
.games-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.tab-btn {
  background: var(--bg-card2); border: 1px solid var(--border); color: var(--text-muted);
  padding: 8px 18px; border-radius: 100px; font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--border-green); color: var(--emerald-light); }
.tab-btn.active { background: rgba(16,185,129,.12); border-color: var(--emerald-light); color: var(--emerald-light); font-weight: 700; }

.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .games-grid { grid-template-columns: 1fr 1fr; } }

.game-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; display: block; transition: transform .3s ease;
}
.game-card:hover { transform: scale(1.04); }
.game-thumb { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.game-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(3,10,5,.95) 0%, transparent 100%); padding: 12px;
}
.game-name     { font-size: .82rem; font-weight: 700; color: var(--text-main); }
.game-provider { font-size: .72rem; color: var(--text-dim); }
.game-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0);
  background: var(--gradient-btn); color: var(--bg-deep);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700;
  transition: transform .2s ease; box-shadow: var(--shadow-green);
}
.game-card:hover .game-play-btn { transform: translate(-50%,-50%) scale(1); }

/* ── PAYMENT TABLE ── */
.payment-table { width: 100%; border-collapse: separate; border-spacing: 0 6px; font-size: .88rem; }
.payment-table thead tr { background: var(--bg-card3); }
.payment-table th {
  padding: 14px 16px; text-align: left; font-size: .78rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted);
}
.payment-table td {
  padding: 14px 16px; background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.payment-table td:first-child { border-left: 1px solid var(--border); border-radius: 8px 0 0 8px; }
.payment-table td:last-child  { border-right: 1px solid var(--border); border-radius: 0 8px 8px 0; }
.payment-table tr:hover td { border-color: var(--border-green); }
.fast { color: var(--emerald-light); font-weight: 600; }
.badge-free {
  background: rgba(16,185,129,.1); color: var(--emerald-light);
  border: 1px solid rgba(16,185,129,.2); padding: 2px 8px;
  border-radius: 100px; font-size: .75rem; font-weight: 600;
}

/* ── SCORECARD ── */
.scorecard { background: var(--gradient-card); border: 1px solid var(--border-green); border-radius: var(--radius-xl); overflow: hidden; margin: 40px 0; }
.scorecard-header {
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(124,58,237,.05));
  border-bottom: 1px solid var(--border-green); padding: 28px 32px;
  display: flex; align-items: center; gap: 24px;
}
.score-big     { font-size: 4rem; font-weight: 900; line-height: 1; color: var(--emerald-light); }
.score-stars   { font-size: 1.4rem; margin-bottom: 4px; }
.score-label   { font-size: .85rem; color: var(--text-muted); }
.scorecard-body { padding: 28px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.score-item-top { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: 8px; }
.score-item-label { color: var(--text-muted); }
.score-item-val   { font-weight: 700; color: var(--emerald-light); }
.score-bar  { height: 5px; background: var(--bg-card3); border-radius: 100px; overflow: hidden; }
.score-fill { height: 100%; border-radius: 100px; background: var(--gradient-emerald); transition: width 1.2s cubic-bezier(.4,0,.2,1); }

/* ── PROS/CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.pros { background: rgba(16,185,129,.05); border: 1px solid rgba(16,185,129,.2); border-radius: var(--radius-lg); padding: 24px; }
.cons { background: rgba(239,68,68,.05);  border: 1px solid rgba(239,68,68,.15);  border-radius: var(--radius-lg); padding: 24px; }
.pros h3 { color: var(--emerald-light); margin-bottom: 14px; font-size: .95rem; }
.cons h3 { color: var(--red);           margin-bottom: 14px; font-size: .95rem; }
.pros li, .cons li { font-size: .875rem; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.04); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.pros li::before { content: '✓'; color: var(--emerald-light); flex-shrink: 0; font-weight: 700; }
.cons li::before { content: '✗'; color: var(--red);           flex-shrink: 0; font-weight: 700; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item:hover  { border-color: var(--border-green); }
.faq-item.open   { border-color: var(--border-green); }
.faq-q {
  padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-size: .92rem; font-weight: 600; color: var(--text-main); gap: 16px;
}
.faq-q:hover { color: var(--emerald-light); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(16,185,129,.1); border: 1px solid var(--border-green);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--emerald-light); flex-shrink: 0;
  transition: transform var(--transition), background var(--transition); font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(16,185,129,.2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 20px 18px; font-size: .875rem; color: var(--text-muted); line-height: 1.75; }

/* ── COUNTDOWN ── */
.countdown-bar {
  background: linear-gradient(135deg, rgba(16,185,129,.07), rgba(10,26,13,.95));
  border: 1px solid var(--border-green); border-radius: var(--radius-lg);
  padding: 24px 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin: 32px 0;
}
.countdown-label-text { font-size: .85rem; color: var(--text-muted); flex: 1; min-width: 140px; }
.countdown { display: flex; gap: 12px; align-items: center; }
.cd-item { text-align: center; min-width: 56px; }
.cd-num { display: block; font-size: 2rem; font-weight: 900; color: var(--emerald-light); line-height: 1; font-variant-numeric: tabular-nums; }
.cd-unit { display: block; font-size: .65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.cd-sep { font-size: 1.4rem; color: var(--emerald-dim); font-weight: 700; margin-bottom: 8px; }

/* ── ODDS WIDGET ── */
.odds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 700px) { .odds-grid { grid-template-columns: 1fr; } }
.odds-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; transition: all var(--transition); }
.odds-card:hover { border-color: var(--border-green); }
.odds-sport { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.odds-sport .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald-light); }
.odds-teams { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; gap: 8px; }
.odds-team { font-size: .88rem; font-weight: 600; }
.odds-vs { font-size: .72rem; color: var(--text-dim); flex-shrink: 0; }
.odds-btns { display: grid; grid-template-columns: 1fr auto 1fr; gap: 6px; }
.odd-btn {
  background: var(--bg-card3); border: 1px solid var(--border); color: var(--text-muted);
  font-size: .82rem; font-weight: 600; padding: 8px; border-radius: 8px; cursor: pointer;
  transition: all var(--transition); text-align: center; display: flex; flex-direction: column; gap: 2px;
  text-decoration: none;
}
.odd-btn:hover { border-color: var(--emerald-light); color: var(--emerald-light); background: rgba(16,185,129,.06); }
.odd-btn.draw  { background: rgba(124,58,237,.05); border-color: rgba(124,58,237,.2); }
.odd-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; color: var(--text-dim); }
.odd-value { font-size: .95rem; font-weight: 800; color: var(--text-main); }
.odd-btn:hover .odd-value { color: var(--emerald-light); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(16,185,129,.08) 0%, rgba(10,26,13,.98) 50%, rgba(124,58,237,.05) 100%);
  border: 1px solid var(--border-green); border-radius: var(--radius-xl);
  padding: 72px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-btn); }
.cta-section::after  { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(16,185,129,.3), transparent); }
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 14px; }
.cta-section p  { color: var(--text-muted); font-size: 1rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── INFO BOX ── */
.info-box {
  background: rgba(16,185,129,.06); border: 1px solid rgba(16,185,129,.2);
  border-left: 3px solid var(--emerald-light); border-radius: var(--radius);
  padding: 20px 24px; font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin: 20px 0;
}
.warning-box {
  background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.2);
  border-left: 3px solid var(--red); border-radius: var(--radius);
  padding: 20px 24px; font-size: .88rem; color: var(--text-muted); line-height: 1.75; margin: 20px 0;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(160deg, var(--bg-card2) 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border-green);
  padding: 64px 24px 56px; text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.02em; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25);
  padding: 6px 16px; border-radius: 100px; font-size: .82rem; color: var(--emerald-light);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: var(--max-w); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--text-dim); border-bottom: 1px solid var(--border);
}
.breadcrumb a     { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--emerald-light); }
.breadcrumb .sep  { color: var(--text-dim); }
.breadcrumb .current { color: var(--text-muted); }

/* ── BG CARD SECTIONS ── */
.bg-card { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bg-card .inner { max-width: var(--max-w); margin: 0 auto; padding: 100px 24px; }

/* ── SPORT CARD ── */
.sport-card {
  background: var(--gradient-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; text-align: center; transition: all .3s ease;
}
.sport-card:hover { border-color: var(--border-green); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.sport-card .s-icon  { font-size: 2.4rem; margin-bottom: 10px; }
.sport-card .s-name  { font-size: .88rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.sport-card .s-count { font-size: .75rem; color: var(--text-dim); }

/* ── LOGIN PAGE ── */
.login-outer {
  min-height: calc(100vh - 70px); display: flex; align-items: center; justify-content: center;
  padding: 60px 24px; background: var(--gradient-hero);
}
.login-card {
  background: var(--gradient-card); border: 1px solid var(--border-green);
  border-radius: var(--radius-xl); padding: 48px 44px; width: 100%; max-width: 460px;
  text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-green);
}
.login-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-btn); }
.login-logo  { font-size: 1.6rem; font-weight: 900; margin-bottom: 4px; }
.login-logo .holy { color: var(--emerald-light); }
.login-logo .luck { color: var(--gold); }
.login-sub   { color: var(--text-muted); font-size: .88rem; margin-bottom: 24px; }
.login-offer {
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(124,58,237,.05));
  border: 1px solid var(--border-green); border-radius: var(--radius);
  padding: 14px 20px; font-size: .88rem; color: var(--emerald-light); margin-bottom: 24px; line-height: 1.6;
}
.login-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--text-dim); font-size: .8rem; }
.login-divider::before, .login-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.login-trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 20px; }
.trust-item { background: var(--bg-card3); border: 1px solid var(--border); border-radius: 10px; padding: 10px 8px; font-size: .75rem; color: var(--text-dim); text-align: center; }
.trust-item .icon { font-size: 1.2rem; display: block; margin-bottom: 4px; }

/* ── COMPARISON TABLE ── */
.comp-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: .88rem; }
.comp-table thead { background: var(--bg-card3); }
.comp-table th { padding: 14px 16px; text-align: left; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-dim); font-weight: 600; border-bottom: 2px solid var(--border-green); }
.comp-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.comp-table tr:hover td { background: rgba(16,185,129,.03); }
.comp-table td:first-child { font-weight: 600; color: var(--text-main); }

/* ── FOOTER ── */
footer { background: var(--bg-card); border-top: 1px solid var(--border-green); padding: 64px 24px 0; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; max-width: 280px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-item { background: var(--bg-card3); border: 1px solid var(--border); color: var(--text-dim); font-size: .72rem; padding: 4px 10px; border-radius: 100px; }
.badge-18 { background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.2); color: var(--red); font-weight: 700; }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--emerald-light); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { font-size: .85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links li a:hover { color: var(--emerald-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0 32px; gap: 16px; flex-wrap: wrap; }
.footer-legal { font-size: .78rem; color: var(--text-dim); line-height: 1.6; }
.footer-legal a { color: var(--text-dim); }
.footer-legal a:hover { color: var(--emerald-light); }

/* ── SCROLL-TO-TOP ── */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
  background: var(--gradient-btn); color: var(--bg-deep); border: none; border-radius: 50%;
  font-size: 1.1rem; font-weight: 900; cursor: pointer; display: none;
  align-items: center; justify-content: center; box-shadow: var(--shadow-green); z-index: 999; transition: all var(--transition);
}
#scroll-top:hover { transform: translateY(-3px); filter: brightness(1.1); }
#scroll-top.visible { display: flex; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── IMG BANNER ── */
.img-banner { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 8px 40px rgba(0,0,0,.6); }

/* ── UTILITIES ── */
.green-text { color: var(--emerald-light); }
.gold-text  { color: var(--gold); }
.muted-text { color: var(--text-muted); }
.centered   { text-align: center; }
.mt-8  { margin-top: 8px; }  .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; } .mb-32 { margin-bottom: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .hero { min-height: auto; padding: 80px 24px 60px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: rgba(3,10,5,.98); padding: 24px; gap: 4px; z-index: 999; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.1rem; padding: 14px 16px; border-radius: 10px; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .scorecard-body { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .cta-section { padding: 48px 24px; }
  .section { padding: 64px 24px; }
  .bg-card .inner { padding: 64px 24px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .login-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}
