/* ===== 1WIN APK — Professional Betting Site Design (fon.bet style) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg:        #0d0e14;
  --bg2:       #13141c;
  --bg3:       #1a1b26;
  --bg4:       #22243a;
  --bg5:       #2a2d42;
  --border:    #1f2133;
  --border2:   #2d3055;
  --green:     #00c853;
  --green2:    #00e676;
  --green-d:   #009624;
  --green-bg:  rgba(0,200,83,.1);
  --green-glow:rgba(0,200,83,.22);
  --blue:      #1565c0;
  --blue2:     #1e88e5;
  --blue-bg:   rgba(30,136,229,.12);
  --yellow:    #ffc107;
  --red:       #f44336;
  --text:      #e8eaf0;
  --text2:     #8b90b0;
  --text3:     #50556e;
  --white:     #ffffff;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --header-h:  56px;
  --sidebar-w: 230px;
  --trans:     .15s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 14px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }
button { cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }

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

.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.logo:hover { background: var(--bg3); }
.logo img { height: 28px; width: auto; }
.logo-badge {
  background: var(--green);
  color: #000; font-size: .58rem; font-weight: 800;
  padding: 2px 7px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .06em;
  line-height: 1.6;
}

/* top nav links (desktop only) */
.header-nav {
  display: flex; align-items: center; gap: 0;
  flex: 1; overflow: hidden;
  margin: 0 8px;
}
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 500;
  color: var(--text2); white-space: nowrap;
  transition: var(--trans);
  position: relative;
}
.nav-link:hover { color: var(--text); background: var(--bg3); }
.nav-link.active { color: var(--white); background: var(--bg4); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--green);
  border-radius: 2px 2px 0 0;
}
.nav-link svg { width: 15px; height: 15px; opacity: .75; flex-shrink: 0; }
.nav-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  box-shadow: 0 0 6px var(--green);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.btn-login {
  height: 32px; padding: 0 16px;
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  background: transparent; color: var(--text);
  font-size: .78rem; font-weight: 600;
  transition: var(--trans);
  display: inline-flex; align-items: center;
}
.btn-login:hover { border-color: var(--text3); background: var(--bg3); color: var(--white); }

.btn-dl {
  height: 32px; padding: 0 16px;
  background: var(--green);
  border-radius: var(--radius-sm);
  color: #000; font-size: .78rem; font-weight: 700;
  transition: var(--trans);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-dl:hover { background: var(--green2); transform: translateY(-1px); box-shadow: 0 4px 14px var(--green-glow); }
.btn-dl svg { width: 12px; height: 12px; }

.mob-menu-btn {
  display: none; background: none; border: none;
  color: var(--text); padding: 6px; margin-left: auto;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.mob-menu-btn:hover { background: var(--bg3); }

/* ═══════════════════════════════════════════════════════════
   MAIN LAYOUT — sidebar + content
═══════════════════════════════════════════════════════════ */
.page-wrap {
  display: flex;
  min-height: 100vh;
  padding-top: var(--header-h);
}

/* SIDEBAR */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  position: fixed;
  top: var(--header-h);
  bottom: 0;
  left: 0;
  overflow-y: auto;
  scrollbar-width: none;
  z-index: 100;
  padding: 16px 0 24px;
}
.sidebar::-webkit-scrollbar { display: none; }

.sidebar-section { margin-bottom: 4px; }
.sidebar-label {
  font-size: .68rem; font-weight: 700;
  color: var(--text3); letter-spacing: .07em;
  text-transform: uppercase;
  padding: 14px 18px 8px;
}

.sb-link {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 18px;
  font-size: .82rem; font-weight: 500;
  color: var(--text2);
  transition: var(--trans);
  border-left: 2px solid transparent;
  cursor: pointer;
}
.sb-link:hover { color: var(--text); background: var(--bg3); border-left-color: var(--border2); }
.sb-link.active { color: var(--white); background: var(--bg4); border-left-color: var(--green); }
.sb-link svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .8; }
.sb-link.active svg { opacity: 1; color: var(--green); }

.sb-badge {
  margin-left: auto;
  font-size: .65rem; font-weight: 700;
  padding: 2px 7px; border-radius: 10px;
  line-height: 1.5;
}
.sb-badge-green { background: var(--green-bg); color: var(--green); }
.sb-badge-blue { background: var(--blue-bg); color: var(--blue2); }
.sb-badge-yellow { background: rgba(255,193,7,.12); color: var(--yellow); }

.sidebar-divider {
  height: 1px; background: var(--border);
  margin: 8px 0;
}

/* Download block in sidebar */
.sb-download {
  margin: 16px 12px;
  background: linear-gradient(135deg, var(--green-bg), rgba(0,100,255,.06));
  border: 1px solid rgba(0,200,83,.15);
  border-radius: var(--radius);
  padding: 14px;
}
.sb-download-title {
  font-size: .78rem; font-weight: 700; color: var(--green);
  margin-bottom: 4px;
}
.sb-download-sub { font-size: .7rem; color: var(--text3); margin-bottom: 10px; }
.sb-download-btn {
  display: block; width: 100%; text-align: center;
  background: var(--green); color: #000;
  font-size: .76rem; font-weight: 700;
  padding: 7px 0; border-radius: var(--radius-sm);
  transition: var(--trans);
}
.sb-download-btn:hover { background: var(--green2); }

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

/* ═══════════════════════════════════════════════════════════
   HERO BANNER
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 25%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,14,20,.98) 0%,
    rgba(13,14,20,.9) 35%,
    rgba(13,14,20,.6) 65%,
    rgba(13,14,20,.15) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 52px 32px 52px;
  max-width: 720px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-bg);
  border: 1px solid rgba(0,200,83,.2);
  color: var(--green); font-size: .68rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-pill-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: blink 2.5s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--white); margin-bottom: 14px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero-desc {
  font-size: .88rem; color: var(--text2);
  max-width: 480px; line-height: 1.75;
  margin-bottom: 28px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-stat { display: flex; flex-direction: column; gap: 1px; }
.hero-stat-val { font-size: 1.3rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-val em { font-style: normal; color: var(--green); }
.hero-stat-lbl { font-size: .68rem; color: var(--text3); }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: inherit; font-weight: 700; font-size: .82rem;
  border: none; cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
}
.btn-green {
  height: 42px; padding: 0 22px;
  background: var(--green); color: #000;
}
.btn-green:hover { background: var(--green2); transform: translateY(-1px); box-shadow: 0 6px 20px var(--green-glow); }
.btn-green-lg {
  height: 48px; padding: 0 28px; font-size: .88rem;
  background: var(--green); color: #000;
}
.btn-green-lg:hover { background: var(--green2); transform: translateY(-1px); box-shadow: 0 8px 24px var(--green-glow); }

.btn-blue {
  height: 42px; padding: 0 22px;
  background: var(--blue2); color: #fff;
}
.btn-blue:hover { background: #2196f3; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,136,229,.25); }
.btn-blue-lg {
  height: 48px; padding: 0 28px; font-size: .88rem;
  background: var(--blue2); color: #fff;
}
.btn-blue-lg:hover { background: #2196f3; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(30,136,229,.25); }

.btn-outline {
  height: 42px; padding: 0 22px;
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { background: var(--bg3); border-color: var(--text3); color: var(--white); }
.btn-outline-lg {
  height: 48px; padding: 0 28px; font-size: .88rem;
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline-lg:hover { background: var(--bg3); border-color: var(--text3); color: var(--white); }

.btn-ghost {
  height: 34px; padding: 0 14px; font-size: .76rem;
  background: var(--bg4); color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { background: var(--bg5); color: var(--text); border-color: var(--text3); }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   QUICK STATS BAR
═══════════════════════════════════════════════════════════ */
.stats-row {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.stats-row::-webkit-scrollbar { display: none; }
.stat-item {
  flex: 1; min-width: 120px;
  padding: 14px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-size: 1.35rem; font-weight: 800;
  color: var(--green); line-height: 1;
  margin-bottom: 3px;
}
.stat-lbl { font-size: .68rem; color: var(--text3); }

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.section { padding: 32px; }
.section-alt { background: var(--bg2); }
.section-inner { max-width: 1100px; }

.section-title {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 800; letter-spacing: -.025em;
  color: var(--white); margin-bottom: 6px;
}
.section-title em { font-style: normal; color: var(--green); }
.section-sub { font-size: .8rem; color: var(--text2); margin-bottom: 24px; }
.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 12px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.section-head-text { flex: 1; min-width: 0; }

/* ═══════════════════════════════════════════════════════════
   GAME CARDS
═══════════════════════════════════════════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.game-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  position: relative;
  aspect-ratio: 3/4;
  transition: var(--trans);
  border: 1px solid var(--border);
}
.game-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: 0 12px 32px rgba(0,0,0,.5); }
.game-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--trans);
}
.game-card:hover img { transform: scale(1.04); }
.game-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 10px 10px;
  background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,0) 100%);
}
.game-card-name {
  font-size: .8rem; font-weight: 700; color: var(--white);
  margin-bottom: 2px; line-height: 1.2;
}
.game-card-tag {
  font-size: .65rem; color: var(--green);
  font-weight: 600;
}
.game-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 44px; height: 44px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
  opacity: 0;
  box-shadow: 0 4px 20px rgba(0,200,83,.5);
}
.game-card:hover .game-play-btn { transform: translate(-50%,-50%) scale(1); opacity: 1; }
.game-play-btn svg { width: 18px; height: 18px; color: #000; margin-left: 3px; }

/* ═══════════════════════════════════════════════════════════
   FEATURE CARDS
═══════════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--trans);
}
.card:hover { border-color: var(--border2); background: var(--bg4); }
.card-icon {
  width: 40px; height: 40px;
  background: var(--green-bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--green);
}
.card-icon svg { width: 20px; height: 20px; }
.card-icon-blue { background: var(--blue-bg); color: var(--blue2); }
.card-icon-yellow { background: rgba(255,193,7,.1); color: var(--yellow); }
.card h3 {
  font-size: .88rem; font-weight: 700; color: var(--white);
  margin-bottom: 6px;
}
.card p, .card li { font-size: .78rem; color: var(--text2); line-height: 1.65; }
.card ul { padding-left: 0; }
.card li { padding: 3px 0; display: flex; align-items: flex-start; gap: 6px; }
.card li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   STEPS (installation guide)
═══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.step-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: var(--trans);
}
.step-card:hover { border-color: var(--green); background: var(--bg4); }
.step-num {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 900; color: #000;
  margin-bottom: 12px;
}
.step-card h3 { font-size: .84rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-card p { font-size: .75rem; color: var(--text2); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   TWO COLUMN LAYOUT
═══════════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.two-col-text h2 {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800; letter-spacing: -.025em;
  color: var(--white); margin-bottom: 12px;
}
.two-col-text h2 em { font-style: normal; color: var(--green); }
.two-col-text h3 {
  font-size: .9rem; font-weight: 700; color: var(--white);
  margin: 18px 0 8px;
}
.two-col-text p { font-size: .8rem; color: var(--text2); line-height: 1.7; margin-bottom: 10px; }
.two-col-text ul { margin-bottom: 20px; }
.two-col-text li {
  font-size: .78rem; color: var(--text2);
  padding: 4px 0; display: flex; align-items: flex-start; gap: 8px;
}
.two-col-text li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; margin-top: 6px;
}
.two-col-text li strong { color: var(--text); }
.col-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 280px;
}
.col-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════
   BANNER CARDS
═══════════════════════════════════════════════════════════ */
.banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.banner-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 160px;
  display: block;
  transition: var(--trans);
  border: 1px solid var(--border);
}
.banner-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.5); border-color: var(--border2); }
.banner-card img { width: 100%; height: 100%; object-fit: cover; }
.banner-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 100%);
  padding: 16px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.banner-card-label {
  font-size: .68rem; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 4px;
}
.banner-card-title { font-size: .92rem; font-weight: 700; color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   BONUS CARD
═══════════════════════════════════════════════════════════ */
.bonus-card {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg4) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; align-items: center; gap: 24px;
  transition: var(--trans);
}
.bonus-card:hover { border-color: var(--green); }
.bonus-card-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--green-bg);
  border: 2px solid rgba(0,200,83,.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.bonus-card-icon svg { width: 28px; height: 28px; color: var(--green); }
.bonus-amount {
  font-size: 2rem; font-weight: 900;
  color: var(--green); line-height: 1;
  letter-spacing: -.04em;
}
.bonus-title { font-size: .88rem; font-weight: 700; color: var(--white); margin: 4px 0; }
.bonus-desc { font-size: .75rem; color: var(--text2); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   TABLE
═══════════════════════════════════════════════════════════ */
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: .78rem;
}
.compare-table th {
  padding: 10px 14px; text-align: left;
  background: var(--bg4); color: var(--text2);
  font-weight: 600; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 2px solid var(--border2);
}
.compare-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text2); vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg3); }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.check-green { color: var(--green); font-size: 1rem; }
.check-red { color: var(--red); }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.faq-item:hover { border-color: var(--border2); }
.faq-item.open { border-color: var(--green); }
.faq-q {
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  cursor: pointer;
  font-size: .82rem; font-weight: 600; color: var(--text);
  transition: var(--trans);
}
.faq-q:hover { color: var(--white); }
.faq-q svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--text3); transition: var(--trans);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--green); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 18px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 18px 16px; }
.faq-a p { font-size: .78rem; color: var(--text2); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════════════════════════ */
.breadcrumbs {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 32px;
  font-size: .7rem; color: var(--text3);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumbs a { color: var(--text3); transition: var(--trans); }
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs .sep { color: var(--border2); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 32px 32px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p {
  font-size: .73rem; color: var(--text3);
  line-height: 1.65; max-width: 240px;
}
.footer-col h4 {
  font-size: .7rem; font-weight: 700; color: var(--text2);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 12px;
}
.footer-col li { padding: 4px 0; }
.footer-col a {
  font-size: .76rem; color: var(--text3);
  transition: var(--trans);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-legal { font-size: .68rem; color: var(--text3); line-height: 1.6; }
.age-badge {
  background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 800;
  padding: 3px 9px; border-radius: 5px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════════════ */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-dim { color: var(--text2); }
.text-sm { font-size: .76rem; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.d-flex { display: flex; align-items: center; gap: 10px; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .banners-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --sidebar-w: 0px; }
  .sidebar { display: none; }
  .main-content { margin-left: 0; }
  .header-nav { display: none; }
  .mob-menu-btn { display: flex; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .hero-inner { padding: 36px 20px; }
  .section { padding: 24px 20px; }
  .breadcrumbs { padding: 10px 20px; }
  .site-footer { padding: 24px 20px 16px; }
}

@media (max-width: 640px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .banners-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .bonus-card { flex-direction: column; text-align: center; }
}

/* MOBILE MENU OVERLAY */
.mob-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 250;
}
.mob-overlay.open { display: block; }
.mob-nav {
  position: fixed; top: var(--header-h); left: 0; bottom: 0;
  width: 260px;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  z-index: 260;
  transform: translateX(-100%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 12px 0;
}
.mob-nav.open { transform: translateX(0); }
.mob-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px;
  font-size: .84rem; font-weight: 500;
  color: var(--text2);
  border-left: 2px solid transparent;
  transition: var(--trans);
}
.mob-nav-link:hover { color: var(--text); background: var(--bg3); }
.mob-nav-link.active { color: var(--white); background: var(--bg4); border-left-color: var(--green); }
.mob-nav-link svg { width: 17px; height: 17px; flex-shrink: 0; opacity: .8; }
.mob-nav-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mob-nav-btn {
  margin: 12px 16px 0;
}
