/* ===== OLIMPBET APP - MAIN STYLES ===== */
:root {
  --color-red: #CF1817;
  --color-dark: #1E1E1E;
  --color-black: #000000;
  --color-orange: #FD9D22;
  --color-yellow: #FFDC4C;
  --color-deep-orange: #E35900;
  --color-purple: #8B43AA;
  --color-green: #159B32;
  --color-pink: #E16763;
  --color-white: #FFFFFF;
  --color-gray: #2A2A2A;
  --color-light-gray: #3A3A3A;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 24px rgba(207,24,23,0.18);
  --shadow-gold: 0 4px 24px rgba(253,157,34,0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background-color: var(--color-dark);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(135deg, #0a0a0a 0%, #1E1E1E 50%, #2a0a0a 100%);
  border-bottom: 2px solid var(--color-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(207,24,23,0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Разделитель между nav-ссылками и кнопками */
.header-nav .nav-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  margin: 0 8px;
}

.nav-link {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13.5px;
  padding: 7px 13px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.07);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--color-white);
  background: rgba(207,24,23,0.14);
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* === CTA Кнопки в шапке === */
.btn-register {
  background: linear-gradient(135deg, #159B32 0%, #0e7324 100%);
  color: var(--color-white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(21,155,50,0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 12px rgba(21,155,50,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  white-space: nowrap;
  margin-left: 6px;
}

.btn-register:hover {
  background: linear-gradient(135deg, #1db83d 0%, #159B32 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21,155,50,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
  border-color: rgba(29,184,61,0.5);
}

.btn-register:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(21,155,50,0.4);
}

.btn-login {
  background: linear-gradient(135deg, #c84040 0%, #a02828 100%);
  color: var(--color-white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(207,24,23,0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 12px rgba(207,24,23,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  white-space: nowrap;
  margin-left: 4px;
}

.btn-login:hover {
  background: linear-gradient(135deg, #e04545 0%, #c02e2e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207,24,23,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
  border-color: rgba(224,69,69,0.5);
}

.btn-login:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(207,24,23,0.4);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #0f0f0f;
  border-bottom: 2px solid var(--color-red);
  padding: 20px;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
}

.breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-orange);
}

.breadcrumb span {
  color: var(--color-orange);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 80px;
  background: linear-gradient(135deg, #0a0000 0%, #1a0505 40%, #0d0d0d 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('/images/hero-banner.png') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-white);
}

.hero-content h1 span {
  color: var(--color-red);
  display: block;
}

.hero-content p {
  font-size: 17px;
  color: #ccc;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(21,155,50,0.4);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(21,155,50,0.55);
  background: #1db83d;
}

.btn-secondary {
  background: var(--color-pink);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(225,103,99,0.4);
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(225,103,99,0.55);
}

.btn-download {
  background: linear-gradient(135deg, var(--color-red) 0%, #a01010 100%);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(207,24,23,0.4);
  border: none;
  cursor: pointer;
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(207,24,23,0.55);
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(207,24,23,0.2);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(90deg, var(--color-red) 0%, #a01010 100%);
  padding: 20px;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-white);
  display: block;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-top: 4px;
}

/* ===== SECTION ===== */
.section {
  padding: 80px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-white);
  line-height: 1.2;
}

.section-title span {
  color: var(--color-red);
}

.section-subtitle {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 48px;
  max-width: 700px;
  line-height: 1.7;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* ===== FRAME CARD (Стиль рамки как на скрине) ===== */
.frame-card {
  background: #141414;
  border: 1px solid rgba(207,24,23,0.25);
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.frame-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
}

.frame-card:hover {
  border-color: rgba(207,24,23,0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(207,24,23,0.2);
}

.frame-card-gold {
  border-color: rgba(253,157,34,0.25);
}

.frame-card-gold::before {
  background: linear-gradient(90deg, var(--color-orange), var(--color-yellow));
}

.frame-card-gold:hover {
  border-color: rgba(253,157,34,0.6);
  box-shadow: 0 12px 40px rgba(253,157,34,0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(207,24,23,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid rgba(207,24,23,0.2);
}

.card-icon-gold {
  background: rgba(253,157,34,0.1);
  border-color: rgba(253,157,34,0.2);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-text {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  background: linear-gradient(135deg, #0f0000 0%, #1a0505 50%, #0a0a0a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.download-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== STEPS ===== */
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

/* ===== TEXT SECTIONS ===== */
.text-block {
  background: #141414;
  border: 1px solid rgba(207,24,23,0.15);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  margin-bottom: 30px;
}

.text-block h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.3;
  border-left: 4px solid var(--color-red);
  padding-left: 16px;
}

.text-block h3 {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 12px;
  margin-top: 28px;
  line-height: 1.3;
}

.text-block p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.text-block ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.text-block ul li::before {
  content: '▶';
  color: var(--color-red);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ===== BANNER IMAGE ===== */
.banner-img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  margin: 30px 0;
  border: 1px solid rgba(207,24,23,0.2);
  display: block;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.faq-item {
  background: #141414;
  border: 1px solid rgba(207,24,23,0.15);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(207,24,23,0.4);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--color-red);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  border-top: 1px solid rgba(207,24,23,0.1);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== PROMO BLOCK ===== */
.promo-block {
  background: linear-gradient(135deg, var(--color-red) 0%, #8a0e0e 100%);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.promo-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.promo-block h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
}

.promo-block p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.promo-code {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

/* ===== CRYPTO GRID ===== */
.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.crypto-item {
  background: #141414;
  border: 1px solid rgba(253,157,34,0.2);
  border-radius: var(--border-radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

.crypto-item:hover {
  border-color: rgba(253,157,34,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(253,157,34,0.15);
}

.crypto-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.crypto-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  display: block;
}

.crypto-plus {
  font-size: 11px;
  color: var(--color-green);
  display: block;
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(207,24,23,0.2);
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #777;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: #555;
}

.footer-disclaimer {
  max-width: 1280px;
  margin: 20px auto 0;
  font-size: 12px;
  color: #444;
  line-height: 1.6;
  text-align: center;
}

/* ===== IMAGE SECTION ===== */
.img-section {
  width: 100%;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(207,24,23,0.2);
  overflow: hidden;
  margin: 30px 0;
}

.img-section img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.img-section:hover img {
  transform: scale(1.02);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(207,24,23,0.1) 0%, rgba(253,157,34,0.05) 100%);
  border: 1px solid rgba(207,24,23,0.3);
  border-radius: var(--border-radius);
  padding: 24px 28px;
  margin: 24px 0;
}

.highlight-box p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
}

/* ===== TWO COLUMN GRID ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(207,24,23,0.12);
  border: 1px solid rgba(207,24,23,0.3);
  color: var(--color-red);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-inner,
  .download-inner,
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-image {
    order: -1;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .stats-inner {
    justify-content: flex-start;
    gap: 30px 40px;
  }
  
  .hero {
    padding: 40px 16px 60px;
  }
  
  .section {
    padding: 50px 16px;
  }
  
  .text-block {
    padding: 24px 20px;
  }
  
  .promo-block {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary, .btn-download {
    width: 100%;
    justify-content: center;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .crypto-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== EXTENDED STYLES FOR NEW PAGES ===== */

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header new styles */
.header {
  background: linear-gradient(135deg, #0a0a0a 0%, #1E1E1E 50%, #2a0a0a 100%);
  border-bottom: 2px solid var(--color-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(207,24,23,0.3);
}

.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link { text-decoration: none; }
.logo { height: 44px; width: auto; }

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
}

.main-nav .nav-link {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
  font-weight: 500;
  white-space: nowrap;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--color-white);
  background: rgba(207,24,23,0.2);
}

/* Live ссылка — акцентный стиль */
.main-nav .nav-link[href="/live"] {
  color: #fff;
  background: rgba(207,24,23,0.25);
  font-weight: 700;
}
.main-nav .nav-link[href="/live"]::before {
  content: '●';
  color: #CF1817;
  font-size: 8px;
  margin-right: 4px;
  animation: live-pulse 1.2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Generic buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(21,155,50,0.4);
}
.btn-primary:hover {
  background: #1db83d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(21,155,50,0.55);
}

.btn-login {
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(225,103,99,0.35);
}
.btn-login:hover {
  background: #e8534e;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-dark);
}
.btn-white:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.btn-xl { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Section generic */
.section {
  padding: 80px 0;
}
.section.bg-dark { background: #121212; }
.section.bg-light { background: #181818; }

.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title.light { color: var(--color-white); }
.section-title .accent { color: var(--color-green); }

.section-subtitle {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 40px;
  max-width: 750px;
  line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,0.75); }

/* Hero layout */
.hero {
  padding: 70px 0 80px;
  background: linear-gradient(135deg, #0a0000 0%, #1a0505 40%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(207,24,23,0.15);
  border: 1px solid rgba(207,24,23,0.4);
  color: var(--color-red);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.live-badge { background: rgba(207,24,23,0.3); animation: pulse 2s infinite; }

/* Live hero — текст по центру */
.live-hero .container {
  grid-template-columns: 1fr;
  max-width: 860px;
  text-align: center;
}
.live-hero .hero-content {
  text-align: center;
}
.live-hero .hero-badge {
  margin-left: auto;
  margin-right: auto;
}
.live-hero .hero-cta {
  justify-content: center;
}
.live-hero .live-counter {
  justify-content: center;
}
.live-hero .hero-image {
  display: none;
}
.hero-title {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--color-white);
}
.hero-title .accent { color: var(--color-red); }
.hero-subtitle {
  font-size: 17px;
  color: #ccc;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-img { width: 100%; border-radius: 16px; box-shadow: 0 8px 40px rgba(207,24,23,0.25); }

/* Hero stats */
.hero-stats, .live-counter {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.stat, .live-stat { text-align: center; }
.stat-num, .live-num {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--color-green);
}
.stat-label, .live-label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
.ios-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.ios-badges .badge, .hero-stats .badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ccc;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* Download buttons */
.download-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}
.download-btn.ios {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  border-color: #666;
  color: var(--color-white);
}
.download-btn.android {
  background: linear-gradient(135deg, rgba(21,155,50,0.2) 0%, rgba(21,155,50,0.1) 100%);
  border-color: var(--color-green);
  color: var(--color-white);
}
.download-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.download-icon { font-size: 28px; }
.download-sub { display: block; font-size: 12px; color: #aaa; }
.download-main { display: block; font-size: 18px; font-weight: 800; }

/* Content grid (text + image) */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.content-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-orange);
  margin: 28px 0 10px;
}
.content-text p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 16px;
}
.rounded-img { width: 100%; border-radius: 16px; border: 1px solid rgba(207,24,23,0.2); }
.mt-20 { margin-top: 20px; }
.image-caption {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* Bonus grid */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.bonus-card {
  background: #141414;
  border: 1px solid rgba(207,24,23,0.2);
  border-radius: 16px;
  padding: 30px 24px;
  transition: var(--transition);
  position: relative;
}
.bonus-card.featured {
  border-color: var(--color-green);
  background: linear-gradient(135deg, #0d1f10 0%, #141414 100%);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(207,24,23,0.2); }
.bonus-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--color-green);
  color: var(--color-white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.bonus-icon { font-size: 40px; margin-bottom: 16px; }
.bonus-title { font-size: 20px; font-weight: 700; color: var(--color-white); margin-bottom: 8px; }
.bonus-amount { font-size: 28px; font-weight: 900; color: var(--color-green); margin-bottom: 12px; }
.bonus-desc { font-size: 14px; color: #aaa; line-height: 1.7; margin-bottom: 16px; }
.bonus-features { list-style: none; margin-bottom: 20px; }
.bonus-features li { font-size: 14px; color: #ccc; padding: 4px 0; }

/* Promo section */
.promo-section { background: linear-gradient(135deg, #0a1a0a 0%, #141414 100%); }
.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.promo-code-block {
  background: #0d0d0d;
  border: 2px solid var(--color-green);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.promo-label { font-size: 14px; color: #888; margin-bottom: 8px; }
.promo-code {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-green);
  letter-spacing: 4px;
  margin-bottom: 12px;
  background: rgba(21,155,50,0.1);
  padding: 12px 24px;
  border-radius: 10px;
  display: inline-block;
}
.promo-desc-small { font-size: 14px; color: #777; margin-bottom: 24px; }
.promo-benefits { display: flex; flex-direction: column; gap: 20px; }
.promo-benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit-icon { font-size: 28px; flex-shrink: 0; }
.promo-benefit strong { display: block; font-size: 16px; color: var(--color-white); margin-bottom: 4px; }
.promo-benefit p { font-size: 14px; color: #aaa; margin: 0; }

/* Steps */
.steps-container { display: flex; flex-direction: column; gap: 60px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.step.reverse { direction: rtl; }
.step.reverse > * { direction: ltr; }
.step-number {
  font-size: 60px;
  font-weight: 900;
  color: rgba(207,24,23,0.25);
  line-height: 1;
}
.step-content h3 { font-size: 22px; font-weight: 700; color: var(--color-white); margin-bottom: 12px; }
.step-content p { font-size: 15px; color: #ccc; line-height: 1.8; margin-bottom: 16px; }
.step-image img { width: 100%; border-radius: 12px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #141414;
  border: 1px solid rgba(207,24,23,0.15);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.faq-icon { color: var(--color-red); font-size: 22px; flex-shrink: 0; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid rgba(207,24,23,0.1);
}
.faq-answer p { margin-bottom: 8px; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Levels table */
.levels-table { background: #0d0d0d; border-radius: 12px; overflow: hidden; margin: 20px 0; }
.level-row {
  display: grid;
  grid-template-columns: 1fr 1fr 80px;
  padding: 14px 20px;
  border-bottom: 1px solid #222;
  font-size: 14px;
  color: #ccc;
  align-items: center;
}
.level-row.header { background: #181818; color: #888; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.level-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.level-badge.bronze { background: rgba(205,127,50,0.2); color: #cd7f32; }
.level-badge.silver { background: rgba(192,192,192,0.2); color: #c0c0c0; }
.level-badge.gold { background: rgba(255,215,0,0.2); color: #ffd700; }
.level-badge.platinum { background: rgba(229,228,226,0.2); color: #e5e4e2; }
.level-badge.diamond { background: rgba(185,242,255,0.2); color: #b9f2ff; }
.cashback-pct { font-size: 18px; font-weight: 800; color: var(--color-green); }

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--color-red) 0%, #8a0e0e 100%);
  padding: 80px 0;
}
.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-logo { margin-bottom: 20px; }
.cta-content h2 { font-size: 36px; font-weight: 900; color: var(--color-white); margin-bottom: 16px; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer new */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(207,24,23,0.2);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: #666; line-height: 1.7; }
.age-warning { font-size: 13px; color: #555; margin-top: 12px; }
.footer-heading { font-size: 15px; font-weight: 700; color: var(--color-white); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: #666; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--color-orange); }
.footer-promo { margin-top: 20px; font-size: 14px; color: #666; }
.promo-highlight { color: var(--color-green); font-size: 16px; }
.footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: 13px; color: #444; }
.disclaimer { font-size: 12px; color: #333; }

/* Burger menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Long text */
.long-text-block { max-width: 900px; margin: 0 auto; }
.long-text-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-orange);
  margin: 32px 0 12px;
  text-align: center;
}
.long-text-block p { font-size: 15px; color: #ccc; line-height: 1.85; margin-bottom: 16px; text-align: left; }
.long-text-block strong { color: var(--color-white); }

/* Requirements grid */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.req-card {
  background: #141414;
  border: 1px solid rgba(207,24,23,0.2);
  border-radius: 14px;
  padding: 24px;
}
.req-icon { font-size: 36px; margin-bottom: 12px; }
.req-card h3 { font-size: 18px; font-weight: 700; color: var(--color-white); margin-bottom: 12px; }
.req-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.req-list li { font-size: 14px; color: #aaa; padding-left: 16px; position: relative; }
.req-list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-green); }

/* Install steps */
.install-steps { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.install-step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-white);
}
.step-body { flex: 1; }
.step-body h3 { font-size: 20px; font-weight: 700; color: var(--color-white); margin-bottom: 10px; }
.step-body p { font-size: 15px; color: #ccc; line-height: 1.8; margin-bottom: 12px; }
.install-cta { text-align: center; margin-top: 48px; padding: 40px; background: rgba(207,24,23,0.08); border-radius: 16px; }
.install-cta h3 { font-size: 24px; font-weight: 700; color: var(--color-white); margin: 16px 0 24px; }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature-item {
  background: #141414;
  border: 1px solid rgba(207,24,23,0.15);
  border-radius: 14px;
  padding: 24px;
  transition: var(--transition);
}
.feature-item:hover { border-color: rgba(207,24,23,0.5); transform: translateY(-3px); }
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-item h3 { font-size: 17px; font-weight: 700; color: var(--color-white); margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: #aaa; line-height: 1.7; }

/* Sports grid */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.sport-card {
  background: #141414;
  border: 1px solid rgba(207,24,23,0.2);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
  text-align: center;
}
.sport-card:hover { transform: translateY(-4px); border-color: rgba(207,24,23,0.5); }
.sport-icon { font-size: 48px; margin-bottom: 12px; }
.sport-card h3 { font-size: 20px; font-weight: 700; color: var(--color-white); margin-bottom: 12px; }
.sport-stats { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; justify-content: center; }
.sport-stats .stat-item {
  background: rgba(207,24,23,0.15);
  color: var(--color-red);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.sport-card p { font-size: 14px; color: #aaa; line-height: 1.7; margin-bottom: 16px; }

/* Tips grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.tip-card {
  background: #141414;
  border: 1px solid rgba(207,24,23,0.15);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}
.tip-num { font-size: 48px; font-weight: 900; color: rgba(207,24,23,0.2); margin-bottom: 8px; }
.tip-card h3 { font-size: 17px; font-weight: 700; color: var(--color-white); margin-bottom: 10px; }
.tip-card p { font-size: 14px; color: #aaa; line-height: 1.7; }

/* Events showcase */
.events-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0 40px;
}
.event-league {
  background: #141414;
  border: 1px solid rgba(207,24,23,0.2);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.league-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; justify-content: center; }
.league-icon { font-size: 28px; }
.league-name { font-size: 16px; font-weight: 700; color: var(--color-white); }
.event-league p { font-size: 14px; color: #aaa; line-height: 1.7; }

.section-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* App store badge */
.app-store-badge { margin-top: 20px; text-align: center; }

/* Pulse animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.pulse { animation: pulse 2s infinite; }

/* Accent color for headings */
.accent { color: var(--color-green); }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger-menu { display: flex; }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-image { order: -1; }

  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 60px 1fr; }
  .step-image { display: none; }
  .step.reverse { direction: ltr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .promo-content { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats, .live-counter { gap: 16px; }
  .stat-num, .live-num { font-size: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: 1fr; }
  .requirements-grid { grid-template-columns: 1fr 1fr; }
  .download-buttons { flex-direction: column; }
  .btn-xl { width: 100%; justify-content: center; }
}

/* ===== LIGHT SECTIONS - DARK TEXT FIX ===== */
/* Секции со светлым фоном: переопределяем белый текст body на тёмный */

section[style*="background:#f8f9fa"],
section[style*="background: #f8f9fa"],
section[style*="background:#fff"],
section[style*="background: #fff"],
section[style*="background:#f9fafb"],
section[style*="background: #f9fafb"],
section[style*="background:white"],
div[style*="background:#f8f9fa"],
div[style*="background:#fff"],
div[style*="background:#f9fafb"] {
  color: #1a1a2e !important;
}

/* Заголовки внутри светлых секций */
section[style*="background:#f8f9fa"] h1,
section[style*="background:#f8f9fa"] h2,
section[style*="background:#f8f9fa"] h3,
section[style*="background:#f8f9fa"] h4,
section[style*="background:#f8f9fa"] p,
section[style*="background:#f8f9fa"] li,
section[style*="background:#f8f9fa"] span,
section[style*="background:#f8f9fa"] label,
section[style*="background:#fff"] h1,
section[style*="background:#fff"] h2,
section[style*="background:#fff"] h3,
section[style*="background:#fff"] h4,
section[style*="background:#fff"] p,
section[style*="background:#fff"] li,
section[style*="background:#f9fafb"] h2,
section[style*="background:#f9fafb"] h3,
section[style*="background:#f9fafb"] p {
  color: #1a1a2e !important;
}

/* Все таблицы — принудительно светлый фон и тёмный текст */
table {
  color: #1a1a2e;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
table tbody tr {
  background: #fff;
  color: #1a1a2e;
}
table tbody tr:nth-child(even) {
  background: #f9f9f9;
}
table tbody td {
  color: #333 !important;
  background: inherit;
}
/* Строки с явным bg переопределяем */
table tbody tr[style*="background:#f9f"] td,
table tbody tr[style*="background:#fff"] td,
table tbody tr[style*="background:white"] td {
  color: #333 !important;
}
table thead tr th {
  /* сохраняем white для красных шапок - переопределяется инлайном */
}

/* Светлый фон строк таблицы */
tr[style*="background:#f9fafb"] td,
tr[style*="background:#f9f9f9"] td,
tr[style*="background:#fff"] td,
tr[style*="background:white"] td {
  color: #333 !important;
}
/* Белые строки без background */
table tbody tr td {
  color: #333 !important;
}

/* FAQ — белый текст глобально (faq всегда на тёмном фоне) */
.faq-question {
  color: #ffffff !important;
}
.faq-answer {
  color: #cccccc !important;
}
.faq-answer p,
.faq-answer li,
.faq-answer span,
.faq-answer strong,
.faq-answer a {
  color: #cccccc !important;
}

/* Карточки info/cards на светлом фоне */
div[style*="background:#fff"][style*="border-radius"] h3,
div[style*="background:#fff"][style*="border-radius"] p,
div[style*="background:#fff"][style*="border-radius"] li,
div[style*="background:#fff"][style*="border-radius"] ul {
  color: #1a1a2e !important;
}

/* Параграфы с явным color в инлайне — не трогаем (они переопределяют сами) */

/* Предупреждающие блоки */
p[style*="background:#fff3cd"],
div[style*="background:#fff3cd"] {
  color: #555 !important;
}

/* ===== UNIVERSAL LIGHT-BG CHILDREN FIX ===== */
/* Все дочерние элементы карточек/блоков со светлым фоном */

/* Карточки с белым фоном */
div[style*="background:#fff"] h1,
div[style*="background:#fff"] h2,
div[style*="background:#fff"] h3,
div[style*="background:#fff"] h4,
div[style*="background:#fff"] h5,
div[style*="background:#fff"] p,
div[style*="background:#fff"] li,
div[style*="background:#fff"] ul,
div[style*="background:#fff"] ol,
div[style*="background:#fff"] span:not(.badge):not(.tag):not(.accent),
div[style*="background:#fff"] strong,
div[style*="background:#fff"] em,
div[style*="background:#fff"] a {
  color: #1a1a2e !important;
}

/* Секции со светло-серым фоном */
section[style*="background:#f8f9fa"] h1,
section[style*="background:#f8f9fa"] h2,
section[style*="background:#f8f9fa"] h3,
section[style*="background:#f8f9fa"] h4,
section[style*="background:#f8f9fa"] p,
section[style*="background:#f8f9fa"] li,
section[style*="background:#f8f9fa"] strong,
section[style*="background:#f8f9fa"] span:not(.badge),
section[style*="background:#f8f9fa"] a,
section[style*="color:#1a1a2e"] h2,
section[style*="color:#1a1a2e"] h3,
section[style*="color:#1a1a2e"] p,
section[style*="color:#1a1a2e"] li {
  color: #1a1a2e !important;
}

/* Зелёные информационные блоки */
div[style*="background:#f0fff4"] *,
p[style*="background:#f0fff4"],
div[style*="background:#f0fff4"] p,
div[style*="background:#f0fff4"] strong,
div[style*="background:#f0fff4"] span {
  color: #1a1a2e !important;
}

/* Жёлтые предупреждения */
div[style*="background:#fff3cd"] *,
div[style*="background:#fffbe6"] * {
  color: #555 !important;
}

/* Переопределяем цвет ссылок внутри светлых блоков — делаем акцентным красным */
div[style*="background:#fff"] a[href],
section[style*="background:#f8f9fa"] a[href] {
  color: #CF1817 !important;
}
div[style*="background:#fff"] a[href]:hover,
section[style*="background:#f8f9fa"] a[href]:hover {
  color: #a01010 !important;
}

/* Кнопки внутри светлых блоков — не трогаем цвет */
div[style*="background:#fff"] .btn,
div[style*="background:#fff"] a.btn,
section[style*="background:#f8f9fa"] .btn,
section[style*="background:#f8f9fa"] a.btn {
  color: inherit !important;
}

/* Заголовки section-title на светлых фонах */
section[style*="background:#f8f9fa"] .section-title,
section[style*="background:#f8f9fa"] .section-subtitle {
  color: #1a1a2e !important;
}
section[style*="background:#f8f9fa"] .section-title .accent,
section[style*="background:#f8f9fa"] .section-title span {
  color: #CF1817 !important;
}

/* Header — тёмный фон, оставляем белый текст навигации как есть */
/* nav-link цвет задан в .nav-link { color: rgba(255,255,255,0.72) } — не перебиваем */

/* ===== LIVE PAGE — текст по центру ===== */
.sport-card .sport-icon { text-align: center; }
.sport-card h3 { text-align: center; }
.sport-card p { text-align: center; }
.tip-card .tip-num { text-align: center; }
.tip-card h3 { text-align: center; }
.tip-card p { text-align: center; }
.event-league .league-header { justify-content: center; }
.event-league p { text-align: center; }
.faq-list { max-width: 820px; margin: 0 auto; }
