@charset "UTF-8";
/* BoomsBet Clone - style.css */
:root {
  --bg: #0a0f2e;
  --bg2: #13143a;
  --bg3: #1e2048;
  --bg4: #252759;
  --text: #ffffff;
  --muted: #737d96;
  --accent: #37ffe6;
  --green: #c9ff31;
  --pink: #e91e8c;
  --purple: #8b3cf7;
  --border: rgba(255,255,255,.08);
  --border2: rgba(255,255,255,.12);
  --header-bg: #0d0e2a;
  --sidebar-bg: #111234;
  --sidebar-w: 240px;
  --header-h: 76px;
  --radius: 10px;
  --radius-sm: 6px;
  --trans: .18s ease;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden;width:100%}
body{font-family:'Poppins',sans-serif;background:var(--bg);color:var(--text);min-height:100vh;overflow-x:hidden;width:100%;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
button{cursor:pointer;border:none;outline:none;font-family:inherit}
img{max-width:100%;display:block}
ul{list-style:none}

/* --- SCROLLBAR --- */
::-webkit-scrollbar{width:4px;height:4px}
::-webkit-scrollbar-track{background:var(--bg2)}
::-webkit-scrollbar-thumb{background:var(--bg4);border-radius:2px}

/* --- HEADER --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px 0 16px;
  backdrop-filter: blur(12px);
}
.header-left { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  background: none; color: var(--text);
  width: 36px; height: 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle .bar {
  width: 20px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--trans);
  display: block;
}
.menu-toggle.open .bar:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.open .bar:nth-child(2){opacity:0;transform:scaleX(0)}
.menu-toggle.open .bar:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.logo { display: flex; align-items: center; }
.logo img { height: 56px; width: auto; }
.header-right { display: flex; align-items: center; gap: 10px; }
.btn-login {
  padding: 8px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--text); background: transparent;
  color: var(--text); font-size: 13px; font-weight: 600;
  transition: var(--trans);
}
.btn-login:hover { background: rgba(255,255,255,.08); }
.btn-register {
  padding: 8px 18px; border-radius: var(--radius-sm);
  background: var(--accent);
  color: #0a0f2e; font-size: 13px; font-weight: 700;
  transition: var(--trans);
}
.btn-register:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(55,255,230,.3); }

/* --- LAYOUT --- */
.layout { display: flex; padding-top: var(--header-h); min-height: 100vh; }

/* --- SIDEBAR --- */
.sidebar {
  width: var(--sidebar-w); flex-shrink: 0;
  background: #2d2a52;
  border-right: none;
  position: fixed; left: 0; top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto; overflow-x: hidden;
  padding: 14px 12px 24px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 100;
}

/* Search */
.sidebar-search {
  position: relative;
  background: #1f1c3e;
  border-radius: 8px;
  padding: 10px 10px 10px 38px;
  display: flex; align-items: center;
}
.sidebar-search .search-ico {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}
.sidebar-search input {
  width: 100%; padding: 0; margin: 0;
  background: transparent; border: 0; color: #fff;
  font-size: 14px; font-family: inherit; outline: none;
}
.sidebar-search input::placeholder { color: #888ca3; font-weight: 500; }

/* Card containers (rounded group panels) */
.sidebar-card {
  background: #3a3763;
  border-radius: 16px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 8px;
}

/* Quick buttons grid (Missions/Roue/Courses/Atteint) */
.sidebar-quick {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-width: 0;
}
.quick-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 6px; border-radius: 10px;
  background: #453f7a;
  font-size: 11.5px; font-weight: 500;
  color: #fff; transition: var(--trans);
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}
.quick-btn > span:last-child {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  min-width: 0;
}
.quick-btn:hover { background: #524a8c; }
.ico-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
}
.ico-wrap svg { width: 18px; height: 18px; }

/* Tags row (Promo/VIP/Magasin) */
.sidebar-tags {
  display: flex; gap: 6px;
}
.sidebar-tag {
  flex: 1; text-align: center;
  padding: 9px 6px;
  border-radius: 10px;
  font-size: 13px; font-weight: 500;
  background: #453f7a;
  color: #fff;
  transition: var(--trans); cursor: pointer;
  text-decoration: none;
}
.sidebar-tag:hover { background: #524a8c; }

/* Nav items inside cards */
.sidebar-nav {
  display: flex; flex-direction: column; gap: 2px;
}
.sidebar-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 8px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  color: #fff; transition: var(--trans);
  text-decoration: none;
}
.sidebar-nav-item:hover { background: rgba(255,255,255,.06); }
.nav-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
}
.sidebar-nav-item .badge {
  margin-left: auto;
  background: #e74c3c; color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 10px;
  text-transform: uppercase; letter-spacing: .02em;
}

/* CTA gradient buttons (Inviter / Installer) */
.sidebar-cta-btn {
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: var(--trans);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, #3a3763 0%, #3d6c8f 50%, #2d8da8 100%);
  position: relative;
}
.sidebar-cta-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.sidebar-cta-btn .cta-emoji {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: #d4a520; flex-shrink: 0;
  font-size: 18px;
}
.sidebar-cta-btn .cta-ico-install {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  flex-shrink: 0;
}

/* Chat en direct (standalone after CTAs) */
.sidebar-nav-chat {
  padding: 0;
}
.sidebar-nav-chat .sidebar-nav-item {
  padding: 12px 10px;
  font-size: 15px;
}

/* Language selector (EU flag + Francais + chevron) */
.sidebar-lang {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 10px;
  font-size: 15px; color: #fff; font-weight: 500;
  cursor: pointer; margin-top: auto;
  border-radius: 8px;
  transition: var(--trans);
}
.sidebar-lang:hover { background: rgba(255,255,255,.05); }
.sidebar-lang .flag-eu {
  display: inline-flex; flex-shrink: 0;
  width: 22px; height: 22px;
}
.sidebar-lang .flag-eu svg { width: 22px; height: 22px; }
.sidebar-lang .lang-label { flex: 1; }
.sidebar-lang .lang-arrow { flex-shrink: 0; }

/* --- MAIN --- */
.main {
  margin-left: var(--sidebar-w);
  flex: 1; min-width: 0;
  padding: 0;
}

/* --- PROMO CIRCLES --- */
.promo-circles {
  display: flex; gap: 10px; padding: 16px 20px;
  overflow-x: auto; scrollbar-width: none;
}
.promo-circles::-webkit-scrollbar { display: none; }
.promo-circle {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; gap: 6px; cursor: pointer;
  transition: var(--trans);
}
.promo-circle:hover { transform: translateY(-2px); }
.promo-circle .circle-img {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden;
  padding: 2.5px;
  background: conic-gradient(#ff3cac, #784ba0, #2b86c5, #37ffe6, #c9ff31, #ff6b35, #ff3cac);
}
.promo-circle .circle-img img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
  display: block;
}
.promo-circle .circle-label { font-size: 11px; font-weight: 500; color: var(--muted); white-space: nowrap; }

/* --- HERO --- */
.hero {
  margin: 0 16px 20px;
  border-radius: 14px; overflow: hidden;
  position: relative; min-height: 320px;
  background: url('images/hero-banner.webp') center/cover no-repeat;
  display: flex; align-items: center;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 40px 44px; flex: 1;
}
.hero-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700; line-height: 1.1; color: #fff;
  text-transform: uppercase; letter-spacing: -1px;
}
.hero-title .green { color: var(--green); }
.hero-subtitle {
  font-size: 18px; font-weight: 600; color: #fff;
  margin-top: 8px; opacity: .9;
}
.hero-img {
  position: absolute; right: 0; bottom: 0;
  height: 110%; width: auto; z-index: 1;
  opacity: .9;
}
.hero-cta {
  display: inline-block; margin-top: 24px;
  padding: 12px 28px; border-radius: var(--radius-sm);
  background: var(--green); color: #0a0f2e;
  font-size: 14px; font-weight: 700; transition: var(--trans);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,255,49,.4); }

/* --- STATS BAR --- */
.stats-bar {
  display: flex; align-items: center;
  padding: 14px 20px; gap: 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.stats-bar::-webkit-scrollbar { display: none; }
.stat-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  cursor: pointer; color: inherit; text-decoration: none;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-ico { color: var(--green); font-size: 16px; }
.stat-info {}
.stat-value { font-size: 15px; font-weight: 600; }
.stat-label { font-size: 10px; color: var(--muted); margin-top: 1px; }

/* --- SECTION HEADER --- */
.section-header {
  display: flex; align-items: baseline; gap: 8px;
  padding: 20px 20px 12px;
}
.section-header-row { justify-content: space-between; align-items: center; }
.section-title { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.section-title .highlight { color: var(--green); }
.section-all {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 20px;
  border: 1.5px solid var(--accent); color: var(--accent);
  font-size: 12px; font-weight: 600;
  transition: var(--trans);
}
.section-all:hover { background: rgba(55,255,230,.1); }
.section-all i { font-size: 10px; }
.section-info { color: var(--accent); font-size: 14px; margin-left: 6px; }

/* --- COLLECTIONS GRID --- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 14px; padding: 0 20px 20px;
}
.collection-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer;
  transition: var(--trans);
}
.collection-card:hover { transform: translateY(-3px); }
.collection-img {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  background: var(--bg3);
}
.collection-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collection-label {
  font-size: 13px; font-weight: 600; color: var(--text);
  text-align: center; line-height: 1.25;
}

@media (max-width: 1280px) {
  .collections-grid { grid-template-columns: repeat(8, 1fr); }
}
@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 768px) {
  .collections-grid { grid-template-columns: repeat(4, 1fr); padding: 0 12px 16px; }
}
@media (max-width: 480px) {
  .collections-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .collection-label { font-size: 11px; }
}

/* --- PROMO BANNERS --- */
.promo-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 8px 20px 24px;
}
.promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 160px;
  padding: 28px 32px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #2d1a6e 0%, #3d1f8e 50%, #6b2fa0 100%);
  cursor: pointer;
  transition: var(--trans);
}
.promo-banner:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(107,47,160,.4); }
.promo-banner-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}
.promo-banner-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 8px;
  line-height: 1.1;
}
.promo-banner-desc {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
  margin-bottom: 16px;
}
.promo-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  transition: var(--trans);
}
.promo-banner-btn i { font-size: 10px; }
.promo-banner:hover .promo-banner-btn { background: rgba(55,255,230,.12); }
.promo-banner-img {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 120px;
  width: auto;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .promo-banners { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .promo-banners { padding: 8px 12px 16px; gap: 12px; }
  .promo-banner { padding: 20px 24px; min-height: 130px; }
  .promo-banner-title { font-size: 16px; }
  .promo-banner-img { height: 90px; right: 12px; }
}

/* --- WINS TICKER --- */
.wins-wrapper { overflow: hidden; padding: 0 20px 20px; }
.wins-track {
  display: flex; gap: 10px;
  overflow-x: auto; scrollbar-width: none; padding-bottom: 4px;
}
.wins-track::-webkit-scrollbar { display: none; }
.win-card {
  flex-shrink: 0; display: flex; align-items: center; gap: 10px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 12px; min-width: 200px;
  cursor: pointer; color: inherit; text-decoration: none;
  transition: border-color var(--trans), background var(--trans);
}
.win-card:hover { border-color: var(--border2); background: var(--bg3); }
.win-card .game-thumb {
  width: 44px; height: 44px; border-radius: 6px; overflow: hidden; flex-shrink: 0;
}
.win-card .game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.win-info {}
.win-player { font-size: 11px; color: var(--muted); }
.win-game { font-size: 11px; font-weight: 600; max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-amount { font-size: 13px; font-weight: 700; color: var(--green); }

/* --- GAME TABS --- */
.game-tabs {
  display: flex; gap: 8px; padding: 0 20px 14px;
}
.game-tab {
  padding: 7px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
  background: var(--bg2); color: var(--muted);
  border: 1px solid var(--border); transition: var(--trans); cursor: pointer;
}
.game-tab.active { background: var(--bg4); color: var(--text); border-color: var(--border2); }
.game-tab:hover:not(.active) { background: var(--bg3); }

/* --- GAME GRID --- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px; padding: 0 20px 20px;
}
.game-card {
  position: relative; border-radius: 14px; overflow: hidden;
  cursor: pointer; background: var(--bg3);
  transition: transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.game-card:hover { transform: translateY(-3px) scale(1.02); z-index: 2; box-shadow: 0 10px 28px rgba(0,0,0,.55); }
.game-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  display: block;
}
.game-card .game-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; transition: opacity var(--trans);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-overlay .play-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.game-overlay .play-label { font-size: 11px; font-weight: 600; }
.game-overlay .demo-label { font-size: 10px; color: var(--muted); }
.game-card .provider-badge {
  position: absolute; bottom: 6px; left: 6px;
  font-size: 9px; color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.5); padding: 2px 5px; border-radius: 3px;
}

/* Game card gradient placeholders (when no image) */
.game-card.g1{background:linear-gradient(135deg,#1a0533,#6b2fa0)}
.game-card.g2{background:linear-gradient(135deg,#001a33,#0a5fa0)}
.game-card.g3{background:linear-gradient(135deg,#330a00,#a02010)}
.game-card.g4{background:linear-gradient(135deg,#0a2a0a,#1a8a2a)}
.game-card.g5{background:linear-gradient(135deg,#2a1a00,#8a6010)}
.game-card.g6{background:linear-gradient(135deg,#1a001a,#6a0a5a)}
.game-card-inner { width:100%; aspect-ratio:3/4; display:flex; flex-direction:column; justify-content:flex-end; padding:8px; }
.game-card-inner .g-title { font-size: 11px; font-weight: 600; color: #fff; }
.game-card-inner .g-provider { font-size: 9px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* --- CTA BLOCK --- */
.cta-block {
  text-align: center; padding: 30px 20px;
  background: linear-gradient(180deg, transparent, var(--bg2) 60%);
}
.cta-block h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.cta-block p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.btn-cta-main {
  display: inline-block; padding: 14px 36px;
  background: linear-gradient(135deg, var(--green), #a0cc00);
  color: #0a0f2e; font-size: 15px; font-weight: 700; border-radius: var(--radius-sm);
  transition: var(--trans);
}
.btn-cta-main:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,255,49,.35); }

/* --- FOOTER --- */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 32px 20px 20px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.footer-copy { font-size: 11px; color: var(--muted); line-height: 1.7; }
.footer-copy a { color: var(--muted); }
.footer-col h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; color: var(--text); }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 12px; color: var(--muted); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--text); }
.footer-right { display: flex; flex-direction: column; gap: 14px; }
.age-disclaimer { display: flex; align-items: flex-start; gap: 12px; }
.age-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg3); border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0; color: var(--text);
}
.age-text { font-size: 10px; color: var(--muted); line-height: 1.5; }
.social-title { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.social-btns { display: flex; gap: 8px; }
.social-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border2); font-size: 12px; font-weight: 600;
  background: var(--bg3); color: var(--text); transition: var(--trans);
}
.social-btn:hover { background: var(--bg4); }
.footer-payments {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 20px;
}
.footer-payments img { height: 22px; width: auto; opacity: .7; filter: grayscale(20%); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; flex-wrap: wrap; gap: 12px;
}
.footer-license img { height: 40px; width: auto; opacity: .6; }
.footer-disclaimer { font-size: 10px; color: var(--muted); line-height: 1.6; max-width: 500px; }

/* --- MOBILE MEGA MENU --- */
.menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.mega-menu {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 280px; background: var(--sidebar-bg);
  z-index: 400; transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; padding: 20px 0;
}
.mega-menu.open { transform: translateX(0); }
.mega-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px 16px;
}
.mega-menu-header .logo img { height: 30px; }
.close-menu { background: none; color: var(--text); font-size: 18px; padding: 4px; }
.mega-menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; font-size: 14px; font-weight: 500;
  color: var(--text); transition: background var(--trans);
}
.mega-menu-item:hover { background: var(--bg3); }
.mega-menu-item .ico { color: var(--muted); width: 20px; text-align: center; }
.mega-menu-divider { height: 1px; background: var(--border); margin: 8px 16px; }
.mega-menu-cta { padding: 12px 16px; }
.mega-menu-cta .btn-register { width: 100%; text-align: center; display: block; padding: 12px; }

/* --- RESPONSIVE --- */
@media (max-width: 1280px) {
  .game-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 1100px) {
  .game-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  :root { --sidebar-w: 0px; }
  .sidebar { display: none; }
  .main { margin-left: 0; width: 100%; }
  .layout { width: 100%; }
  .header { width: 100%; left: 0; right: 0; }
  .game-grid { grid-template-columns: repeat(3, 1fr); padding: 0 12px 16px; gap: 10px; }
  .hero { margin: 0 12px 16px; min-height: 220px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 14px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  :root { --header-h: 56px; }
  .header { padding: 0 12px 0 10px; }
  .header-left { gap: 8px; }
  .logo img { height: 38px; }
  .btn-login { padding: 6px 12px; font-size: 12px; }
  .btn-register { padding: 6px 12px; font-size: 12px; }
  .header-right { gap: 6px; }
  .stats-bar { padding: 10px 12px; gap: 0; flex-wrap: nowrap; }
  .stat-item { padding: 0 10px; }
  .stat-value { font-size: 12px; }
  .stat-label { font-size: 9px; }
  .stat-ico { font-size: 13px; }
  .section-header { padding: 14px 12px 10px; }
  .wins-wrapper { padding: 0 12px 16px; }
  .game-tabs { padding: 0 12px 12px; }
  .promo-banners { padding: 8px 12px 16px; }
  .cta-block { padding: 20px 12px; }
  footer { padding: 24px 12px 16px; }
  .footer-payments { gap: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-bar { padding: 8px 10px; }
  .stat-item { padding: 0 8px; }
  .stat-value { font-size: 11px; }
  .stat-label { font-size: 8px; }
  :root { --header-h: 52px; }
  .btn-login { padding: 5px 10px; font-size: 11px; }
  .btn-register { padding: 5px 10px; font-size: 11px; }
  .logo img { height: 32px; }
  .hero-content { padding: 24px 20px; }
  .hero-title { font-size: 22px; }
  .promo-banners { grid-template-columns: 1fr; }
  .social-btns { flex-wrap: wrap; }
}

/* --- SEO BLOCK --- */
.seo-block {
  font-size: .9rem; line-height: 1.7;
  max-width: 1200px; margin: 2rem auto; padding: 2rem 2.5rem;
  color: #ccc; background: rgba(0,0,0,.35); border-radius: 10px;
}
.seo-block h1 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.seo-block h2 {
  font-size: 1.15rem; font-weight: 700; color: #fff;
  margin: 1.8rem 0 .6rem; padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.seo-block h3 {
  font-size: 1rem; font-weight: 600; color: #e0e0e0;
  margin: 1.2rem 0 .4rem;
}
.seo-block p { margin: .6rem 0; }
.seo-block ul { margin: .5rem 0 .5rem 1.2rem; list-style: disc; }
.seo-block ul li { margin: .2rem 0; color: #bbb; }
.seo-block strong { color: #e8e8e8; }

.seo-score-card {
  display: flex; flex-direction: column; gap: .5rem;
  margin: 1rem 0;
}
.score-row {
  display: grid; grid-template-columns: 180px 1fr 40px;
  align-items: center; gap: 12px; font-size: .85rem;
}
.score-label { color: #aaa; }
.score-bar {
  background: rgba(255,255,255,.08); border-radius: 10px;
  height: 8px; overflow: hidden; position: relative;
}
.score-fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--green), var(--accent));
  border-radius: 10px;
}
.score-val { text-align: right; color: var(--green); font-weight: 700; }

.seo-block .seo-table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0; font-size: .8rem;
}
.seo-table th, .seo-table td {
  padding: .55rem .7rem; text-align: left;
  border: 1px solid rgba(255,255,255,.08);
}
.seo-table th {
  background: rgba(255,255,255,.06); color: #fff;
  font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: .72rem;
}
.seo-table td { color: #ccc; }

.seo-pros-cons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin: 1rem 0;
}
.seo-pros-cons .pros,
.seo-pros-cons .cons {
  padding: 1rem; border-radius: 8px;
  background: rgba(255,255,255,.03);
}
.seo-pros-cons .pros { border-left: 3px solid #4caf50; }
.seo-pros-cons .cons { border-left: 3px solid #f44336; }
.seo-pros-cons h3 {
  font-size: .95rem; margin-top: 0; margin-bottom: .6rem;
  color: #fff;
}
.seo-pros-cons ul { margin-left: 1rem; list-style: disc; }

.seo-bonus-grid,
.seo-security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .8rem; margin: 1rem 0;
}
.seo-bonus-grid .card,
.seo-security-grid .card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; padding: .9rem;
}
.seo-bonus-grid .card h3,
.seo-security-grid .card h3 {
  font-size: .85rem; margin: 0 0 .4rem; color: var(--accent);
  text-transform: uppercase; letter-spacing: .05em;
}
.seo-bonus-grid .card p,
.seo-security-grid .card p {
  font-size: .78rem; margin: 0; color: #bbb;
}

.seo-faq details {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; margin: .4rem 0;
}
.seo-faq summary {
  padding: .8rem 1rem; cursor: pointer; font-weight: 600;
  color: #e0e0e0; list-style: none; font-size: .88rem;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary::after {
  content: '+'; float: right; color: var(--accent); font-size: 1.2rem; line-height: .8;
}
.seo-faq details[open] summary::after { content: '-'; }
.seo-faq .faq-answer {
  padding: 0 1rem .8rem; font-size: .82rem; color: #bbb;
}

.seo-disclaimer {
  margin-top: 1.5rem; padding: .9rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; font-size: .72rem; color: #888; line-height: 1.6;
}
.seo-disclaimer strong { color: var(--accent); }

@media (max-width: 768px) {
  .seo-block { padding: 1.2rem; margin: 1rem; }
  .seo-block h1 { font-size: 1.3rem; }
  .seo-block h2 { font-size: 1rem; }
  .seo-pros-cons { grid-template-columns: 1fr; }
  .score-row { grid-template-columns: 120px 1fr 40px; font-size: .78rem; }
  .seo-table { font-size: .72rem; }
}
