/* === GLOBAL COLORS === */
:root {
  --color-bg: #072b68;
  --color-bg-deep: #06245a;
  --color-bg-header: #0a4da7;
  --color-bg-header-dark: #083d89;
  --color-surface: #0d3478;
  --color-surface-2: #11408e;
  --color-text: #ffffff;
  --color-text-soft: #d7efff;
  --color-text-muted: #9fd5ff;
  --color-border: #49c3ff;
  --color-border-soft: #2b8ee7;
  --color-glow: rgba(85, 215, 255, 0.45);
  --color-btn: #ff8e1f;
  --color-btn-2: #ffb326;
  --color-btn-dark: #db5e0b;
  --color-btn-text: #ffffff;
  --color-login-bg: #1d62b8;
  --color-login-bg-2: #0d4f9f;
  --color-pill: #1e69c8;
  --color-pill-2: #0f4ea2;
  --color-card-bg: #0a2d6d;
  --color-card-border: #27b9ff;
  --shadow-text: 0 2px 0 rgba(0, 24, 79, 0.9), 0 0 10px rgba(0, 0, 0, 0.25);
  --shadow-soft: 0 8px 22px rgba(0, 16, 60, 0.35);
  --radius-main: 16px;
  --radius-pill: 14px;
  --radius-btn: 22px;
}

/* === RESET === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(79, 194, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #0a3579 0%, #072b68 22%, #07265d 100%);
  color: var(--color-text);
  line-height: 1.6;
  letter-spacing: 0.2px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

section, header, footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 16px;
}
section { background: transparent; }

/* === HEADER === */
header {
  background: linear-gradient(180deg, #0d5dbc 0%, #0a4ea8 45%, #083f8e 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-radius: 0 0 14px 14px;
  border: 1px solid rgba(117, 214, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 2px 0 rgba(5, 34, 92, 0.9);
}
.header-left { flex-shrink: 0; }
.header-left img { width: 120px; height: auto; display: block; }
.nav-toggle { display: none; }

.header-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #ffffff;
  text-shadow: var(--shadow-text);
}
.header-nav a:hover { color: #d9f3ff; }

.header-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.header-right a {
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 18px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(181, 245, 255, 0.95);
  color: #ffffff;
  text-shadow: var(--shadow-text);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(24, 110, 188, 0.65);
}
.header-right .btn-login {
  background: linear-gradient(180deg, #5cd2ff 0%, #2d8ae0 18%, #1262bc 55%, #0b4f9f 100%);
}
.header-right .btn-register {
  background: linear-gradient(180deg, #79e1ff 0%, #39a8f1 20%, #1675e1 55%, #0b5ec1 100%);
}
.header-right a:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* === BURGER === */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.burger span {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle:checked + .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle:checked + .burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked + .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* === TYPOGRAPHY === */
section h2,
section h3,
.hero-text h1,
.hero-text h2,
.hero-text h3 {
  margin-bottom: 16px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: var(--shadow-text);
}
section p, section li { color: #dff4ff; }
section p { margin-bottom: 16px; }
section ul { margin-left: 18px; margin-bottom: 16px; }
section ul li { margin-bottom: 8px; }

.section-cta { text-align: center; margin-top: 8px; }
.section-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  background: linear-gradient(180deg, #67d7ff 0%, #2f99ef 18%, #166fe0 55%, #0c57ba 100%);
  color: var(--color-btn-text);
  padding: 12px 24px;
  border-radius: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid rgba(179, 241, 255, 0.95);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.32),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(27, 102, 188, 0.55);
  text-shadow: var(--shadow-text);
}
.section-cta .btn:hover { filter: brightness(1.05); }

/* === HERO GENERIC === */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-top: 24px;
  padding-bottom: 20px;
  background: linear-gradient(180deg, rgba(8, 44, 104, 0.25), rgba(5, 29, 77, 0.12));
  border-bottom: 3px solid rgba(78, 197, 255, 0.85);
}
.hero-text { width: 60%; }
.hero-image { width: 40%; }
.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 15, 58, 0.45);
}
.hero-text p {
  color: #f2f8ff;
  text-shadow: 0 2px 0 rgba(0, 35, 83, 0.85);
  margin-bottom: 16px;
}

/* === HERO MAIN === */
.hero-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 22px 30px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 36px;
  background:
    radial-gradient(circle at 20% 0%, rgba(83, 202, 255, 0.10), transparent 28%),
    linear-gradient(180deg, #1548a3 0%, #0d3b93 45%, #082f84 100%);
  border-bottom: 3px solid #2cbcff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 10px 25px rgba(0, 20, 70, 0.20);
}
.hero-main__content {
  width: 64%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-main__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 26px;
  padding: 5px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffe8a3;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.hero-main h1 {
  margin: 0 0 18px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 66px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -1.4px;
  text-transform: none;
  color: #ffffff;
  text-shadow:
    0 2px 0 rgba(0, 36, 105, 0.65),
    0 10px 18px rgba(0,0,0,0.15);
}
.hero-main h1 span { color: #ffd95d; }
.hero-main p {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(232, 243, 255, 0.86);
  font-size: 18px;
  line-height: 1.55;
}
.hero-main__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-main__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 28px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.hero-main__btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.hero-main__btn--primary {
  background: linear-gradient(180deg, #ffcb52 0%, #f4a62b 55%, #ea8b19 100%);
  color: #141414;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 6px 14px rgba(0,0,0,0.18);
}
.hero-main__btn--secondary {
  background: linear-gradient(180deg, #1f69d3 0%, #1658bb 100%);
  border: 1px solid rgba(86, 205, 255, 0.45);
  color: #dff7ff;
  font-size: 15px;
  text-transform: none;
  padding-left: 18px;
  padding-right: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 4px 12px rgba(0,0,0,0.15);
}
.hero-main .hero-image {
  width: 36%;
  flex: 0 0 36%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-main .hero-image a,
.hero-main .hero-image img {
  width: 100%;
}
.hero-main .hero-image img {
  border-radius: 22px;
  border: 2px solid rgba(105, 206, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 24px rgba(0, 20, 70, 0.24);
}
.hero-main__offer {
  width: 470px;
  flex: 0 0 470px;
  border-radius: 26px;
  padding: 30px 34px 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 196, 255, 0.20), transparent 38%),
    linear-gradient(180deg, rgba(23, 73, 166, 0.96) 0%, rgba(15, 53, 128, 0.98) 100%);
  border: 2px solid rgba(105, 206, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 10px 24px rgba(0, 20, 70, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.hero-main__offer-badge {
  display: inline-flex;
  align-self: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4d7cf8 0%, #55cfff 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-main__offer-title {
  margin-bottom: 12px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 44px;
  line-height: 1.02;
  font-weight: 900;
  color: #ffca47;
  text-shadow: 0 2px 0 rgba(118, 62, 0, 0.55);
}
.hero-main__offer-text {
  margin-bottom: 22px;
  color: rgba(232, 243, 255, 0.92);
  font-size: 18px;
  line-height: 1.45;
}
.hero-main__offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffcb52 0%, #f4a62b 55%, #ea8b19 100%);
  color: #151515;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 6px 14px rgba(0,0,0,0.18);
}
.hero-main__offer-note {
  margin-top: 14px;
  color: rgba(214, 231, 255, 0.58);
  font-size: 11px;
  line-height: 1.4;
}

/* === HERO BONUS PAGE === */
.hero-bonus-page {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 22px 30px;
  min-height: 430px;
  border-bottom: 3px solid #2cbcff;
  background: linear-gradient(180deg, #1548a3 0%, #0d3b93 45%, #082f84 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 25px rgba(0, 20, 70, 0.18);
}
.hero-bonus-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bonus-page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bonus-page__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 48, 125, 0.92) 0%, rgba(9, 48, 125, 0.84) 34%, rgba(9, 48, 125, 0.32) 62%, rgba(9, 48, 125, 0.18) 100%);
}
.hero-bonus-page__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
}
.hero-bonus-page__left {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bonus-page__right {
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-bonus-page__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffe8a3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.hero-bonus-page h1 {
  margin: 0 0 18px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -1.3px;
  text-transform: none;
  color: #ffffff;
  text-shadow:
    0 2px 0 rgba(0, 36, 105, 0.55),
    0 10px 18px rgba(0,0,0,0.12);
}
.hero-bonus-page h1 span { color: #ffd44d; }
.hero-bonus-page p {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(236, 244, 255, 0.92);
  font-size: 18px;
  line-height: 1.55;
  text-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.hero-bonus-page__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-bonus-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.hero-bonus-page__btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.hero-bonus-page__btn--primary {
  background: linear-gradient(180deg, #ffcb52 0%, #f4a62b 55%, #ea8b19 100%);
  color: #171717;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 6px 14px rgba(0,0,0,0.16);
}
.hero-bonus-page__btn--secondary {
  background: linear-gradient(180deg, rgba(46, 129, 238, 0.95) 0%, rgba(23, 91, 191, 0.98) 100%);
  color: #dff7ff;
  border: 1px solid rgba(103, 222, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 4px 10px rgba(0,0,0,0.12);
}
.hero-bonus-page__card {
  width: 420px;
  max-width: 100%;
  border-radius: 24px;
  padding: 26px 26px 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 196, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(23, 73, 166, 0.90) 0%, rgba(15, 53, 128, 0.96) 100%);
  border: 2px solid rgba(105, 206, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 10px 24px rgba(0, 20, 70, 0.22);
  text-align: center;
  backdrop-filter: blur(1px);
}
.hero-bonus-page__card-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 28px;
  padding: 6px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4d7cf8 0%, #55cfff 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-bonus-page__card-title {
  margin-bottom: 12px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 42px;
  line-height: 1.02;
  font-weight: 900;
  color: #ffca47;
  text-shadow: 0 2px 0 rgba(118, 62, 0, 0.45);
}
.hero-bonus-page__card-text {
  margin-bottom: 22px;
  color: rgba(236, 243, 255, 0.92);
  font-size: 17px;
  line-height: 1.45;
}
.hero-bonus-page__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffcb52 0%, #f4a62b 55%, #ea8b19 100%);
  color: #151515;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 6px 14px rgba(0,0,0,0.16);
}
.hero-bonus-page__card-note {
  margin-top: 14px;
  color: rgba(214, 231, 255, 0.62);
  font-size: 11px;
  line-height: 1.4;
}

/* === BONUS SLIDER === */
.bonus-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 16px 0 24px;
}
.bonus-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.bonus-slide {
  min-width: 100%;
  flex: 0 0 100%;
}
.bonus-slide img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(39, 185, 255, 0.8);
  box-shadow: 0 10px 22px rgba(0, 17, 58, 0.35);
}
.bonus-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.bonus-slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}
.bonus-slider-dots button.active {
  background: #ffd44d;
  box-shadow: 0 0 0 2px rgba(255, 212, 77, 0.2);
}

/* === CAROUSELS === */
.carousel {
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
}
.carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
}
.slots-carousel,
.sports-carousel {
  width: 100%;
  overflow: hidden;
  margin: 16px 0 24px;
}
.slots-carousel .carousel-track a {
  flex: 0 0 180px;
  width: 180px;
}
.slots-carousel .carousel-track img {
  width: 100%;
  aspect-ratio: 10 / 14;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(39, 185, 255, 0.95);
  box-shadow:
    0 0 0 2px rgba(5, 52, 125, 0.95),
    0 10px 22px rgba(0, 17, 58, 0.35);
}

.sports-carousel .carousel-track {
  gap: 14px;
}
.sport-card {
  flex: 0 0 165px;
  width: 165px;
  min-width: 165px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 10px 10px 12px;
  border-radius: 20px 20px 24px 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(120, 210, 255, 0.35), rgba(120, 210, 255, 0) 45%),
    linear-gradient(180deg, #2f8df0 0%, #1a63cb 35%, #114cae 70%, #0d469d 100%);
  border: 2px solid #57c7ff;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(35, 112, 214, 0.95),
    0 8px 18px rgba(0, 18, 62, 0.35);
  overflow: hidden;
}
.sport-card::before {
  content: "";
  position: absolute;
  inset: 4px 4px auto 4px;
  height: calc(100% - 14px);
  border-radius: 16px 16px 20px 20px;
  border: 1px solid rgba(160, 232, 255, 0.45);
  pointer-events: none;
}
.sport-card__image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 8px 6px 2px;
}
.sport-card__image img {
  max-width: 88px;
  max-height: 88px;
  width: auto;
  height: auto;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.18));
}
.sport-card__title {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 0 rgba(21, 64, 140, 0.95);
  padding: 6px 6px 0;
  min-height: 34px;
}
.sport-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* === FOOTER === */
footer {
  background: linear-gradient(180deg, #0a4da7 0%, #083c87 100%);
  margin-top: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
  font-size: 14px;
  border-radius: 18px 18px 0 0;
  border: 1px solid rgba(117, 214, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 -2px 0 rgba(5, 34, 92, 0.75);
  color: #dff3ff;
}
.footer-nav { margin-bottom: 12px; }
.footer-nav a {
  margin: 0 8px;
  opacity: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: var(--shadow-text);
}
.footer-nav a:hover { opacity: 1; color: #ffffff; }
.footer-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
}
.footer-payments img {
  height: 28px;
  width: auto;
  display: block;
}
.footer-copy {
  font-weight: 700;
  color: #dff3ff;
}

/* === FAQ === */
section[itemtype="https://schema.org/FAQPage"] {
  max-width: 1280px;
  margin: 46px auto 0;
  padding: 10px 16px 6px;
}
section[itemtype="https://schema.org/FAQPage"] > h2 {
  margin: 0 0 22px;
  text-align: center;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: var(--shadow-text);
}
section[itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"] {
  position: relative;
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #0d3478 0%, #082c68 100%);
  border: 2px solid rgba(39, 185, 255, 0.95);
  box-shadow:
    0 0 0 2px rgba(5, 52, 125, 0.95),
    0 10px 22px rgba(0, 17, 58, 0.35);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}
section[itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"]::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 15px;
  border: 1px solid rgba(160, 232, 255, 0.24);
  pointer-events: none;
}
section[itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 0 0 2px rgba(5, 52, 125, 0.98),
    0 14px 28px rgba(0, 17, 58, 0.42),
    0 0 18px rgba(85, 215, 255, 0.18);
}
section[itemtype="https://schema.org/FAQPage"] [itemprop="name"] {
  position: relative;
  margin: 0;
  padding: 22px 82px 22px 24px;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #ffffff;
  text-shadow: var(--shadow-text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(180deg, #1c66c9 0%, #114caa 45%, #0c3c89 100%);
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}
section[itemtype="https://schema.org/FAQPage"] [itemprop="name"]::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 0 rgba(119, 41, 0, 0.85);
  background: linear-gradient(180deg, #ffd95f 0%, #ffb628 18%, #ff9020 50%, #ea6f10 100%);
  border: 2px solid #ffe7a8;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.35),
    inset 0 -2px 0 rgba(124, 48, 0, 0.28),
    0 0 0 2px rgba(24, 110, 188, 0.5);
}
section[itemtype="https://schema.org/FAQPage"] [itemprop="acceptedAnswer"] {
  display: none;
  position: relative;
  background: linear-gradient(180deg, #0d3478 0%, #082c68 100%);
  border-top: 1px solid rgba(91, 197, 255, 0.32);
}
section[itemtype="https://schema.org/FAQPage"] [itemprop="acceptedAnswer"]::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(117, 214, 255, 0.65) 50%,
    transparent 100%
  );
}
section[itemtype="https://schema.org/FAQPage"] [itemprop="text"] {
  padding: 20px 24px 24px;
}
section[itemtype="https://schema.org/FAQPage"] [itemprop="text"] p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #dff4ff;
  text-shadow: 0 1px 0 rgba(0, 35, 83, 0.55);
}
section[itemtype="https://schema.org/FAQPage"] .faq-open [itemprop="name"] {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)),
    linear-gradient(180deg, #2674d9 0%, #1457b5 45%, #0d438f 100%);
}
section[itemtype="https://schema.org/FAQPage"] .faq-open [itemprop="name"]::after {
  content: "−";
}
section[itemtype="https://schema.org/FAQPage"] .faq-open [itemprop="acceptedAnswer"] {
  display: block;
}
section[itemtype="https://schema.org/FAQPage"] [itemprop="name"]:focus-visible {
  outline: 2px solid #7de1ff;
  outline-offset: -2px;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero-bonus-page {
    min-height: 390px;
    padding: 28px 18px 24px;
  }
  .hero-bonus-page h1 { font-size: 52px; }
  .hero-bonus-page__left { width: 56%; }
  .hero-bonus-page__right { width: 44%; }
  .hero-bonus-page__card { width: 360px; padding: 22px 20px 18px; }
  .hero-bonus-page__card-title { font-size: 34px; }

  .hero-main {
    gap: 24px;
    padding: 28px 18px 24px;
  }
  .hero-main__content { width: 58%; }
  .hero-main h1 { font-size: 52px; }
  .hero-main p { font-size: 17px; }
  .hero-main__offer {
    width: 290px;
    flex-basis: 290px;
    padding: 22px 18px 18px;
  }
  .hero-main__offer-title { font-size: 28px; }

  .bonus-zigzag__item { gap: 22px; }
  .bonus-zigzag__media { width: 40%; flex-basis: 40%; }
  .bonus-zigzag__text h3 { font-size: 24px; }
}

@media (max-width: 768px) {
  header {
    flex-wrap: nowrap;
    gap: 8px;
    border-radius: 0;
  }
  .burger { display: flex; }
  .header-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: linear-gradient(180deg, #0a4ea8 0%, #083f8e 100%);
    flex-direction: column;
    padding: 12px 16px 16px;
    display: none;
    border-top: 1px solid rgba(117, 214, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 18, 57, 0.35);
    gap: 0;
  }
  .header-nav a { padding: 8px 0; }
  .nav-toggle:checked ~ .header-nav { display: flex; }
  .header-right { display: none; }

  .hero,
  .hero-main,
  .hero-bonus-page__content,
  .bonus-zigzag__item,
  .bonus-zigzag__item--reverse {
    flex-direction: column;
  }
  .hero,
  .hero-main {
    text-align: center;
  }
  .hero-image,
  .hero-main .hero-image,
  .hero-main__content,
  .hero-main__offer,
  .hero-bonus-page__left,
  .hero-bonus-page__right,
  .bonus-zigzag__media,
  .bonus-zigzag__text {
    width: 100%;
    flex: none;
  }
  .hero-image img,
  .hero-main .hero-image img {
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-main {
    gap: 22px;
    padding: 22px 16px 20px;
  }
  .hero-main__badge,
  .hero-bonus-page__badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-main h1 { font-size: 42px; line-height: 1.02; margin-bottom: 16px; }
  .hero-bonus-page {
    min-height: auto;
    padding: 22px 16px 20px;
  }
  .hero-bonus-page__overlay {
    background:
      linear-gradient(180deg, rgba(9, 48, 125, 0.86) 0%, rgba(9, 48, 125, 0.80) 44%, rgba(9, 48, 125, 0.78) 100%);
  }
  .hero-bonus-page h1 {
    font-size: 40px;
    line-height: 1.02;
    text-align: center;
  }
  .hero-bonus-page p,
  .hero-main p {
    max-width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 22px;
  }
  .hero-main__actions,
  .hero-bonus-page__actions {
    justify-content: center;
  }
  .hero-main__btn,
  .hero-bonus-page__btn {
    width: 100%;
  }
  .hero-main__offer {
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-bonus-page__card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
  .hero-main__offer-title,
  .hero-bonus-page__card-title {
    font-size: 30px;
  }
  .hero-bonus-page__card-text,
  .hero-main__offer-text {
    font-size: 15px;
  }

  section,
  header,
  footer {
    padding-left: 14px;
    padding-right: 14px;
  }
  body,
  section,
  .footer-nav {
    text-align: center;
  }
  section ul {
    margin-left: 0;
    padding-left: 0;
    list-style-position: inside;
  }

  .slots-carousel .carousel-track a { flex: 0 0 150px; width: 150px; }
  .sports-carousel .carousel-track { gap: 10px; }
  .sport-card {
    flex: 0 0 150px;
    width: 150px;
    min-width: 150px;
    padding: 8px 8px 12px;
  }
  .sport-card__image { min-height: 112px; }
  .sport-card__image img { max-width: 78px; max-height: 78px; }
  .sport-card__title { font-size: 11px; min-height: 30px; }

  section[itemtype="https://schema.org/FAQPage"] {
    margin: 34px auto 0;
    padding: 8px 14px 4px;
  }
  section[itemtype="https://schema.org/FAQPage"] > h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }
  section[itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"] {
    margin-bottom: 12px;
    border-radius: 16px;
  }
  section[itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"]::before {
    inset: 3px;
    border-radius: 12px;
  }
  section[itemtype="https://schema.org/FAQPage"] [itemprop="name"] {
    padding: 18px 64px 18px 18px;
    font-size: 17px;
    line-height: 1.22;
  }
  section[itemtype="https://schema.org/FAQPage"] [itemprop="name"]::after {
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
  section[itemtype="https://schema.org/FAQPage"] [itemprop="text"] {
    padding: 16px 18px 18px;
  }
  section[itemtype="https://schema.org/FAQPage"] [itemprop="text"] p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* === BONUS ZIGZAG CLEAN FINAL === */
.bonus-zigzag {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 24px auto 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
  text-align: left !important;
}

.bonus-zigzag__item,
.bonus-zigzag__item--reverse {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(320px, 38%) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 34px !important;
  padding: 24px !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(92, 211, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(21, 78, 170, 0.88) 0%, rgba(8, 45, 112, 0.94) 100%) !important;
  border: 2px solid rgba(73, 195, 255, 0.58) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 14px 30px rgba(0, 17, 58, 0.28) !important;
}

.bonus-zigzag__item > [itemprop="item"] {
  display: contents !important;
}

.bonus-zigzag__item--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 38%) !important;
}

.bonus-zigzag__media {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  align-self: stretch !important;
}

.bonus-zigzag__text {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  align-self: center !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: left !important;
}

.bonus-zigzag__item--reverse .bonus-zigzag__media {
  grid-column: 2 !important;
}

.bonus-zigzag__item--reverse .bonus-zigzag__text {
  grid-column: 1 !important;
}

.bonus-zigzag__media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 430px !important;
  max-height: 560px !important;
  aspect-ratio: 2 / 3 !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  border-radius: 20px !important;
  border: 2px solid rgba(104, 219, 255, 0.95) !important;
  box-shadow:
    0 0 0 2px rgba(7, 61, 140, 0.92),
    0 14px 26px rgba(0, 18, 62, 0.34) !important;
}

.bonus-zigzag__text h3 {
  margin: 0 0 16px !important;
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif !important;
  font-size: clamp(26px, 2.8vw, 38px) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  text-transform: none !important;
  color: #ffffff !important;
  text-align: left !important;
  text-shadow: var(--shadow-text) !important;
}

.bonus-zigzag__text p {
  max-width: 720px !important;
  margin: 0 0 13px !important;
  color: #e7f6ff !important;
  font-size: 17px !important;
  line-height: 1.62 !important;
  text-align: left !important;
}

.bonus-zigzag__text .section-cta {
  margin-top: 10px !important;
  text-align: left !important;
}

.bonus-zigzag__text .section-cta .btn {
  min-height: 50px !important;
  padding: 12px 22px !important;
}

@media (max-width: 980px) {
  .bonus-zigzag__item,
  .bonus-zigzag__item--reverse {
    grid-template-columns: minmax(250px, 40%) minmax(0, 1fr) !important;
    gap: 24px !important;
    padding: 20px !important;
  }

  .bonus-zigzag__item--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 40%) !important;
  }

  .bonus-zigzag__media img {
    min-height: 360px !important;
    max-height: 500px !important;
  }

  .bonus-zigzag__text h3 {
    font-size: clamp(22px, 3vw, 30px) !important;
  }

  .bonus-zigzag__text p {
    font-size: 16px !important;
    line-height: 1.58 !important;
  }
}

@media (max-width: 700px) {
  .bonus-zigzag {
    gap: 22px !important;
  }

  .bonus-zigzag__item,
  .bonus-zigzag__item--reverse {
    grid-template-columns: minmax(170px, 44%) minmax(0, 1fr) !important;
    gap: 16px !important;
    padding: 16px !important;
  }

  .bonus-zigzag__item--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 44%) !important;
  }

  .bonus-zigzag__media img {
    min-height: 270px !important;
    max-height: 390px !important;
    border-radius: 16px !important;
  }

  .bonus-zigzag__text h3 {
    font-size: 20px !important;
    line-height: 1.16 !important;
    margin-bottom: 10px !important;
  }

  .bonus-zigzag__text p {
    font-size: 14px !important;
    line-height: 1.48 !important;
    margin-bottom: 9px !important;
  }

  .bonus-zigzag__text .section-cta .btn {
    width: 100% !important;
    min-height: 44px !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 520px) {
  .bonus-zigzag__item,
  .bonus-zigzag__item--reverse {
    display: block !important;
    padding: 14px !important;
  }

  .bonus-zigzag__media,
  .bonus-zigzag__text,
  .bonus-zigzag__item--reverse .bonus-zigzag__media,
  .bonus-zigzag__item--reverse .bonus-zigzag__text {
    display: block !important;
    width: 100% !important;
  }

  .bonus-zigzag__media {
    margin-bottom: 16px !important;
  }

  .bonus-zigzag__media img {
    width: 100% !important;
    max-width: 390px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 auto !important;
  }

  .bonus-zigzag__text h3,
  .bonus-zigzag__text p,
  .bonus-zigzag__text .section-cta {
    text-align: left !important;
  }
}



/* === HERO IMAGE VISIBILITY FINAL FIX === */
.hero-bonus-page {
  min-height: 520px !important;
  padding: 48px 28px 42px !important;
  isolation: isolate !important;
  background: #083f8e !important;
}

.hero-bonus-page__bg,
.hero-bonus-page__bg a {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
}

.hero-bonus-page__bg img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: saturate(1.05) contrast(1.02) !important;
}

.hero-bonus-page__overlay {
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg,
      rgba(5, 31, 86, 0.93) 0%,
      rgba(7, 48, 130, 0.82) 34%,
      rgba(7, 48, 130, 0.34) 60%,
      rgba(7, 48, 130, 0.08) 100%),
    linear-gradient(180deg,
      rgba(2, 17, 52, 0.20) 0%,
      rgba(2, 17, 52, 0.08) 48%,
      rgba(2, 17, 52, 0.28) 100%) !important;
}

.hero-bonus-page__content {
  position: relative !important;
  z-index: 2 !important;
  align-items: center !important;
}

.hero-bonus-page__left {
  width: 50% !important;
  max-width: 650px !important;
}

.hero-bonus-page__right {
  width: 34% !important;
  justify-content: flex-end !important;
}

.hero-bonus-page__card {
  width: 360px !important;
  padding: 24px 24px 22px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 196, 255, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(12, 52, 132, 0.78) 0%, rgba(7, 36, 100, 0.86) 100%) !important;
  backdrop-filter: blur(2px) !important;
}

@media (max-width: 900px) {
  .hero-bonus-page {
    min-height: 600px !important;
    padding: 34px 16px 28px !important;
  }

  .hero-bonus-page__bg img {
    object-position: center center !important;
  }

  .hero-bonus-page__overlay {
    background:
      linear-gradient(180deg,
        rgba(5, 31, 86, 0.86) 0%,
        rgba(7, 48, 130, 0.68) 46%,
        rgba(7, 48, 130, 0.82) 100%) !important;
  }

  .hero-bonus-page__content {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .hero-bonus-page__left,
  .hero-bonus-page__right {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-bonus-page__card {
    width: 100% !important;
    max-width: 420px !important;
  }
}

/* === PAGESPEED / CLS FIXES === */
html { text-size-adjust: 100%; }
img[width][height] { height: auto; }
header { min-height: 66px; }
.header-left img { width: 120px; height: 33px; aspect-ratio: 900 / 245; object-fit: contain; }
.burger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.header-nav a,
.footer-nav a,
.header-right a,
.section-cta .btn,
.hero-main__btn,
.hero-bonus-page__btn,
.hero-bonus-page__card-btn,
.hero-main__offer-btn { min-height: 44px; }
.header-nav a { display: inline-flex; align-items: center; }
.footer-nav a { display: inline-flex; align-items: center; justify-content: center; padding: 10px 8px; }

.hero-bonus-page__bg img { aspect-ratio: 1185 / 273; }
.hero-image a,
.hero-main .hero-image a { display: block; width: 100%; }
.hero-image img,
.hero-main .hero-image img { object-fit: cover; }

.bonus-slider { contain: layout paint; }
.bonus-slider-track { will-change: auto; transform: translate3d(0,0,0); }
.bonus-slide,
.bonus-slide img { aspect-ratio: 1279 / 720; }
.bonus-slide img { height: auto; object-fit: cover; }
.bonus-slider-dots { gap: 4px; }
.bonus-slider-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}
.bonus-slider-dots button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.35);
}
.bonus-slider-dots button.active::before {
  background: #ffd44d;
  box-shadow: 0 0 0 2px rgba(255, 212, 77, 0.2);
}

.carousel,
.slots-carousel,
.sports-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.carousel-track {
  transform: none !important;
  will-change: auto !important;
}
.slots-carousel .carousel-track a {
  display: block;
  flex: 0 0 180px;
  width: 180px;
  height: 252px;
}
.slots-carousel .carousel-track img {
  width: 180px;
  height: 252px;
  max-width: none;
  object-fit: cover;
}
.sport-card { min-height: 210px; }
.sport-card__image img { width: 88px; height: 88px; object-fit: contain; }
.footer-payments img { width: 90px; height: 28px; object-fit: contain; }

section[itemtype="https://schema.org/FAQPage"] [itemprop="acceptedAnswer"][hidden] { display: none !important; }
section[itemtype="https://schema.org/FAQPage"] .faq-open [itemprop="acceptedAnswer"] { display: block; }

@media (max-width: 768px) {
  header { min-height: 64px; }
  .header-nav { top: 64px; }
  .header-nav a { min-height: 44px; padding: 10px 0; }
  .slots-carousel .carousel-track a { flex-basis: 150px; width: 150px; height: 210px; }
  .slots-carousel .carousel-track img { width: 150px; height: 210px; }
  .sport-card { min-height: 194px; }
  .sport-card__image img { width: 78px; height: 78px; }
}
.bonus-slider-dots button.active { background: transparent; box-shadow: none; }
