/* ============================================================
   MOSTBET APK — Official Mostbet Dark Theme 2026
   Style: официальный сайт Mostbet — тёмно-синий, оранжевые
   pill-кнопки, синие акценты
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --white:         #ffffff;
  --bg:            #0b2149;
  --bg-card:       #12305f;
  --bg-alt:        #081a3c;
  --bg-nav:        #0a2451;
  --primary:       #3d7fd9;
  --primary-h:     #5493e8;
  --primary-soft:  rgba(61,127,217,0.16);
  --accent:        #ff4d1c;
  --accent-h:      #ff6a3d;
  --accent-soft:   rgba(255,77,28,0.15);
  --green:         #2fd571;
  --green-soft:    rgba(47,213,113,0.14);
  --gold:          #ffb800;
  --gold-soft:     rgba(255,184,0,0.13);
  --purple:        #9d7bff;
  --purple-soft:   rgba(157,123,255,0.15);
  --text:          #ffffff;
  --text-h:        #ffffff;
  --text-body:     #c9d7ee;
  --text-muted:    #8ea6cb;
  --text-light:    #6d86ad;
  --border:        #234a85;
  --border-soft:   #1a3a6e;
  --shadow-sm:     0 1px 4px rgba(2,10,26,0.30);
  --shadow:        0 4px 20px rgba(2,10,26,0.38);
  --shadow-lg:     0 12px 40px rgba(2,10,26,0.45);
  --shadow-xl:     0 24px 64px rgba(2,10,26,0.55);
  --r-sm:          8px;
  --r:             14px;
  --r-lg:          20px;
  --r-xl:          28px;
  --tr:            0.2s ease;
  --header-h:      72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: var(--text-h); line-height: 1.1; letter-spacing: -1px; }
.h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--text-h); line-height: 1.2; letter-spacing: -0.5px; }
.h3 { font-size: 18px; font-weight: 700; color: var(--text-h); line-height: 1.3; }
.lead { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 14px; border-radius: 100px;
  padding: 13px 30px; transition: all var(--tr); white-space: nowrap;
  border: 2px solid transparent;
  text-transform: uppercase; letter-spacing: 0.6px;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 16px rgba(61,127,217,0.35);
}
.btn-primary:hover { background: var(--primary-h); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(61,127,217,0.45); color: #fff; }
.btn-accent {
  background: linear-gradient(180deg, #ff5a2c 0%, #f2451c 100%);
  color: #fff; box-shadow: 0 4px 16px rgba(242,69,28,0.40);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(242,69,28,0.55); color: #fff; filter: brightness(1.06); }
.btn-outline {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-white { background: #fff; color: #0a2451; box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #0a2451; }
.btn-green { background: var(--green); color: #06281a; box-shadow: 0 4px 16px rgba(47,213,113,0.30); }
.btn-green:hover { transform: translateY(-2px); filter: brightness(1.08); color: #06281a; }
.btn-lg { padding: 16px 38px; font-size: 15px; }
.btn-xl { padding: 19px 46px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 12px; }
.w-full { width: 100%; }

/* ── BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.badge-primary { background: var(--primary-soft); color: var(--primary); }
.badge-accent  { background: var(--accent-soft);  color: var(--accent); }
.badge-green   { background: var(--green-soft);   color: var(--green); }
.badge-gold    { background: var(--gold-soft);    color: var(--gold); }
.badge-purple  { background: var(--purple-soft);  color: var(--purple); }
.badge-live { background: rgba(255,77,77,0.16); color: #ff6b6b; }
.badge-live::before { content: ''; display: inline-block; width: 7px; height: 7px; background: #ff6b6b; border-radius: 50%; animation: pulse 1.5s infinite; }

@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  background: linear-gradient(180deg, #0d2c5e 0%, #0a2451 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(2,10,26,0.35);
}

.header-inner {
  display: flex; align-items: center; gap: 24px; height: 100%;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 36px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  padding: 8px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.75);
  transition: all var(--tr); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.nav-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-link.active { background: rgba(255,255,255,0.1); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-apk-info {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.1); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.header-apk-info svg { flex-shrink: 0; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; }
.burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--tr); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: var(--header-h);
  background: #0a2451; z-index: 999; padding: 24px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 14px 16px; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #071633 0%, #0a2451 50%, #10386e 100%);
  padding: 80px 0 0;
  min-height: 580px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(255,87,34,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(124,58,237,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-left { padding-bottom: 80px; }
.hero-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px;
}
.hero-badge-blue   { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.hero-badge-orange { background: rgba(255,87,34,0.85);  color: #fff; }

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900; color: #ffffff;
  line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-title span { color: #ff4d1c; }
.hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.72); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding: 20px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.hero-stat-item { text-align: center; }
.hero-stat-val { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-val span { color: #ff6a3d; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-right { position: relative; display: flex; align-items: flex-end; justify-content: center; }

/* APK Card floating */
.apk-float-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 8px 24px rgba(2,10,26,0.35);
  width: 320px;
  position: relative;
  z-index: 2;
  margin-bottom: -40px;
}
.apk-float-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.apk-float-icon { width: 56px; height: 56px; border-radius: 14px; overflow: hidden; flex-shrink: 0; }
.apk-float-icon img { width: 100%; height: 100%; object-fit: cover; }
.apk-float-name { font-size: 16px; font-weight: 800; color: var(--text-h); }
.apk-float-meta { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.apk-float-rating {
  display: flex; align-items: center; gap: 6px; margin-bottom: 16px;
  padding: 10px 14px; background: var(--gold-soft); border-radius: var(--r-sm);
}
.apk-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.apk-rating-val { font-weight: 800; font-size: 16px; color: var(--text-h); }
.apk-rating-count { font-size: 12px; color: var(--text-muted); }
.apk-float-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.apk-spec { padding: 10px 12px; background: var(--bg); border-radius: var(--r-sm); }
.apk-spec-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.apk-spec-val { font-size: 14px; font-weight: 700; color: var(--text-h); margin-top: 2px; }

/* Floating badges on hero card */
.hero-float-badge {
  position: absolute; border-radius: var(--r); padding: 10px 16px;
  font-size: 13px; font-weight: 700; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.hero-float-1 { top: 20px; right: -20px; background: #0e3d28; color: #4ef09a; border: 1.5px solid rgba(47,213,113,0.35); }
.hero-float-2 { bottom: 80px; left: -30px; background: #47180a; color: #ff8a5e; border: 1.5px solid rgba(255,77,28,0.4); }
.hero-float-3 { top: 120px; left: -40px; background: #241452; color: #b9a0ff; border: 1.5px solid rgba(157,123,255,0.35); }

/* Hero wave bottom */
.hero-wave {
  position: relative; z-index: 3; margin-top: 20px;
  height: 60px; overflow: hidden;
}
.hero-wave svg { display: block; width: 100%; height: 100%; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card); border-bottom: 1px solid var(--border-soft);
  padding: 0; box-shadow: var(--shadow-sm);
}
.stats-bar-inner {
  display: flex; align-items: stretch;
  overflow-x: auto; scrollbar-width: none;
}
.stats-bar-inner::-webkit-scrollbar { display: none; }
.stat-bar-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 28px; flex-shrink: 0;
  border-right: 1px solid var(--border-soft);
  transition: background var(--tr);
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-item:hover { background: var(--bg); }
.stat-bar-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.stat-bar-icon svg { width: 20px; height: 20px; }
.icon-blue   { background: var(--primary-soft); color: var(--primary); }
.icon-orange { background: var(--accent-soft); color: var(--accent); }
.icon-green  { background: var(--green-soft); color: var(--green); }
.icon-gold   { background: var(--gold-soft); color: var(--gold); }
.icon-purple { background: var(--purple-soft); color: var(--purple); }
.stat-bar-text .val { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; color: var(--text-h); line-height: 1; }
.stat-bar-text .lbl { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── SECTION COMMONS ─────────────────────────────────────── */
.section { padding: 80px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-white { background: var(--bg-card); }
.bg-dark {
  background: linear-gradient(135deg, #071633 0%, #0f346a 100%);
  color: #fff;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .badge { margin-bottom: 16px; }
.section-head .h2 { margin-bottom: 14px; }
.section-head .lead { font-size: 16px; }

/* ── DOWNLOAD SECTION ────────────────────────────────────── */
.download-section { padding: 100px 0 80px; }
.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.download-left { }
.download-left .badge { margin-bottom: 20px; }
.download-left .h2 { margin-bottom: 16px; }
.download-left .lead { margin-bottom: 32px; max-width: 480px; }

.download-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.dl-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; background: var(--bg-card);
  border: 1.5px solid var(--border); border-radius: var(--r);
  box-shadow: var(--shadow-sm); transition: all var(--tr);
}
.dl-step:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateX(4px); }
.dl-step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
}
.dl-step-body strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-h); margin-bottom: 4px; }
.dl-step-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.download-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.download-note { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.download-note svg { color: var(--green); }

.download-right { }
.download-card {
  background: var(--bg-card); border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.dl-card-header {
  padding: 24px 28px;
  background: linear-gradient(135deg, #10386e 0%, #0a2451 100%);
  display: flex; align-items: center; gap: 16px;
}
.dl-card-icon { width: 52px; height: 52px; border-radius: 14px; overflow: hidden; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.dl-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.dl-card-title { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; color: #fff; }
.dl-card-sub { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 3px; }

.dl-card-body { padding: 24px 28px; }
.dl-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.dl-info-item { padding: 12px 16px; background: var(--bg); border-radius: var(--r-sm); }
.dl-info-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.dl-info-val { font-size: 15px; font-weight: 700; color: var(--text-h); margin-top: 3px; }

.dl-card-rating {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--gold-soft);
  border-radius: var(--r-sm); margin-bottom: 20px;
}
.dl-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.dl-rating-text strong { font-size: 18px; font-weight: 900; color: var(--text-h); }
.dl-rating-text span { font-size: 12px; color: var(--text-muted); display: block; }

.dl-promo-block {
  display: flex; align-items: center; gap: 12px; justify-content: space-between;
  padding: 14px 18px; background: var(--accent-soft);
  border: 1.5px dashed rgba(255,87,34,0.3); border-radius: var(--r);
  margin-bottom: 20px;
}
.dl-promo-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.dl-promo-code { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: var(--accent); letter-spacing: 2px; }
.dl-promo-bonus { font-size: 13px; font-weight: 700; color: var(--accent); }
.btn-copy-sm {
  padding: 8px 14px; border-radius: var(--r-sm);
  background: var(--accent); color: #fff; font-size: 13px; font-weight: 700;
  transition: all var(--tr); flex-shrink: 0;
}
.btn-copy-sm:hover { background: var(--accent-h); transform: scale(1.04); }

/* ── GAMES SECTION ───────────────────────────────────────── */
.games-section { padding: 80px 0; }

.games-tabs {
  display: flex; gap: 8px; margin-bottom: 36px;
  background: var(--bg-card); padding: 8px; border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft);
  overflow-x: auto; scrollbar-width: none;
}
.games-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 11px 22px; border-radius: var(--r); font-size: 14px; font-weight: 700;
  color: var(--text-muted); background: transparent; transition: all var(--tr);
  white-space: nowrap; flex-shrink: 0;
}
.tab-btn:hover { background: var(--bg); color: #fff; }
.tab-btn.active { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(242,69,28,0.4); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.games-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.game-card {
  background: var(--bg-card); border-radius: var(--r-lg); overflow: hidden;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all var(--tr); position: relative;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.game-img-wrap { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.game-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-img-wrap img { transform: scale(1.06); }
.game-overlay {
  position: absolute; inset: 0; background: rgba(13,27,62,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--tr); backdrop-filter: blur(3px);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-body { padding: 14px 16px; }
.game-title { font-size: 15px; font-weight: 700; color: var(--text-h); margin-bottom: 6px; }
.game-meta { display: flex; align-items: center; gap: 8px; }
.game-rtp {
  font-size: 12px; font-weight: 700; color: var(--green);
  background: var(--green-soft); padding: 3px 9px; border-radius: 100px;
}
.game-tag {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  background: var(--bg); padding: 3px 9px; border-radius: 100px;
}
.crash-tag { color: var(--accent); background: var(--accent-soft); }

/* Slots grid */
.slots-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: start; }
.slots-img-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.slots-img-wrap img { width: 100%; }
.slots-info { display: flex; flex-direction: column; gap: 16px; }
.slots-info-card {
  padding: 24px; background: var(--bg-card); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
}
.slots-info-card h3 { font-size: 17px; font-weight: 800; color: var(--text-h); margin-bottom: 10px; }
.slots-info-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.slots-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.slots-list li { font-size: 14px; color: var(--text-body); display: flex; align-items: center; gap: 8px; }
.providers-list { display: flex; flex-wrap: wrap; gap: 8px; }
.provider-tag {
  padding: 6px 12px; background: var(--bg); border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--text-body);
  border: 1px solid var(--border);
}

/* Sport tab */
.sport-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }
.sport-img-wrap { display: flex; flex-direction: column; }
.sport-img-wrap img { width: 100%; height: auto; display: block; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 1.5px solid var(--border); }
.sport-cats { display: flex; flex-direction: column; gap: 10px; }
.sport-cat-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  background: var(--bg-card); border-radius: var(--r); border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all var(--tr);
}
.sport-cat-item:hover { border-color: var(--primary); transform: translateX(4px); }
.sport-cat-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.sport-cat-name { font-size: 15px; font-weight: 700; color: var(--text-h); }
.sport-cat-count { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── INSTALL SECTION ─────────────────────────────────────── */
.install-section { padding: 80px 0; }
.install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.install-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.install-phone-mock {
  width: 280px; height: 520px; background: #0d1b3e;
  border-radius: 36px; border: 6px solid #1a3a8f;
  box-shadow: 0 40px 80px rgba(13,27,62,0.25), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden; position: relative; flex-shrink: 0;
}
.install-phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(170deg, #1a3a8f 0%, #0d1b3e 60%);
  display: flex; flex-direction: column;
  padding: 20px 16px;
}
.phone-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.phone-logo { font-size: 13px; font-weight: 800; color: #fff; letter-spacing: 1px; }
.phone-live { font-size: 10px; font-weight: 700; color: #ff5722; background: rgba(255,87,34,0.15); padding: 3px 8px; border-radius: 100px; }
.phone-banner {
  background: linear-gradient(135deg, rgba(255,87,34,0.9), rgba(255,140,0,0.9));
  border-radius: 14px; padding: 16px; margin-bottom: 14px;
}
.phone-banner-title { font-size: 11px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
.phone-banner-val { font-size: 22px; font-weight: 900; color: #fff; line-height: 1; margin-top: 4px; }
.phone-banner-sub { font-size: 10px; color: rgba(255,255,255,0.8); margin-top: 3px; }
.phone-actions { display: flex; gap: 8px; margin-bottom: 16px; }
.phone-action-btn {
  flex: 1; padding: 10px 6px; border-radius: 10px; text-align: center;
  font-size: 11px; font-weight: 700;
}
.phone-action-green { background: rgba(0,200,83,0.85); color: #fff; }
.phone-action-blue  { background: rgba(26,86,219,0.85); color: #fff; }
.phone-games-row { display: flex; gap: 8px; }
.phone-game-card { flex: 1; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.08); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 24px; }

.install-steps-list { display: flex; flex-direction: column; gap: 24px; }
.install-step {
  display: flex; gap: 20px; align-items: flex-start;
  position: relative;
}
.install-step::before {
  content: '';
  position: absolute; left: 19px; top: 44px;
  width: 2px; height: calc(100% + 10px);
  background: linear-gradient(to bottom, var(--primary), var(--border));
}
.install-step:last-child::before { display: none; }
.install-step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #1a3a8f);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; box-shadow: 0 4px 14px rgba(26,86,219,0.4);
  position: relative; z-index: 1;
}
.install-step-content { padding-top: 6px; }
.install-step-content strong { display: block; font-size: 16px; font-weight: 700; color: var(--text-h); margin-bottom: 6px; }
.install-step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.install-step-tip {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 8px;
  padding: 5px 12px; border-radius: 100px;
  background: var(--primary-soft); color: var(--primary); font-size: 12px; font-weight: 600;
}

/* ── BONUS SECTION ───────────────────────────────────────── */
.bonus-section { padding: 80px 0; }
.bonus-top { display: grid; grid-template-columns: 1fr 1.8fr; gap: 40px; align-items: start; margin-bottom: 48px; }
.promo-hero-card {
  background: linear-gradient(135deg, #071633 0%, #10386e 100%);
  border-radius: var(--r-xl); padding: 32px;
  color: #fff; position: relative; overflow: hidden;
}
.promo-hero-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,87,34,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.promo-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.promo-code-big {
  font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900;
  color: #ff8c00; letter-spacing: 4px; margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(255,140,0,0.4);
}
.promo-bonus-line { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.promo-bonus-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.promo-copy-row { display: flex; gap: 10px; }
.btn-copy-promo {
  flex: 1; padding: 13px 18px; border-radius: 100px; font-size: 13px; font-weight: 700;
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all var(--tr); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-copy-promo:hover { background: rgba(255,255,255,0.25); }
.btn-reg-promo {
  flex: 1; padding: 13px 18px; border-radius: 100px; font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
  background: linear-gradient(180deg, #ff5a2c, #f2451c); color: #fff;
  box-shadow: 0 4px 16px rgba(242,69,28,0.4);
  transition: all var(--tr); text-align: center;
}
.btn-reg-promo:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,69,28,0.5); color: #fff; }

.bonus-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bonus-card {
  background: var(--bg-card); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--tr);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.bonus-card-img { height: 160px; overflow: hidden; position: relative; }
.bonus-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.bonus-card:hover .bonus-card-img img { transform: scale(1.06); }
.bonus-card-body { padding: 18px 20px; }
.bonus-card-title { font-size: 16px; font-weight: 800; color: var(--text-h); margin-bottom: 6px; }
.bonus-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.bonus-card-val {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 20px; font-weight: 900; color: var(--accent); margin-bottom: 14px;
}

/* ── LIVE SECTION ────────────────────────────────────────── */
.live-section { padding: 80px 0; }
.live-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: start; }

.live-matches-panel {
  background: var(--bg-card); border-radius: var(--r-xl);
  border: 1.5px solid var(--border); box-shadow: var(--shadow);
  overflow: hidden;
}
.lmp-header {
  padding: 18px 24px; border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 10px;
}
.lmp-title { font-size: 16px; font-weight: 800; color: var(--text-h); flex: 1; }
.lmp-count { font-size: 13px; font-weight: 700; color: var(--primary); background: var(--primary-soft); padding: 4px 12px; border-radius: 100px; }

.lmw-match {
  padding: 18px 24px; border-bottom: 1px solid var(--border-soft);
  transition: background var(--tr);
}
.lmw-match:last-of-type { border-bottom: none; }
.lmw-match:hover { background: var(--bg); }
.lmw-sport-tag { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.lmw-teams-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.lmw-team-info { display: flex; align-items: center; gap: 8px; }
.lmw-team-info.lmw-right { flex-direction: row-reverse; }
.lmw-team-name { font-size: 14px; font-weight: 700; color: var(--text-h); }
.lmw-score-badge {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900;
}
.lmw-score-home { background: var(--accent); color: #fff; }
.lmw-score-away { background: var(--bg); color: var(--text-h); border: 2px solid var(--border); }
.lmw-time-badge {
  padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 800;
  background: rgba(255,77,77,0.16); color: #ff6b6b;
  animation: pulse-text 2s infinite;
}
@keyframes pulse-text { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
.lmw-set { background: var(--purple-soft); color: var(--purple); animation: none; }
.lmw-odds-row { display: flex; gap: 8px; }
.lmw-odd {
  flex: 1; padding: 9px 6px; border-radius: var(--r-sm);
  background: var(--bg); border: 1.5px solid var(--border);
  transition: all var(--tr); text-align: center;
}
.lmw-odd:hover { border-color: var(--primary); background: var(--primary-soft); }
.lmw-odd.lmw-odd-active { background: var(--primary); border-color: var(--primary); }
.lmw-odd.lmw-odd-active .lmw-odd-type,
.lmw-odd.lmw-odd-active .lmw-odd-val { color: #fff; }
.lmw-odd-type { display: block; font-size: 10px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.lmw-odd-val { display: block; font-size: 16px; font-weight: 900; color: var(--text-h); }
.lmw-more {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 24px; font-size: 13px; font-weight: 700; color: var(--primary);
  border-top: 1px solid var(--border-soft);
  cursor: pointer; transition: background var(--tr);
}
.lmw-more:hover { background: var(--primary-soft); }
.lmw-more-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 3px var(--green-soft); animation: pulse 1.5s infinite; }

.lmp-cta { padding: 20px 24px; border-top: 1px solid var(--border-soft); }

.live-features-panel { display: flex; flex-direction: column; gap: 16px; }
.live-feat-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; background: var(--bg-card); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all var(--tr);
}
.live-feat-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateX(4px); }
.live-feat-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--r); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.live-feat-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-h); margin-bottom: 6px; }
.live-feat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── REQUIREMENTS ────────────────────────────────────────── */
.req-section { padding: 80px 0; }
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.req-card {
  background: var(--bg-card); border-radius: var(--r-xl);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden;
}
.req-card-header {
  padding: 20px 28px; display: flex; align-items: center; gap: 14px;
}
.req-card-header.android { background: linear-gradient(135deg, #10386e, #0a2451); }
.req-card-header.ios     { background: linear-gradient(135deg, #3a3a3c, #141416); }
.req-os-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: rgba(255,255,255,0.14); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
}
.req-os-name { font-size: 18px; font-weight: 800; color: #fff; }
.req-os-sub  { font-size: 13px; color: rgba(255,255,255,0.65); }
.req-table { width: 100%; border-collapse: collapse; }
.req-table tr { border-bottom: 1px solid var(--border-soft); }
.req-table tr:last-child { border-bottom: none; }
.req-table td { padding: 14px 24px; font-size: 14px; }
.req-table td:first-child { color: var(--text-muted); font-weight: 600; width: 40%; }
.req-table td:last-child { color: var(--text-h); font-weight: 700; }
.req-tag { display: inline-flex; align-items: center; gap: 5px; }
.req-rec { color: var(--green); font-size: 11px; font-weight: 700; background: var(--green-soft); padding: 2px 8px; border-radius: 100px; margin-left: 6px; }

/* ── PAYMENTS ────────────────────────────────────────────── */
.payments-section { padding: 80px 0; }
.payments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px; }
.payment-card {
  padding: 22px 20px; background: var(--bg-card);
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); text-align: center; transition: all var(--tr);
}
.payment-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.payment-icon {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 14px;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
}
.payment-icon svg { width: 24px; height: 24px; }
.payment-card:hover .payment-icon { background: var(--primary); color: #fff; }
.payment-name { font-size: 15px; font-weight: 700; color: var(--text-h); margin-bottom: 4px; }
.payment-speed { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 4px; }
.payment-min { font-size: 12px; color: var(--text-muted); }
.payments-img-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.payments-img-wrap img { width: 100%; }

/* ── SECURITY ────────────────────────────────────────────── */
.security-section { padding: 80px 0; }
.security-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.security-list { display: flex; flex-direction: column; gap: 16px; }
.sec-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 22px; background: var(--bg-card);
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); transition: all var(--tr);
}
.sec-item:hover { border-color: var(--green); box-shadow: var(--shadow); }
.sec-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.sec-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-h); margin-bottom: 5px; }
.sec-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.security-trust-card {
  background: linear-gradient(135deg, #071633 0%, #0f346a 100%);
  border-radius: var(--r-xl); padding: 36px;
  color: #fff; position: relative; overflow: hidden;
}
.security-trust-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(0,200,83,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.trust-shield {
  width: 84px; height: 84px; margin-bottom: 20px; border-radius: 22px;
  background: rgba(0,200,83,0.16); color: #34e07a;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,200,83,0.3);
}
.trust-title { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.trust-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.trust-badges { display: flex; flex-direction: column; gap: 10px; }
.trust-badge-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: rgba(255,255,255,0.07); border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.12);
}
.trust-badge-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,0.1); color: #7ee6a8;
  display: flex; align-items: center; justify-content: center;
}
.trust-badge-icon svg { width: 17px; height: 17px; }
.trust-badge-text strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.trust-badge-text span  { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-section { padding: 80px 0; }
.reviews-top {
  display: flex; align-items: center; gap: 40px; margin-bottom: 48px;
  padding: 32px; background: var(--bg-card); border-radius: var(--r-xl);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
}
.reviews-rating-big {
  text-align: center; flex-shrink: 0;
  padding-right: 40px; border-right: 1px solid var(--border);
}
.reviews-big-num { font-family: 'Montserrat', sans-serif; font-size: 64px; font-weight: 900; color: var(--text-h); line-height: 1; }
.reviews-big-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; margin: 8px 0; }
.reviews-big-count { font-size: 13px; color: var(--text-muted); }
.reviews-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.review-bar-label { color: var(--text-muted); width: 24px; text-align: right; font-weight: 600; }
.review-bar-track { flex: 1; height: 8px; background: var(--bg); border-radius: 100px; overflow: hidden; }
.review-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--gold), #ffb800); }
.review-bar-count { color: var(--text-muted); width: 32px; font-size: 12px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--bg-card); border-radius: var(--r-lg); padding: 24px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all var(--tr);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff;
}
.reviewer-name { font-size: 15px; font-weight: 700; color: var(--text-h); }
.reviewer-date { font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 14px; }
.review-text { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 14px; }
.review-tag {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px;
  border-radius: 100px; font-size: 12px; font-weight: 700;
  background: var(--green-soft); color: var(--green);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.faq-left .h2 { margin-bottom: 16px; }
.faq-left .lead { margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: border-color var(--tr);
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-size: 15px; font-weight: 700; color: var(--text-h);
  gap: 14px; user-select: none;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all var(--tr);
}
.faq-item.open .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #071633 0%, #10386e 60%, #0a2451 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,87,34,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(124,58,237,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-inner .badge { margin-bottom: 20px; background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.cta-title {
  font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px;
}
.cta-title span { color: #ff8c00; }
.cta-desc { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-promo {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: var(--r-lg);
}
.cta-promo-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.cta-promo-code { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; color: #ffb800; letter-spacing: 2px; }
.cta-promo-sep { color: rgba(255,255,255,0.3); }
.cta-promo-bonus { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.about-text .badge { margin-bottom: 20px; }
.about-text .h2 { margin-bottom: 16px; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-stat-card {
  padding: 20px; background: var(--bg); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); text-align: center;
  transition: all var(--tr);
}
.about-stat-card:hover { background: var(--bg-card); border-color: var(--primary); box-shadow: var(--shadow); }
.about-stat-val { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 900; color: var(--primary); line-height: 1; }
.about-stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

.about-visual { position: relative; }
.about-main-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-main-img img { width: 100%; }
.about-float-card {
  position: absolute; bottom: -20px; left: -28px;
  background: var(--bg-card); border-radius: var(--r-lg); padding: 18px 22px;
  box-shadow: var(--shadow-lg); border: 1.5px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.about-float-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: var(--gold-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.about-float-text strong { display: block; font-size: 14px; font-weight: 800; color: var(--text-h); }
.about-float-text span { font-size: 12px; color: var(--text-muted); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #061228;
  padding: 64px 0 0; color: rgba(255,255,255,0.7);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo img { height: 40px; width: auto; margin-bottom: 16px; filter: none; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 10px; font-size: 16px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  transition: all var(--tr); border: 1px solid rgba(255,255,255,0.1);
}
.footer-social:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

.footer-col-title { font-size: 13px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--tr); }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color var(--tr); }
.footer-legal-links a:hover { color: rgba(255,255,255,0.75); }
.footer-18 {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.5); flex-shrink: 0;
}
.footer-disclaimer {
  font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 8px;
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: 18px;
  box-shadow: var(--shadow-lg); opacity: 0; transition: all var(--tr);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
}
.back-top.visible { opacity: 1; }
.back-top:hover { background: var(--primary-h); transform: translateY(-3px); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid        { grid-template-columns: 1fr; }
  .hero-right       { display: none; }
  .hero-left        { padding-bottom: 60px; }
  .download-grid    { grid-template-columns: 1fr; }
  .games-grid       { grid-template-columns: repeat(2, 1fr); }
  .slots-layout     { grid-template-columns: 1fr; }
  .sport-layout     { grid-template-columns: 1fr; }
  .install-grid     { grid-template-columns: 1fr; }
  .install-visual   { display: none; }
  .bonus-top        { grid-template-columns: 1fr; }
  .live-layout      { grid-template-columns: 1fr; }
  .security-layout  { grid-template-columns: 1fr; }
  .reviews-grid     { grid-template-columns: repeat(2, 1fr); }
  .faq-layout       { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-visual     { display: none; }
  .footer-top       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .req-grid         { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header-nav    { display: none; }
  .header-apk-info { display: none; }
  .burger        { display: flex; }
  .section       { padding: 56px 0; }
  .games-grid    { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bonus-cards-grid  { grid-template-columns: 1fr; }
  .payments-grid     { grid-template-columns: 1fr 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .reviews-top   { flex-direction: column; gap: 24px; }
  .reviews-rating-big { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stat-bar-item { padding: 14px 18px; }
  .hero-stats    { gap: 16px; }
  .cta-section   { padding: 64px 0; }
  .hero          { padding: 56px 0 0; }
}

@media (max-width: 480px) {
  .games-grid    { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr; }
  .dl-info-grid  { grid-template-columns: 1fr; }
  .apk-float-specs { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .cta-actions   { flex-direction: column; align-items: center; }
}

/* ── SEO TEXT SECTION ─────────────────────────────────────── */
.seo-section { padding: 80px 0; }
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.seo-article {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--tr), border-color var(--tr);
}
.seo-article:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.seo-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 14px;
  line-height: 1.3;
}
.seo-article p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 12px;
}
.seo-article p:last-child { margin-bottom: 0; }
.seo-article strong { color: var(--text-h); font-weight: 700; }

@media (max-width: 900px) {
  .seo-grid { grid-template-columns: 1fr; }
}

/* ── APP SCREENSHOT FRAME (реальный скриншот приложения) ─── */
.app-screen-frame {
  width: 100%; max-width: 520px;
  background: #0d1b3e; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 70px rgba(13,27,62,0.3);
  overflow: hidden;
}
.app-screen-topbar {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px; background: #0a1530;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.asf-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.asf-dot:nth-child(1) { background: #ff5f57; }
.asf-dot:nth-child(2) { background: #febc2e; }
.asf-dot:nth-child(3) { background: #28c840; }
.asf-title { font-size: 11px; color: rgba(255,255,255,0.45); margin-left: 8px; font-weight: 600; letter-spacing: 0.3px; }
.app-screen-frame img { width: 100%; height: auto; display: block; }
.app-screen-caption {
  margin-top: 14px; font-size: 13px; color: var(--text-muted);
  text-align: center; max-width: 480px;
}
.install-visual { flex-direction: column; }

/* ── PAYMENTS STRIP (реальная полоса платёжек) ────────────── */
.payments-strip-wrap {
  margin-top: 8px; padding: 22px 28px;
  background: linear-gradient(135deg, #0d2a5c, #0a1e42);
  border-radius: var(--r-lg); text-align: center;
  box-shadow: var(--shadow-lg);
}
.payments-strip-label {
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 14px;
}
.payments-strip-wrap img { max-width: 100%; height: auto; border-radius: 8px; }

/* ── SPORTS PARTNERS STRIP ────────────────────────────────── */
.sports-partners {
  margin-top: 26px; padding: 18px 22px;
  background: linear-gradient(135deg, #0d2a5c, #0a1e42);
  border-radius: var(--r-lg);
}
.sports-partners-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 12px;
}
.sports-partners img { max-width: 100%; height: auto; display: block; }

/* ── iOS GUIDE BLOCK ──────────────────────────────────────── */
.ios-guide-block {
  margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; background: var(--bg-card); border-radius: var(--r-xl);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-lg);
  overflow: hidden; align-items: stretch;
}
.ios-guide-img { background: #0d1f4e; display: flex; align-items: center; justify-content: center; }
.ios-guide-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ios-guide-text { padding: 38px 40px; }
.ios-guide-text h3 {
  font-family: 'Montserrat', sans-serif; font-size: 1.35rem; font-weight: 800;
  color: var(--text-h); margin: 0 0 12px;
}
.ios-guide-text > p { font-size: 14.5px; color: var(--text-muted); margin: 0 0 18px; }
.ios-steps { margin: 0 0 24px; padding-left: 20px; display: flex; flex-direction: column; gap: 12px; }
.ios-steps li { font-size: 14.5px; color: var(--text); line-height: 1.55; }
.ios-steps li strong { color: var(--text-h); }

@media (max-width: 900px) {
  .ios-guide-block { grid-template-columns: 1fr; }
  .ios-guide-text { padding: 28px 24px; }
  .app-screen-frame { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   PROFESSIONAL POLISH v2
   ══════════════════════════════════════════════════════════ */

/* SVG icon sizing inside colored chips */
.hero-float-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-social { color: rgba(255,255,255,0.65); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 17px; height: 17px; }
.live-feat-icon-wrap svg { width: 21px; height: 21px; }
.sec-icon svg { width: 20px; height: 20px; }
.sport-cat-icon svg { width: 20px; height: 20px; }
.trust-shield svg { width: 44px; height: 44px; }
.about-float-icon svg { width: 22px; height: 22px; }
.req-os-icon svg { width: 24px; height: 24px; }
.badge-live::before { flex-shrink: 0; }

/* Hero: subtle grid pattern + refined gradient */
.hero {
  background:
    linear-gradient(135deg, #061228 0%, #0a2451 45%, #14418a 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 75%);
  pointer-events: none;
}
.hero-grid { z-index: 3; }

/* Hero badge dot */
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }
.dot-green { background: #34e07a; box-shadow: 0 0 0 3px rgba(52,224,122,0.25); animation: pulse 2s infinite; }

/* Section headers: decorative underline */
.section-head .h2 { position: relative; padding-bottom: 18px; }
.section-head .h2::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 56px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Badges: refined */
.badge { letter-spacing: 1.2px; font-size: 11px; padding: 6px 16px; }

/* Buttons: press state + focus ring */
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: 3px solid rgba(61,127,217,0.5); outline-offset: 2px; }

/* Cards: consistent hover elevation */
.game-card { overflow: hidden; border-radius: var(--r-lg); background: var(--bg-card); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); transition: all var(--tr); }
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(61,127,217,0.55); }

/* Bonus cards: image treatment */
.bonus-card-img { position: relative; overflow: hidden; }
.bonus-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,27,62,0.25));
  pointer-events: none;
}
.bonus-card-img img { transition: transform 0.4s ease; }
.bonus-card:hover .bonus-card-img img { transform: scale(1.04); }

/* Promo hero card: shine effect */
.promo-hero-card { position: relative; overflow: hidden; }
.promo-hero-card::after {
  content: ''; position: absolute; top: -60%; left: -20%;
  width: 50%; height: 220%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: rotate(18deg);
  animation: shine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 60% { left: -60%; }
  100% { left: 140%; }
}

/* Tables: zebra rows */
.req-table tr:nth-child(even) { background: var(--bg); }

/* Review cards: quote mark */
.review-card { position: relative; }
.review-card::before {
  content: '“'; position: absolute; top: 10px; right: 20px;
  font-family: Georgia, serif; font-size: 64px; line-height: 1;
  color: rgba(61,127,217,0.25); pointer-events: none;
}

/* FAQ: refined */
.faq-item { transition: all var(--tr); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-icon { transition: transform 0.25s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Footer links hover */
.footer-links a { transition: color var(--tr), padding-left var(--tr); }
.footer-links a:hover { color: #fff; padding-left: 4px; }

/* Scrollbar (subtle, brand-tinted) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #2a4f8c; border-radius: 8px; border: 2px solid var(--bg-alt); }
::-webkit-scrollbar-thumb:hover { background: #3d6bb0; }

/* Selection */
::selection { background: rgba(255,77,28,0.35); color: #fff; }

/* Smoother fade-up */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.fade-up.visible { opacity: 1; transform: none; }

/* CTA section: pattern overlay */
.cta-inner { position: relative; overflow: hidden; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════
   PROFESSIONAL POLISH v3 — premium micro-interactions
   ══════════════════════════════════════════════════════════ */

/* Anchor offset under sticky header */
html { scroll-padding-top: calc(var(--header-h) + 16px); }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 2000;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent), #ff8c00);
  border-radius: 0 3px 3px 0;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Header: flat by default, elevates on scroll */
.site-header { transition: box-shadow 0.25s ease; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(2,10,26,0.5); }

/* Softer layered shadows (dark theme) */
:root {
  --shadow-sm: 0 1px 2px rgba(2,10,26,0.25), 0 2px 8px rgba(2,10,26,0.20);
  --shadow:    0 2px 6px rgba(2,10,26,0.30), 0 8px 24px rgba(2,10,26,0.28);
  --shadow-lg: 0 4px 12px rgba(2,10,26,0.35), 0 16px 48px rgba(2,10,26,0.40);
}

/* Tabular numerals for all stats */
.stat-bar-text .val, .hero-stat-val, .about-stat-val,
.reviews-big-num, .lmw-odd-val, .dl-rating-text strong,
.apk-rating-val { font-variant-numeric: tabular-nums; }

/* Gradient accent text (hero + promo) */
.hero-title span, .cta-title span {
  background: linear-gradient(92deg, #ff8a5e 0%, #ff4d1c 60%, #f2451c 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.promo-code-big {
  background: linear-gradient(92deg, #ffb800 0%, #ff6a3d 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; text-shadow: none;
  filter: drop-shadow(0 4px 18px rgba(255,140,0,0.35));
}

/* Hero floating badges: gentle levitation */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hero-float-1 { animation: floaty 4.5s ease-in-out infinite; }
.hero-float-2 { animation: floaty 5.5s ease-in-out 0.8s infinite; }
.hero-float-3 { animation: floaty 5s ease-in-out 1.6s infinite; }

/* Buttons: inner highlight = premium depth */
.btn-primary, .btn-accent, .btn-green {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 4px 16px rgba(61,127,217,0.30);
}
.btn-accent { box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 4px 16px rgba(242,69,28,0.38); }
.btn-green  { box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 16px rgba(47,213,113,0.28); }
.btn { letter-spacing: 0.2px; }

/* Icon chips: playful micro-scale on parent hover */
.stat-bar-icon, .sport-cat-icon, .sec-icon, .live-feat-icon-wrap,
.req-os-icon, .about-float-icon, .trust-badge-icon { transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), background var(--tr), color var(--tr); }
.stat-bar-item:hover .stat-bar-icon,
.sport-cat-item:hover .sport-cat-icon,
.sec-item:hover .sec-icon,
.live-feat-card:hover .live-feat-icon-wrap { transform: scale(1.1) rotate(-4deg); }

/* Nav: animated underline indicator */
.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { background: transparent; }
.nav-link:hover { background: transparent; }

/* Download steps: numbers get gradient */
.dl-step-num, .install-step-num {
  background: linear-gradient(135deg, #ff5a2c, #f2451c);
  box-shadow: 0 4px 12px rgba(242,69,28,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Review bars: animate on reveal */
.review-bar-fill { width: 0; transition: width 1.1s cubic-bezier(0.16,1,0.3,1); }

/* Footer: gradient hairline on top */
.site-footer { position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--gold));
  opacity: 0.85;
}

/* Games tabs: pill glow */
.tab-btn.active { box-shadow: 0 4px 14px rgba(61,127,217,0.45), inset 0 1px 0 rgba(255,255,255,0.18); }

/* APK float card: top accent ribbon */
.apk-float-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Live match rows: left accent on hover */
.lmw-match { border-left: 3px solid transparent; }
.lmw-match:hover { border-left-color: var(--primary); }

/* Stagger delays applied via JS custom prop */
.fade-up { transition-delay: var(--d, 0s); }

/* Logo hover */
.header-logo { transition: opacity var(--tr); }
.header-logo:hover { opacity: 0.85; }

/* Back-to-top refined */
.back-top { border-radius: 14px; }

@media (prefers-reduced-motion: reduce) {
  .hero-float-1, .hero-float-2, .hero-float-3 { animation: none; }
  .review-bar-fill { transition: none; }
}
