/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #E8340A;
  --red-dark: #C12A08;
  --red-glow: rgba(232, 52, 10, 0.4);
  --orange: #FF6B2B;
  --gold: #FFB800;
  --bg-dark: #0B0C10;
  --bg-card: #131620;
  --bg-card-hover: #1A1E2E;
  --bg-section: #0F1117;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A8C0;
  --text-muted: #5A6080;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(232,52,10,0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s ease;
  --shadow-red: 0 0 40px rgba(232,52,10,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
  filter: brightness(1.1);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232,52,10,0.08);
}

.btn--mirror {
  background: linear-gradient(135deg, #1a3a1a, #0d5c0d);
  color: #b8f0b8;
  border: 1px solid rgba(0,200,100,0.4);
  box-shadow: 0 4px 16px rgba(0,200,100,0.2);
}

.btn--mirror:hover {
  background: linear-gradient(135deg, #0d5c0d, #0a7a0a);
  border-color: #00C864;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,200,100,0.35);
}

.btn--mirror-header {
  padding: 8px 16px;
  font-size: 13px;
}

.btn--mirror-inline {
  margin-top: 16px;
  display: inline-block;
}

.btn--final-mirror {
  padding: 14px 28px;
  font-size: 16px;
}

.btn--hero {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 12px;
  box-shadow: 0 6px 30px var(--red-glow);
  animation: heroBtn 2s ease-in-out infinite;
}

.btn--hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(232,52,10,0.6);
  filter: brightness(1.1);
  animation: none;
}

.btn--large {
  padding: 14px 32px;
  font-size: 16px;
}

@keyframes heroBtn {
  0%, 100% { box-shadow: 0 6px 30px rgba(232,52,10,0.4); }
  50% { box-shadow: 0 6px 50px rgba(232,52,10,0.7); }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(11, 12, 16, 0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__icon {
  display: flex;
  align-items: center;
  filter: drop-shadow(0 0 8px var(--red-glow));
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__motor {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.logo__casino {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav__link {
  padding: 8px 14px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__link {
  padding: 12px 16px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  border-radius: 8px;
}

.mobile-nav__link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.mobile-nav__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.mobile-nav__actions .btn {
  flex: 1;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 68px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,52,10,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 50%, rgba(232,52,10,0.06) 0%, transparent 60%),
              linear-gradient(180deg, #0B0C10 0%, #0F1117 100%);
}

.hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__glow--left {
  top: 0;
  left: -150px;
  background: rgba(232,52,10,0.12);
}

.hero__glow--right {
  bottom: 0;
  right: -150px;
  background: rgba(255,107,43,0.08);
}

.hero__particles {
  position: absolute;
  inset: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 80px;
  flex: 1;
}

.hero--page .hero__inner {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero--page .hero__content {
  max-width: 640px;
  margin: 0 auto;
}

.hero--page .hero__cta {
  justify-content: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,52,10,0.15);
  border: 1px solid rgba(232,52,10,0.3);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Exo 2', sans-serif;
  margin-bottom: 20px;
  width: fit-content;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: clamp(38px, 5vw, 62px);
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__subtitle strong {
  color: var(--gold);
  font-weight: 700;
}

.hero__bonuses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.hero__bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  transition: all var(--transition);
}

.hero__bonus-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.hero__bonus-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.hero__bonus-value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--gold);
}

.hero__bonus-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__cta-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== HERO VISUAL ===== */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.hero__jackpot {
  background: linear-gradient(135deg, var(--bg-card), rgba(232,52,10,0.1));
  border: 1px solid rgba(232,52,10,0.3);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  text-align: center;
  width: 100%;
  box-shadow: var(--shadow-red);
}

.hero__jackpot-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero__jackpot-value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 36px;
  background: linear-gradient(135deg, var(--gold), #FFE066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__jackpot-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero__slots-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  cursor: pointer;
}

.slot-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232,52,10,0.2);
}

.slot-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Exo 2', sans-serif;
}

.slot-card__badge--new { background: #00C853; }
.slot-card__badge--top { background: var(--gold); color: #000; }

.slot-card__img {
  font-size: 32px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.slot-card__img img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

.slot-card__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.slot-card__rtp {
  font-size: 10px;
  color: var(--text-muted);
}

/* ===== SCROLL TICKER ===== */
.hero__scroll {
  position: relative;
  z-index: 1;
  background: rgba(232,52,10,0.08);
  border-top: 1px solid rgba(232,52,10,0.2);
  border-bottom: 1px solid rgba(232,52,10,0.2);
  overflow: hidden;
  padding: 12px 0;
}

.hero__scroll-inner {
  display: flex;
  gap: 48px;
  animation: ticker 20s linear infinite;
  width: max-content;
}

.hero__scroll-inner span {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 1px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ===== SEO BLOCKS ===== */
.seo-intro,
.seo-mirror {
  background: var(--bg-section);
}

.seo-block {
  max-width: 800px;
  margin: 0 auto;
}

.seo-block__title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.35;
}

.seo-block__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.seo-block__text:last-child {
  margin-bottom: 0;
}

.seo-block--compact .seo-block__text {
  margin-bottom: 0;
  font-size: 14px;
}

.seo-block--top {
  margin-top: 40px;
}

.seo-inline {
  max-width: 720px;
  margin: 20px auto 0;
  text-align: left;
}

.seo-inline p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Кнопки Регистрация / Вход — чуть заметнее */
.btn--register {
  padding: 10px 24px;
  font-size: 15px;
}

.btn--login:hover {
  color: var(--red);
  border-color: var(--red);
}

.btn--hero-register:focus-visible,
.btn--register:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ===== GAMES ===== */
.games {
  background: var(--bg-section);
}

.game-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.game-tab {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
}

.game-tab:hover,
.game-tab--active {
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-color: transparent;
  color: white;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.game-item {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
}

.game-item:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,52,10,0.2);
}

.game-item__img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: linear-gradient(180deg, rgba(232,52,10,0.08) 0%, transparent 100%);
  overflow: hidden;
}

.game-item__img img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.game-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,52,10,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.game-item:hover .game-item__overlay {
  opacity: 1;
}

.game-item__overlay span {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
}

.game-item__info {
  padding: 12px;
  border-top: 1px solid var(--border);
}

.game-item__name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
}

.game-item__provider {
  font-size: 11px;
  color: var(--text-muted);
}

.game-item__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Exo 2', sans-serif;
}

.game-item__badge--new { background: #00C853; }

.games__cta {
  text-align: center;
}

/* ===== LIVE ===== */
.live {
  background: var(--bg-dark);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.live-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.live-card--featured {
  border-color: rgba(232,52,10,0.4);
  background: linear-gradient(135deg, var(--bg-card), rgba(232,52,10,0.08));
}

.live-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,52,10,0.2);
}

.live-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,50,50,0.2);
  border: 1px solid rgba(255,50,50,0.4);
  color: #FF5050;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Exo 2', sans-serif;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #FF5050;
  border-radius: 50%;
  animation: blink 1s ease infinite;
}

.live-card__emoji {
  font-size: 48px;
}

.live-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  min-height: 120px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0,0,0,0.2);
}

.live-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-card__name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.live-card__players {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== BONUSES ===== */
.bonuses {
  background: var(--bg-section);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-card--welcome {
  border-color: rgba(232,52,10,0.3);
  background: linear-gradient(160deg, var(--bg-card), rgba(232,52,10,0.06));
  box-shadow: 0 0 40px rgba(232,52,10,0.1);
}

.bonus-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.bonus-card__tag {
  font-size: 11px;
  font-weight: 700;
  font-family: 'Exo 2', sans-serif;
  color: var(--red);
  background: rgba(232,52,10,0.12);
  border: 1px solid rgba(232,52,10,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-card__icon {
  font-size: 36px;
}

.bonus-card__title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.bonus-card__value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 32px;
  background: linear-gradient(135deg, var(--gold), #FFE066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-card__list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.bonus-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ===== PROMO ===== */
.promo {
  background: var(--bg-dark);
}

.promo__inner {
  background: linear-gradient(135deg, rgba(232,52,10,0.12), rgba(255,107,43,0.06));
  border: 1px solid rgba(232,52,10,0.25);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.promo__title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 12px;
}

.promo__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 500px;
}

.promo__input-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.promo__input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  transition: all var(--transition);
  outline: none;
}

.promo__input:focus {
  border-color: var(--red);
  background: rgba(232,52,10,0.06);
}

.promo__input::placeholder {
  color: var(--text-muted);
}

.promo__visual {
  font-size: 80px;
  flex-shrink: 0;
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(135deg, rgba(232,52,10,0.08), rgba(255,107,43,0.04));
  border-top: 1px solid rgba(232,52,10,0.15);
  border-bottom: 1px solid rgba(232,52,10,0.15);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 48px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== PAYMENTS ===== */
.payments {
  background: var(--bg-section);
}

.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  cursor: default;
}

.payment-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.payment-item__icon {
  font-size: 24px;
}

.payment-item__name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

/* ===== SPORT ===== */
.sport {
  background: var(--bg-dark);
}

.sport__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sport__tag {
  display: inline-flex;
  background: rgba(232,52,10,0.12);
  border: 1px solid rgba(232,52,10,0.25);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Exo 2', sans-serif;
  margin-bottom: 16px;
}

.sport__title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 16px;
}

.sport__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.sport__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.sport__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.sport__feature span {
  font-size: 20px;
}

.sport__visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sport__odds {
  display: flex;
  flex-direction: column;
}

.sport__match {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.sport__match:last-child {
  border-bottom: none;
}

.sport__match:hover {
  background: rgba(255,255,255,0.03);
}

.sport__teams {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.sport__coeffs {
  display: flex;
  gap: 8px;
}

.sport__coeff {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.sport__coeff:hover {
  background: rgba(232,52,10,0.15);
  border-color: var(--red);
  color: var(--text-primary);
}

.sport__coeff strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
  margin-top: 2px;
}

/* ===== TRUST ===== */
.trust {
  background: var(--bg-section);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.trust-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.trust-item__icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.trust-item__title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.trust-item__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(160deg, rgba(232,52,10,0.15) 0%, rgba(11,12,16,0.5) 50%, rgba(255,107,43,0.08) 100%),
              var(--bg-dark);
  border-top: 1px solid rgba(232,52,10,0.2);
}

.final-cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.final-cta__desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.final-cta__buttons .btn {
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 6px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 13px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.footer__link {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--red);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer__warning {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 32px var(--red-glow);
  transition: all var(--transition);
  animation: floatPulse 2s ease-in-out infinite;
}

.floating-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(232,52,10,0.6);
  animation: none;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(232,52,10,0.4); }
  50% { box-shadow: 0 8px 50px rgba(232,52,10,0.7); }
}

/* ===== PARTICLES ===== */
.particle {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0.4;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ===== PROVIDERS ===== */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.provider-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
  cursor: default;
}

.provider-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.provider-item__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.provider-item__logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.provider-item__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.provider-item__count {
  font-size: 0.78rem;
  color: var(--accent);
}

/* ===== HOW TO ===== */
.howto-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}

.howto-step {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.howto-step__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 8px;
}

.howto-step__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.howto-step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.howto-step__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.howto-step__arrow {
  font-size: 2rem;
  color: var(--accent);
  padding: 0 16px;
  margin-top: 80px;
  flex-shrink: 0;
}

.howto__cta {
  text-align: center;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.review-card__stars {
  color: #FFD700;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

.review-card__date {
  font-size: 0.78rem;
  color: var(--text-muted, #666);
}

/* ===== ABOUT ===== */
.about {
  background: var(--section-alt, rgba(255,255,255,0.02));
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.about__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about__subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 12px;
}

.about__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__mirror-block {
  background: rgba(232, 52, 10, 0.08);
  border: 1px solid rgba(232, 52, 10, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.about__text--mirror {
  margin-bottom: 0;
  color: var(--text-primary);
}

.about__mirror-block .btn--mirror-inline {
  margin-top: 16px;
}

.about__facts {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 90px;
}

.about__facts-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.about__fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.about__fact:last-child {
  border-bottom: none;
}

.about__fact-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.about__fact-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item__q {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(45deg);
}

.faq-item__a {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== SLOTS DETAIL ===== */
.slots-detail-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.slot-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.25s;
}

.slot-detail-card:hover {
  border-color: var(--accent);
}

.slot-detail-card__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.slot-detail-card__emoji {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
}

.slot-detail-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.slot-detail-card__provider {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slot-detail-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
  align-self: center;
}

.slot-tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.slot-tag--hot { background: rgba(232,52,10,0.15); color: #FF6B4A; border-color: rgba(232,52,10,0.3); }
.slot-tag--new { background: rgba(0,200,100,0.12); color: #00C864; border-color: rgba(0,200,100,0.3); }
.slot-tag--top { background: rgba(255,215,0,0.12); color: #FFD700; border-color: rgba(255,215,0,0.3); }

.slot-detail-card__text {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.slot-detail-card__stats {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.slot-detail-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.slot-detail-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.slot-detail-stat strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.slots-detail__cta {
  text-align: center;
}

/* ===== TIPS ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tip-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.tip-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.tip-card__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.tip-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.tip-card__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, transform 0.25s;
}

.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.blog-card__emoji {
  font-size: 2.2rem;
}

.blog-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.blog-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: auto;
}

.blog-card__link:hover {
  opacity: 0.75;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__bonuses {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__slots-preview {
    max-width: 400px;
  }

  .bonuses-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sport__inner {
    grid-template-columns: 1fr;
  }

  .providers-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__inner {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr;
  }
}

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

  .header__actions {
    display: none;
  }

  .burger {
    display: flex;
  }

  .section {
    padding: 56px 0;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .howto-steps {
    flex-direction: column;
    gap: 16px;
  }

  .howto-step__arrow {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__facts {
    position: static;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .slot-detail-card__head {
    flex-direction: column;
    gap: 12px;
  }

  .slot-detail-card__tags {
    margin-left: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo__inner {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }

  .promo__visual {
    display: none;
  }

  .promo__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .floating-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__bonuses {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__slots-preview {
    grid-template-columns: repeat(3, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__links {
    grid-template-columns: 1fr;
  }
}
