/* ============================================================
   Lollybet — Mimic design officiel lolly-bet99.com
   Palette : noir #0d0d0d + rouge #e63946 + bleu marine #0a1428
   Typo : Inter / system stack sans-serif
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg-body:        #1a1a1a;
  --bg-sidebar:     #0d0d0d;
  --bg-header:      #0d0d0d;
  --bg-card:        #1e1e1e;
  --bg-card-alt:    #242424;
  --bg-card-hover:  #2a2a2a;
  --bg-hero:        #0a1428;
  --bg-hero-end:    #1a2a45;
  --bg-section:     #141414;
  --bg-section-alt: #111111;
  --bg-footer:      #0a0a0a;
  --red:            #e63946;
  --red-hover:      #c9212e;
  --red-dark:       #5a0a10;
  --yellow:         #fbbf24;
  --green:          #22c55e;
  --blue-tg:        #229ed9;
  --white:          #ffffff;
  --gray-1:         #e8e8e8;
  --gray-2:         #b0b0b0;
  --gray-3:         #777777;
  --gray-4:         #3a3a3a;
  --gray-5:         #252525;
  --border:         rgba(255,255,255,0.07);
  --border-red:     rgba(230,57,70,0.35);
  --sidebar-w:      240px;
  --header-h:       68px;
  --radius:         8px;
  --radius-sm:      5px;
  --radius-lg:      14px;
  --radius-full:    999px;
  --transition:     all 0.2s ease;
  --shadow:         0 2px 16px rgba(0,0,0,0.7);
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background: var(--bg-body);
  color: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ============================================================
   LAYOUT — Sidebar + Main
   ============================================================ */

.site-wrapper {
  display: flex;
  min-height: 100vh;
  padding-top: var(--header-h);
}

/* ============================================================
   SIDEBAR FIXE
   ============================================================ */

.sidebar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: var(--sidebar-w);
  height: calc(100vh - var(--header-h));
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 200;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-4) transparent;
}

.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: var(--gray-4); border-radius: 4px; }

/* Sidebar bonus CTA */
.sb-bonus {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 10px 8px;
  padding: 13px 16px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.sb-bonus:hover { background: var(--red-hover); }
.sb-bonus-icon { font-size: 18px; flex-shrink: 0; }

/* Sidebar mini-cards 2 colonnes */
.sb-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0 10px 8px;
}

.sb-mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  line-height: 1.2;
}
.sb-mini-card:hover { background: var(--red-hover); }
.sb-mini-card.vip { background: #3d0a1a; border: 1px solid #7a1a30; }
.sb-mini-card.vip:hover { background: #5a1025; }
.sb-mini-card-icon { font-size: 20px; }

/* Sidebar nav links */
.sb-nav { margin: 4px 0; }
.sb-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-1);
  transition: var(--transition);
}
.sb-nav-link:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.sb-nav-link.active { color: var(--white); background: rgba(230,57,70,0.1); }
.sb-nav-icon { font-size: 17px; flex-shrink: 0; width: 22px; text-align: center; }

/* Sidebar separator */
.sb-sep {
  height: 1px;
  background: var(--border);
  margin: 8px 10px;
}

/* Sidebar socials */
.sb-socials {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
}
.sb-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}
.sb-social-icon.tg { background: var(--blue-tg); }
.sb-social-icon.ig { background: linear-gradient(135deg,#fd5949,#d6249f,#285aeb); }
.sb-social-icon.x  { background: #000; border: 1px solid #333; }
.sb-social-icon:hover { transform: scale(1.1); }

/* Sidebar app banner */
.sb-app-banner {
  margin: 8px 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--red), #8b0000);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--white);
  line-height: 1.4;
  transition: var(--transition);
}
.sb-app-banner:hover { filter: brightness(1.1); }
.sb-app-title { font-weight: 700; font-size: 13px; margin-bottom: 4px; }

/* Sidebar live chat button */
.sb-livechat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 10px;
  padding: 10px 14px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.sb-livechat:hover { filter: brightness(1.1); }

/* Sidebar promo code */
.sb-promo { margin: 6px 10px; display: flex; gap: 0; }
.sb-promo input {
  flex: 1;
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--white);
  font: inherit;
  font-size: 12px;
}
.sb-promo input::placeholder { color: var(--gray-3); }
.sb-promo input:focus { outline: none; border-color: var(--red); }
.sb-promo-btn {
  padding: 8px 12px;
  background: var(--red);
  color: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  transition: var(--transition);
}
.sb-promo-btn:hover { background: var(--red-hover); }

/* Sidebar bottom toggles */
.sb-bottom {
  margin-top: auto;
  padding: 10px 16px;
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-2);
  border-top: 1px solid var(--border);
}
.sb-bottom span { cursor: pointer; padding: 4px 8px; border-radius: var(--radius-sm); background: var(--bg-card); }
.sb-bottom span:hover { background: var(--bg-card-alt); }

/* ============================================================
   MAIN CONTENT
   ============================================================ */

.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-width: 0;
}

/* ============================================================
   HEADER STICKY
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  z-index: 300;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.header-logo {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
  font-style: italic;
  user-select: none;
}
.header-logo .logo-lolly { color: var(--white); }
.header-logo .logo-bet   { color: var(--red); }

.header-search {
  flex: 1;
  max-width: 340px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 9px 14px 9px 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  transition: var(--transition);
}
.header-search input::placeholder { color: var(--gray-3); }
.header-search input:focus { outline: none; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); }
.header-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-3);
  font-size: 15px;
  pointer-events: none;
}

.header-toggle {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
}
.header-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-2);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
}
.header-toggle-btn.active {
  background: var(--bg-card);
  color: var(--white);
}
.toggle-cherry { color: var(--red); }
.toggle-ball   { color: #a3d977; }

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-missions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-missions:hover { background: var(--red-hover); }

.btn-login {
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-login:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

.btn-signup {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-signup:hover { background: var(--red-hover); }
.btn-signup-badge {
  position: absolute;
  top: -8px;
  right: -6px;
  background: var(--yellow);
  color: #111;
  font-weight: 900;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ============================================================
   HERO BANNER
   ============================================================ */

.hero {
  background: linear-gradient(135deg, #0a1428 0%, #1a2a45 50%, #0d1e38 100%);
  padding: 48px 32px 40px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230,57,70,0.12) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-pretitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 10px;
}

.hero-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-amount {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--red);
  margin-bottom: 16px;
  letter-spacing: -2px;
  text-shadow: 0 0 40px rgba(230,57,70,0.4);
}

.hero-subtitle {
  font-size: 14px;
  color: var(--gray-1);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.5;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-hero:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(230,57,70,0.5); }

.hero-dots {
  display: flex;
  gap: 6px;
  margin-top: 28px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: var(--transition);
}
.hero-dot.active { background: var(--red); width: 22px; border-radius: 4px; }

/* ============================================================
   2 BANNERS HORIZONTAUX
   ============================================================ */

.dual-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.dual-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #181818;
  border: 1px solid var(--border-red);
  transition: var(--transition);
}
.dual-banner:hover { background: #1e1e1e; }
.dual-banner-icon { font-size: 36px; flex-shrink: 0; }
.dual-banner-text {}
.dual-banner-title {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.dual-banner-desc { font-size: 12px; color: var(--gray-2); line-height: 1.4; }

/* ============================================================
   SECTION — BIGGEST WINS
   ============================================================ */

.section { padding: 32px 24px; }
.section-alt { background: var(--bg-section-alt); }
.section-dark { background: var(--bg-section); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
}
.section-link {
  font-size: 13px;
  color: var(--gray-2);
  transition: var(--transition);
}
.section-link:hover { color: var(--white); }

.biggest-wins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.win-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
}
.win-card:hover { border-color: var(--border-red); background: var(--bg-card-hover); }
.win-card-top {
  display: flex;
  align-items: center;
  gap: 6px;
}
.win-flag { font-size: 18px; }
.win-name { font-size: 13px; font-weight: 600; color: var(--gray-1); }
.win-amount { font-size: 16px; font-weight: 800; color: var(--yellow); }
.win-game { font-size: 11px; color: var(--gray-3); }
.win-game-img {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #2a1a00, #4a3000);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gray-3);
  margin-top: 4px;
}

/* ============================================================
   4 CARDS PRINCIPALES
   ============================================================ */

.main-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.main-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
  cursor: pointer;
}
.main-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.5); }

.main-card-bg-casino {
  background: linear-gradient(160deg, #1a0a2e 0%, #3a1060 50%, #e63946 100%);
}
.main-card-bg-sports {
  background: linear-gradient(160deg, #0a1e10 0%, #0f4025 50%, #22c55e 100%);
}
.main-card-bg-app {
  background: linear-gradient(160deg, #0a1428 0%, #1a3060 50%, #4a90e2 100%);
}
.main-card-bg-cash {
  background: linear-gradient(160deg, #1a1a00 0%, #3a3000 50%, #fbbf24 100%);
}

.main-card-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  opacity: 0.35;
}

.main-card-footer {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.65);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-card-icon { font-size: 18px; }
.main-card-label { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }

/* ============================================================
   2 CARDS (TOURNAMENTS / STORE)
   ============================================================ */

.two-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.two-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
  cursor: pointer;
}
.two-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.5); }
.two-card-bg-tourn { background: linear-gradient(135deg, #1a0a00 0%, #5a2a00 60%, #fbbf24 100%); }
.two-card-bg-store { background: linear-gradient(135deg, #0a1a0a 0%, #1a4a1a 60%, #22c55e 100%); }
.two-card-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  opacity: 0.3;
}
.two-card-footer {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.65);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.two-card-label { font-size: 14px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   JEUX CARDS (Live Casino / All Games)
   ============================================================ */

.games-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.game-card:hover { transform: translateY(-2px); border-color: var(--border-red); box-shadow: 0 4px 16px rgba(0,0,0,0.5); }
.game-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-3);
  text-align: center;
  padding: 4px;
  font-weight: 500;
  overflow: hidden;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-card-footer {
  padding: 7px 8px;
  background: rgba(0,0,0,0.6);
}
.game-card-name { font-size: 11px; font-weight: 700; line-height: 1.2; margin-bottom: 2px; }
.game-card-provider { font-size: 10px; color: var(--gray-3); }

/* Couleurs par jeu (placeholder) */
.gc-crazy-time    { background: linear-gradient(135deg, #1a0a40, #4a20a0, #e040fb); }
.gc-light-roul    { background: linear-gradient(135deg, #1a0a00, #5a2a00, #fbbf24); }
.gc-blackjack     { background: linear-gradient(135deg, #0a1a0a, #1a4010, #2d8a40); }
.gc-war           { background: linear-gradient(135deg, #1a0a0a, #5a0a0a, #e63946); }
.gc-xxx-light     { background: linear-gradient(135deg, #0a0a1a, #1a1a5a, #4040e0); }
.gc-imm-roul      { background: linear-gradient(135deg, #1a0a1a, #4a1040, #c040a0); }
.gc-color-game    { background: linear-gradient(135deg, #1a1a00, #5a5000, #d4a000); }
.gc-blackjack-c   { background: linear-gradient(135deg, #0a1a0a, #0a3a1a, #1a6040); }
.gc-magic-strike  { background: linear-gradient(135deg, #0a0a2a, #2a0a5a, #7040c0); }
.gc-legacy        { background: linear-gradient(135deg, #1a0a00, #4a1a00, #c05000); }
.gc-starburst     { background: linear-gradient(135deg, #1a1a00, #5a3000, #e08000); }
.gc-sweet-bon     { background: linear-gradient(135deg, #1a0a1a, #5a1050, #e060b0); }
.gc-book-fallen   { background: linear-gradient(135deg, #0a0a0a, #2a1a00, #6a4000); }
.gc-bandit        { background: linear-gradient(135deg, #0a1a0a, #0a5020, #10a040); }
.gc-fire-joker    { background: linear-gradient(135deg, #1a0a00, #6a1a00, #ff4400); }
.gc-ice-princess  { background: linear-gradient(135deg, #0a1a2a, #1a4060, #60c0e0); }
.gc-money-moose   { background: linear-gradient(135deg, #0a1a0a, #1a4020, #40b050); }
.gc-moon-princess { background: linear-gradient(135deg, #0a0a1a, #2a0a4a, #8040e0); }
.gc-book-witch    { background: linear-gradient(135deg, #0a0a0a, #1a0a2a, #5a2060); }
.gc-buffalo       { background: linear-gradient(135deg, #1a0a00, #4a2a00, #a06000); }
.gc-burning-hot   { background: linear-gradient(135deg, #1a0a00, #6a0a00, #e03000); }
.gc-aloha         { background: linear-gradient(135deg, #0a1a0a, #0a4020, #20a060); }
.gc-steam-tower   { background: linear-gradient(135deg, #0a1a1a, #1a4040, #406060); }
.gc-chilli        { background: linear-gradient(135deg, #1a0a00, #5a1000, #c04000); }

/* Fleches navigation */
.games-nav {
  display: flex;
  gap: 6px;
}
.games-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray-1);
  transition: var(--transition);
}
.games-nav-btn:hover { background: var(--red); border-color: var(--red); }

/* ============================================================
   SPORTSBOOK BONUS BANNER
   ============================================================ */

.sport-bonus-banner {
  background: linear-gradient(135deg, #1a0010 0%, #3a0020 50%, #5a0030 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sport-bonus-banner-text {}
.sport-bonus-title { font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; }
.sport-bonus-desc { font-size: 14px; color: var(--gray-1); }

.btn-outline-red {
  padding: 11px 24px;
  border: 2px solid var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-outline-red:hover { background: var(--red); }

/* ============================================================
   LOLLY ORIGINALS
   ============================================================ */

.originals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.original-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.original-card:hover { transform: translateY(-2px); border-color: var(--border-red); }
.original-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.og-plinko  { background: linear-gradient(135deg, #1a1a4a, #3a3ab0); }
.og-mines   { background: linear-gradient(135deg, #1a3a0a, #3a8020); }
.og-crash   { background: linear-gradient(135deg, #3a0a0a, #a02020); }
.og-keno    { background: linear-gradient(135deg, #1a0a3a, #6020a0); }
.original-card-footer {
  padding: 10px 14px;
  background: rgba(0,0,0,0.5);
}
.original-card-name { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.original-card-provider { font-size: 11px; color: var(--gray-3); }

/* Dots carrousel */
.carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.carousel-dot.active { background: var(--red); width: 20px; border-radius: 3px; }

/* ============================================================
   RANDOM GAME + MINI CARDS
   ============================================================ */

.random-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: start;
}
.random-card {
  background: var(--red);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 64px;
  cursor: pointer;
  transition: var(--transition);
}
.random-card:hover { background: var(--red-hover); transform: translateY(-2px); }
.random-card-btn {
  padding: 9px 24px;
  background: rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.random-card:hover .random-card-btn { border-color: var(--white); }

.random-right {}
.mini-games-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.mini-game-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-1);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mini-game-card:hover { border-color: var(--border-red); background: var(--bg-card-hover); }
.mini-game-card-icon { font-size: 28px; }
.mgc-new     { background: linear-gradient(135deg, #0a1a3a, #1a3060); }
.mgc-popular { background: linear-gradient(135deg, #1a0a2a, #3a1060); }
.mgc-live    { background: linear-gradient(135deg, #1a0a00, #4a1a00); }

/* Recent winnings mini */
.recent-winnings { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; }
.recent-winnings-title { font-size: 12px; font-weight: 700; color: var(--gray-2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.recent-win-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.recent-win-row:last-child { border-bottom: none; }
.recent-win-flag { font-size: 16px; flex-shrink: 0; }
.recent-win-game { flex: 1; color: var(--gray-1); }
.recent-win-amount { font-weight: 700; color: var(--yellow); white-space: nowrap; }

/* ============================================================
   PROVIDERS
   ============================================================ */

.providers-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.provider-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-2);
  text-align: center;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}
.provider-logo:hover { border-color: rgba(255,255,255,0.2); color: var(--white); background: var(--bg-card-alt); }

/* ============================================================
   SPORTSBOOK BANNER FULL-WIDTH
   ============================================================ */

.sport-full-banner {
  background: linear-gradient(90deg, #c0392b 0%, var(--red) 50%, #e74c3c 100%);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sport-full-title { font-size: 24px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.sport-full-desc { font-size: 14px; color: rgba(255,255,255,0.85); }
.btn-bet {
  padding: 12px 28px;
  background: rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-bet:hover { background: rgba(0,0,0,0.55); border-color: var(--white); }

/* ============================================================
   BLOC SEO
   ============================================================ */

.seo-block {
  background: var(--bg-section-alt);
  padding: 40px 32px;
  border-top: 1px solid var(--border);
}
.seo-block h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.seo-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--gray-1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 3px solid var(--red);
  padding-left: 10px;
}
.seo-block p {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 860px;
}
.seo-block ul {
  list-style: none;
  margin: 10px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seo-block ul li {
  font-size: 14px;
  color: var(--gray-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
  max-width: 860px;
}
.seo-block ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.seo-block strong { color: var(--gray-1); }
.seo-read-more { color: var(--red); font-size: 13px; cursor: pointer; transition: var(--transition); }
.seo-read-more:hover { color: var(--red-hover); text-decoration: underline; }

/* ============================================================
   SECTIONS SEO ENRICHIES (Inscription / VIP / Avis / FAQ)
   ============================================================ */

.seo-extra-section {
  background: var(--bg-section-alt);
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}
.seo-extra-section--alt {
  background: var(--bg-section);
}

.seo-extra-h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.seo-extra-intro {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 28px;
}

.seo-extra-cta-wrap {
  margin-top: 28px;
  text-align: center;
}
.seo-extra-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.seo-extra-cta:hover { background: var(--red-hover); }

/* --- Steps Inscription --- */

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--border-red); }

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body { flex: 1; }
.step-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.step-body p {
  font-size: 13px;
  color: var(--gray-2);
  line-height: 1.6;
  margin: 0;
}

/* --- VIP Tiers --- */

.vip-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.vip-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  transition: var(--transition);
}
.vip-tier:hover { transform: translateY(-2px); }

.vip-tier--bronze { border-top: 3px solid #cd7f32; }
.vip-tier--silver { border-top: 3px solid #c0c0c0; }
.vip-tier--gold   { border-top: 3px solid var(--yellow); }
.vip-tier--platinum { border-top: 3px solid var(--red); background: linear-gradient(180deg, rgba(230,57,70,0.07) 0%, var(--bg-card) 100%); }

.vip-tier-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.vip-tier-icon { font-size: 24px; }
.vip-tier-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vip-tier-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.vip-tier-perks li {
  font-size: 13px;
  color: var(--gray-2);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.vip-tier-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 11px;
}

.vip-note {
  font-size: 13px;
  color: var(--gray-3);
  font-style: italic;
  max-width: 640px;
}

/* --- Reviews / Avis joueurs --- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--border-red); }

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-meta { flex: 1; }
.review-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.review-stars {
  font-size: 13px;
  color: var(--yellow);
  letter-spacing: 1px;
}
.review-text {
  font-size: 13px;
  color: var(--gray-2);
  line-height: 1.65;
  margin: 0;
}

/* --- FAQ --- */

.faq-list {
  max-width: 820px;
  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 0.2s ease;
}
.faq-item[open] { border-color: var(--border-red); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 12px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 20px 16px;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  font-size: 13px;
  color: var(--gray-2);
  line-height: 1.7;
  margin: 12px 0 0;
  max-width: 720px;
}
.faq-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.faq-cta:hover { background: var(--red-hover); }

/* --- Responsive nouvelles sections --- */

@media (max-width: 1024px) {
  .vip-tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .seo-extra-section { padding: 32px 16px; }
  .vip-tiers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .reviews-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .vip-tiers-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 32px 24px 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-link {
  font-size: 12px;
  color: var(--gray-3);
  transition: var(--transition);
}
.footer-link:hover { color: var(--gray-1); }

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-payment {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-3);
  white-space: nowrap;
}

.footer-logo {
  text-align: center;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
}
.footer-logo .logo-lolly { color: var(--gray-1); }
.footer-logo .logo-bet   { color: var(--red); }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.footer-social.fb   { background: #1877f2; }
.footer-social.ig   { background: linear-gradient(135deg,#fd5949,#d6249f,#285aeb); }
.footer-social.x    { background: #000; border: 1px solid #333; }
.footer-social.tg   { background: var(--blue-tg); }
.footer-social:hover { transform: scale(1.1); }

.footer-legal {
  font-size: 11px;
  color: var(--gray-4);
  line-height: 1.6;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 16px;
}
.footer-legal a { color: var(--gray-3); text-decoration: underline; }
.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: var(--gray-4);
  margin-top: 12px;
}

/* ============================================================
   DRAWER MOBILE — SIDEBAR COLLAPSABLE
   ============================================================ */

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 190;
}
.sidebar-overlay.open { display: block; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */

.sticky-mobile-cta { display: none; }

/* ============================================================
   RESPONSIVE — Mobile < 768px
   ============================================================ */

@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .biggest-wins-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --sidebar-w: 0px; }

  .sidebar {
    transform: translateX(-100%);
    width: 260px;
    transition: transform 0.3s ease;
    z-index: 210;
  }
  .sidebar.open { transform: translateX(0); }

  .main-content { margin-left: 0; }

  .header-hamburger { display: flex; }

  .header-search { max-width: 180px; }
  .btn-missions { display: none; }
  .btn-login    { display: none; }

  .hero { padding: 32px 20px 28px; }
  .hero-amount { font-size: 46px; }
  .hero-title  { font-size: 22px; }

  .dual-banners { grid-template-columns: 1fr; }

  .biggest-wins-grid { grid-template-columns: repeat(2, 1fr); }
  .main-cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .two-cards-grid    { grid-template-columns: 1fr; }
  .originals-grid    { grid-template-columns: repeat(2, 1fr); }

  .games-grid { grid-template-columns: repeat(3, 1fr); }

  .random-row { grid-template-columns: 1fr; }
  .mini-games-row { grid-template-columns: repeat(3, 1fr); }

  .sport-bonus-banner { flex-direction: column; text-align: center; }
  .sport-full-banner  { flex-direction: column; text-align: center; }

  .section { padding: 24px 16px; }
  .seo-block { padding: 28px 16px; }

  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: var(--bg-header);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    gap: 10px;
  }
  .sticky-mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
  }
  .sticky-btn-login {
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
  }
  .sticky-btn-signup {
    background: var(--red);
    color: var(--white);
  }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .biggest-wins-grid { grid-template-columns: 1fr 1fr; }
  .main-cards-grid { grid-template-columns: 1fr 1fr; }
  .originals-grid { grid-template-columns: 1fr 1fr; }
  .mini-games-row { grid-template-columns: repeat(3, 1fr); }

  .header-search { display: none; }
  .header-toggle { display: none; }

  .hero-amount { font-size: 38px; }

  .sport-full-banner { padding: 20px 16px; }
}
