/* ============ MAFIA CASINO — France ============ */
@font-face {
  font-family: "Pricedown";
  src: url("fonts/Pricedown.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid rgba(120,180,255,.35); outline-offset: 3px; border-radius: 2px; }

/* ============ THEME ============ */
:root {
  --bg: #1D1F23;
  --panel: #25282e;
  --panel2: #2a2d34;
  --panel3: #1a1c20;
  --panel1: #141c28;
  --stroke: #2a3648;
  --stroke2: #3b4a61;
  --strokeSoft: rgba(255,255,255,.08);
  --text: #d6dde7;
  --muted: #9aa7ba;
  --muted2: rgba(255,255,255,.45);
  --accent: #C41E3A;
  --accentHover: #E31837;
  --accentSoft: rgba(196, 30, 58, .25);
  --gold: #d4af37;
  --goldSoft: rgba(212, 175, 55, .2);
  --red1: #ff2a4f;
  --red2: #b90f28;
  --red3: #6f0817;
  --blue1: #2a3b55;
  --blue2: #1a273a;
  --blue3: #0d1422;
  --shadow: 0 24px 60px rgba(0,0,0,.5);
  --shadow2: 0 12px 30px rgba(0,0,0,.4);
  --r12: 12px;
  --r16: 16px;
  --sidebarW: 260px;
}

/* ============ LAYOUT ============ */
.app {
  display: grid;
  grid-template-columns: var(--sidebarW) 1fr;
  min-height: 100vh;
}
.contentCol { min-width: 0; display: flex; flex-direction: column; }
.main {
  min-width: 0;
  padding: 16px 18px 100px;
}

/* ============ SIDEBAR (desktop) ============ */
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 16px 12px 16px 16px;
  background: var(--panel3);
  border-right: 1px solid var(--stroke);
  overflow: auto;
  scrollbar-gutter: stable;
}
.brandRow {
  display: flex;
  align-items: center;
  padding: 8px 6px 14px;
}
.brandLogoLink { display: block; }
.brandLogo { height: 40px; width: auto; object-fit: contain; }

.searchBox {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 12px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  margin-bottom: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 6px 14px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -1px 0 rgba(0,0,0,.3);
}
.searchBox input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 13px;
}
.searchBox input::placeholder { color: var(--muted2); }
.sIcon { width: 18px; height: 18px; opacity: .8; flex: 0 0 auto; color: var(--muted); }

.navGroup { margin-top: 8px; }
/* Sidebar items — ref .side-item / .side-item.active */
.navItem {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: flex-start;
  height: 44px;
  padding: 0 18px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 800;
  font-size: 13px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 45%),
    linear-gradient(180deg, #1a2230, #121a27);
  box-shadow: 0 6px 14px rgba(0,0,0,.4);
  transition: filter .15s ease, box-shadow .15s ease;
}
.navItem::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.navItem:hover { filter: brightness(1.06); color: var(--text); }
.navItem.active {
  color: #fff0f3;
  border-color: rgba(255,60,95,.65);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, #3a141e, #260c14 55%, #1a0a0f 100%);
  box-shadow:
    0 10px 18px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,60,95,.18),
    0 0 22px rgba(255,40,80,.14),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -2px 0 rgba(0,0,0,.35);
}
.navItem.active::before {
  background: linear-gradient(180deg, #ff3a5b, #b40f27);
  box-shadow: 0 0 10px rgba(255,50,90,.35), inset 0 1px 0 rgba(255,255,255,.15);
}
.navItem img, .navItem .navIcon { width: 18px; height: 18px; object-fit: contain; opacity: .9; flex-shrink: 0; }
.navItem .navIcon { color: var(--muted); }
.navItem img { filter: brightness(0) invert(0.72) sepia(0.15) saturate(1.2) hue-rotate(195deg); }
.navItem:hover .navIcon { color: var(--text); }
.navItem:hover img { filter: brightness(0) invert(0.88) sepia(0.1) saturate(1) hue-rotate(195deg); }
.navItem.active img { filter: brightness(0) invert(1); }
.navItem.active .navIcon { color: #fff0f3; }
.navSub {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted2);
}
.navItem.active .navSub { color: rgba(255,255,255,.8); }
.navIcon { display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.navIconLive {
  font-size: 9px;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  padding: 2px 4px;
  border-radius: 4px;
}
.navIconGlobe { font-size: 16px; }
.navFooter { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--stroke2); }

/* ============ DRAWER (mobile menu) ============ */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: var(--panel3);
  border-right: 1px solid var(--stroke);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform .25s ease;
  overflow-y: auto;
  padding-bottom: 24px;
}
.drawer.open { transform: translateX(0); }
.drawer[aria-hidden="false"] { transform: translateX(0); }
.drawerHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--stroke2);
}
.drawerClose {
  width: 40px;
  height: 40px;
  border: 1px solid var(--stroke2);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 6px 14px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.3);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: filter .15s ease, transform .08s ease;
}
.drawerClose:hover { filter: brightness(1.1); }
.drawerClose:active { transform: translateY(1px); }
.drawerLogo img { height: 36px; width: auto; }
.drawerActions {
  display: flex;
  gap: 10px;
  padding: 16px;
}
.drawerActions .ui-btn { flex: 1; text-align: center; }
.drawer .searchBox { margin: 0 16px 16px; }
.drawerNav { padding: 0 8px; }
.drawerNav .navItem { margin-bottom: 2px; }
.drawerFooter { margin-top: 16px; padding: 16px 8px 0; border-top: 1px solid var(--stroke2); }
.drawerBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.drawerBackdrop.visible { opacity: 1; visibility: visible; }

/* ============ TOPBAR ============ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px 14px;
  background: var(--panel3);
  border-bottom: 1px solid var(--stroke);
}
.menuBtn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--stroke2);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 6px 14px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.3);
  color: var(--text);
  cursor: pointer;
  transition: filter .15s ease, transform .08s ease;
}
.menuBtn:hover { filter: brightness(1.1); }
.menuBtn:active { transform: translateY(1px); }
.menuBtn span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.topbarLogo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.topbarLogo img { height: 32px; width: auto; }
.topbarSearch {
  flex: 1;
  max-width: 360px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 6px 14px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -1px 0 rgba(0,0,0,.3);
}
.topbarSearch input {
  pointer-events: none;
  cursor: pointer;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
}
.topbarSearch input::placeholder { color: var(--muted2); }
.topbarActions { display: flex; align-items: center; gap: 10px; }
.topbarActions .ui-btn.top { min-width: 110px; }

/* ============ BUTTONS (ref: ui-btn, top, join) ============ */
.ui-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 8px 18px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.35);
  transition: transform .08s ease, filter .15s ease, box-shadow .15s ease;
}
.ui-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 1px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 45%);
  opacity: .7;
  mix-blend-mode: screen;
}
.ui-btn:hover { filter: brightness(1.08); }
.ui-btn:active { transform: translateY(1px); filter: brightness(0.98); }
.ui-btn:focus-visible { outline: 2px solid rgba(120,180,255,.35); outline-offset: 3px; }

/* Top right: SE CONNECTER / S'INSCRIRE */
.ui-btn.top {
  width: 130px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--blue1), var(--blue2) 60%, var(--blue3) 100%);
  border-color: var(--stroke2);
  box-shadow:
    0 10px 20px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.45);
}
.ui-btn.top:hover {
  box-shadow:
    0 12px 24px rgba(0,0,0,.55),
    0 0 0 1px rgba(110,170,255,.15),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.45);
}

/* Main CTA: PARTICIPER MAINTENANT */
.ui-btn.join {
  height: 58px;
  padding: 0 34px;
  font-size: 18px;
  border-color: rgba(255,80,110,.6);
  color: #ffe9ee;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, var(--red1) 0%, #e41437 35%, var(--red2) 70%, var(--red3) 100%);
  box-shadow:
    0 14px 28px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,45,90,.25),
    0 0 28px rgba(255,40,80,.22),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -2px 0 rgba(0,0,0,.35);
}
.ui-btn.join::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px; top: 10px;
  height: 16px;
  border-radius: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.22), rgba(255,255,255,0));
  opacity: .65;
  pointer-events: none;
  filter: blur(.2px);
}
.ui-btn.join:hover { filter: brightness(1.08); }
.ui-btn.join:active { transform: translateY(1px); filter: brightness(0.98); }

.btnPromo { margin-top: 12px; }

/* Tabs (mobile) — ref frame */
.tabsWrap { padding: 0 0 12px; border-bottom: 1px solid var(--stroke2); margin-bottom: 12px; }
.tabs { display: flex; gap: 8px; }
.tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  height: 40px;
  padding: 0 16px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 6px 14px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.3);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transition: filter .15s ease, box-shadow .15s ease;
}
.tab:hover { filter: brightness(1.06); color: var(--text); }
.tab.active {
  color: var(--text);
  border-color: var(--stroke2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--blue1), var(--blue2) 60%, var(--blue3) 100%);
  box-shadow:
    0 8px 16px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.4);
}
.tab:active { transform: translateY(1px); }

/* ============ HERO ============ */
.hero {
  margin-top: 12px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  box-shadow: 0 12px 28px rgba(0,0,0,.5);
}
.heroSlides { position: relative; min-height: 320px; }
.heroSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.heroSlide.active { opacity: 1; visibility: visible; position: relative; }
.heroInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  align-items: stretch;
}
.heroText {
  padding: 28px 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, rgba(29,31,35,.95) 0%, rgba(29,31,35,.6) 60%, transparent 100%);
}
.heroKicker {
  font-family: "Pricedown", sans-serif;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.heroKickerRed {
  font-family: "Pricedown", sans-serif;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,60,95,.5);
  color: #ffe9ee;
  font-weight: 800;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, var(--red1) 0%, var(--red2) 70%, var(--red3) 100%);
  box-shadow:
    0 4px 12px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.15),
    inset 0 -1px 0 rgba(0,0,0,.3);
}
.heroTitle {
  font-family: "Pricedown", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 2.5vw, 42px);
  line-height: 1.15;
  margin: 8px 0 4px;
  color: #fff;
  letter-spacing: -0.02em;
}
.heroTitleSub { font-size: clamp(22px, 2vw, 36px); margin-top: 0; }
.heroActions { margin-top: 20px; }
.heroArt {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.heroArt img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.heroArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter .15s ease, transform .08s ease, background .15s ease;
}
.heroArrow:hover {
  background: rgba(255,255,255,.08);
}
.heroArrow:active { transform: translateY(-50%) translateY(1px); }
.heroArrowPrev { left: 12px; }
.heroArrowNext { right: 12px; }
.heroDots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.heroDot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .2s ease;
}
.heroDot:hover {
  background: rgba(255,255,255,.15);
}
.heroDot.active {
  border-color: rgba(255,60,95,.7);
  background: rgba(255,60,95,.35);
}

/* ============ FILTER BAR ============ */
.filterBar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 4px;
  margin-top: 16px;
  scrollbar-width: none;
}
.filterBar::-webkit-scrollbar { display: none; }
.filterChip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  color: var(--muted);
  padding: 0 14px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 6px 14px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.3);
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter .15s ease, color .15s ease;
}
.filterChip:hover { filter: brightness(1.08); color: var(--text); }
.filterChip:active { transform: translateY(1px); }
.filterIcon { width: 18px; height: 18px; opacity: .9; flex-shrink: 0; color: var(--muted); }
.icon-fire, .icon-live, .icon-roulette, .icon-mic { color: var(--muted); }

/* ============ SECTIONS ============ */
.section { margin-top: 24px; }
.sectionHead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.sectionHead h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.sectionHead .spacer { flex: 1 1 auto; }
.sectionLink {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 2px;
  border: 1px solid rgba(255,60,95,.4);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, #2a1418, #1a0c10 60%, #120a0c 100%);
  box-shadow:
    0 6px 14px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.3);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #ffb3c1;
  margin-right: 8px;
  transition: filter .15s ease;
}
.sectionLink:hover { filter: brightness(1.15); text-decoration: none; }
.sectionLink:active { transform: translateY(1px); }
.roundArrows { display: flex; gap: 8px; }
.arrow {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 6px 14px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.3);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: filter .15s ease, transform .08s ease;
}
.arrow:hover { filter: brightness(1.1); color: var(--text); }
.arrow:active { transform: translateY(1px); }

/* ============ HORIZONTAL SCROLL / CARDS ============ */
.hScroll {
  display: flex;
  gap: 14px;
  overflow: auto;
  padding: 6px 4px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.2) transparent;
}
.hScroll::-webkit-scrollbar { height: 8px; }
.hScroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 999px; }
.hScroll::-webkit-scrollbar-track { background: transparent; }
.card {
  scroll-snap-align: start;
  min-width: 180px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0) 30%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 8px 20px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -1px 0 rgba(0,0,0,.25);
  overflow: hidden;
  cursor: pointer;
  transition: transform .12s ease, filter .15s ease, box-shadow .15s ease;
}
.card:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 12px 26px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.3);
}
.card .thumb {
  height: 120px;
  background: linear-gradient(180deg, var(--panel2) 0%, var(--panel) 100%);
  position: relative;
}
.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tagNouveau {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid rgba(255,60,95,.5);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #ffe9ee;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, var(--red1) 0%, var(--red2) 70%, var(--red3) 100%);
  box-shadow:
    0 4px 10px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.15),
    inset 0 -1px 0 rgba(0,0,0,.3);
}
.tagExclusive {
  border-color: rgba(168,85,247,.5);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, #a855f7, #ec4899 70%, #be185d 100%);
  box-shadow:
    0 4px 10px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.15),
    inset 0 -1px 0 rgba(0,0,0,.3);
}
.card .meta { padding: 10px 12px 12px; }
.card .title {
  font-weight: 800;
  font-size: 12px;
  margin: 0 0 6px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.card .sub {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pillJackpot {
  margin-left: auto;
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid rgba(255,60,95,.4);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .2px;
  white-space: nowrap;
  color: #ffb3c1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, #2a1418, #1a0c10 60%, #120a0c 100%);
  box-shadow:
    0 4px 10px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.25);
}
.hScrollLarge .card { min-width: 220px; }
.hScrollLarge .card .thumb { height: 140px; }

/* Paris sportifs: карточки вертикальные, картинка без обрезки */
.hScrollSportifs .card { min-width: 160px; }
.hScrollSportifs .card .thumb { height: 220px; }
.hScrollSportifs .card .thumb img { object-fit: contain; }

/* ============ PROMO STRIP ============ */
.promoStrip {
  margin-top: 20px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 160px;
  position: relative;
  box-shadow:
    0 10px 24px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 -1px 0 rgba(0,0,0,.3);
}
.promoStrip > div:first-child {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 55%;
  background: linear-gradient(90deg, rgba(29,31,35,.96) 0%, rgba(29,31,35,.75) 70%, transparent 100%);
}
.promoTitle { font-size: 20px; font-weight: 900; margin: 0; color: #fff; }
.promoSub { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.promoArt {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.promoArt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============ SEO ============ */
.seo {
  margin-top: 32px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0) 20%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 8px 20px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 -1px 0 rgba(0,0,0,.25);
  padding: 24px;
  color: var(--muted);
  line-height: 1.55;
}
.seo h1 { margin: 0 0 16px; font-size: 1.5rem; font-weight: 900; color: var(--text); }
.seo h2 { margin: 28px 0 12px; font-size: 1.25rem; font-weight: 800; color: var(--text); line-height: 1.35; }
.seo p { margin: 0 0 14px; }
.seo ul { margin: 0 0 14px; padding-left: 1.5em; }
.seo li { margin-bottom: 6px; }
.seo-table-wrap { overflow-x: auto; margin: 16px 0 24px; border-radius: 2px; border: 1px solid var(--stroke2); }
.seo-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.seo-table th, .seo-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--stroke2); }
.seo-table th { background: var(--panel2); font-weight: 700; color: var(--text); }
.seo-table tbody tr:last-child td { border-bottom: 0; }
/* FAQ accordion */
.seo-faq-item {
  border: 1px solid var(--stroke2);
  border-radius: 2px;
  margin-bottom: 10px;
  background: var(--panel1);
  overflow: hidden;
}
.seo-faq-item summary {
  padding: 12px 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.seo-faq-item summary::-webkit-details-marker { display: none; }
.seo-faq-item summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  opacity: .8;
  flex-shrink: 0;
  margin-left: 10px;
}
.seo-faq-item[open] summary::after { content: "−"; }
.seo-faq-item p {
  margin: 0;
  padding: 0 14px 14px;
  border-top: 1px solid var(--stroke2);
  padding-top: 10px;
  font-weight: 400;
}

/* ============ FOOTER ============ */
.siteFooter {
  margin-top: 40px;
  padding: 32px 24px 50px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.2) 100%),
    #16181c;
  border-top: 1px solid var(--stroke);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.footerInner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.footerTitle {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted2);
}
.footerCol a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--muted);
  transition: color .15s;
}
.footerCol a:hover { color: var(--text); }
.footerApp {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  margin-bottom: 16px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 8px 18px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.35);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--text);
  transition: filter .15s ease, transform .08s ease;
}
.footerApp:hover { filter: brightness(1.08); }
.footerApp:active { transform: translateY(1px); }
.footerAppIcon { font-size: 20px; }
.footerSocial {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, var(--panel1), var(--panel2));
  box-shadow:
    0 6px 14px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.3);
  color: var(--text);
  margin-top: 8px;
  transition: filter .15s ease, transform .08s ease;
}
.footerSocial svg { display: block; }
.footerSocial:hover { filter: brightness(1.1); }
.footerSocial:active { transform: translateY(1px); }

/* ============ BOTTOM NAV (mobile) ============ */
.bottomNav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
  display: none;
  gap: 6px;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.4) 100%),
    rgba(22,24,28,.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--stroke);
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
  z-index: 70;
}
.bItem {
  flex: 1 1 0;
  min-width: 0;
  padding: 8px 6px;
  border-radius: 2px;
  border: 1px solid var(--stroke2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, #1a2230, #121a27);
  box-shadow:
    0 4px 12px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -1px 0 rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  transition: filter .15s ease, box-shadow .15s ease;
}
.bItem:hover { filter: brightness(1.06); color: var(--text); }
.bItem.active {
  color: #fff0f3;
  border-color: rgba(255,60,95,.5);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, #3a141e, #260c14 55%, #1a0a0f 100%);
  box-shadow:
    0 6px 14px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,60,95,.15),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.35);
}
.bItem:active { transform: translateY(1px); }
.bItemIcon { font-size: 18px; line-height: 1; color: var(--muted); }
.bItem:hover .bItemIcon { color: var(--text); }
.bItem.active .bItemIcon { color: #fff0f3; }
.bItem span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .3px; }

/* ============ RESPONSIVE ============ */
.topbarLogo { display: none !important; }
@media (max-width: 1024px) {
  .app { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .menuBtn { display: flex; }
  .topbarLogo { display: flex !important; }
  .topbarSearch { max-width: 200px; }
}
@media (max-width: 920px) {
  .main { padding: 12px 12px 90px; }
  .hero { min-height: 260px; border-radius: 2px; }
  .heroSlides { min-height: 260px; }
  .heroSlide.active { min-height: 260px; }
  .heroInner { min-height: 260px; }
  .heroText { padding: 20px 20px 20px 16px; }
  .heroTitle { font-size: 22px; }
  .heroTitleSub { font-size: 20px; }
  .heroArt { position: absolute; inset: 0; }
  .sectionHead h2 { font-size: 16px; }
  .sectionLink { font-size: 12px; }
  .hScroll { padding: 4px 2px 8px; gap: 10px; }
  .card { min-width: 150px; }
  .card .thumb { height: 100px; }
  .card .title { font-size: 11px; max-width: 130px; }
  .filterBar { padding: 10px 4px; }
  .filterChip { padding: 8px 12px; font-size: 11px; }
  .promoStrip { min-height: 140px; border-radius: 2px; }
  .promoStrip > div:first-child { max-width: 70%; padding: 16px; }
  .promoTitle { font-size: 18px; }
  .topbarActions .ui-btn.top { min-width: 100px; padding: 0 14px; font-size: 12px; height: 40px; }
  .bottomNav { display: flex; }
  /* Вторая таблица (Bonus & codes) — мельче шрифт на мобильной */
  .seo .seo-table-wrap:nth-of-type(2) .seo-table { font-size: 11px; }
  .seo .seo-table-wrap:nth-of-type(2) .seo-table th,
  .seo .seo-table-wrap:nth-of-type(2) .seo-table td { padding: 6px 8px; }
  .siteFooter { padding: 24px 16px 80px; margin-top: 24px; }
  .footerInner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .topbarSearch { display: none; }
  .card { min-width: 130px; }
  .card .thumb { height: 88px; }
  .hScrollLarge .card { min-width: 180px; }
  .hScrollLarge .card .thumb { height: 110px; }
  .hScrollSportifs .card { min-width: 140px; }
  .hScrollSportifs .card .thumb { height: 180px; }
}
