*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.4;
}

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

button {
  font: inherit;
}

:root {
  --container: 1200px;
  --pad: 20px;
  --yellow: #ffd400;
  --black: #111111;
  --muted: #6b6b6b;
  --radius: 12px;
  --radius-sm: 10px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--dark {
  background: var(--black);
  color: #fff;
}

.btn--dark:hover {
  box-shadow: var(--shadow);
}

.btn--accent {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
}

.btn--accent:hover {
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background: rgba(17, 17, 17, 0.06);
}

.btn--block {
  width: 100%;
}

.header {
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand_logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.22em;
  font-size: 14px;
}

.brand_partner {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

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

.nav_link {
  font-size: 14px;
  font-weight: 500;
  color: #2b2b2b;
  padding: 8px 2px;
  position: relative;
}

.nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0%;
  background: var(--black);
  transition: width 0.18s ease;
  opacity: 0.7;
}

.nav_link:hover::after {
  width: 100%;
}

.header_actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  background: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  place-items: center;
  cursor: pointer;
}

.burger_line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

.mobile-menu {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #969696;
  position: fixed;
  inset: 64px 0 0;
  padding: 16px;
  z-index: 9998;
}

.nav--mobile {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 10px var(--pad) 18px;
}

.nav--mobile .nav_link {
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.nav--mobile .nav_link::after {
  display: none;
}

.mobile-menu_actions {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.hero {
  background: var(--yellow);
  padding: 86px 0 92px;
}

.hero_inner {
  text-align: center;
  max-width: 920px;
}

.hero_title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--black);
}

.hero_subtitle {
  margin: 14px auto 0;
  max-width: 720px;
  font-size: clamp(14px, 1.25vw, 18px);
  color: #1c1c1c;
  font-weight: 500;
}

.hero_cta {
  margin-top: 28px;
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

body.menu-open {
  overflow: hidden;
}

.steps {
  background: #ffe88a;
  padding: 56px 0 64px;
}

.steps_title {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 800;
  color: var(--black);
}

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

.step-card {
  background: #2f2f2f;
  border-radius: 10px;
  padding: 26px 22px 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-card_icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.step-card_title {
  margin: 6px 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.step-card_text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 320px;
}

.step-card_btn {
  margin-top: auto;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-radius: 10px;
}

.benefits {
  background: #2f2f2f;
  padding: 62px 0 78px;
  position: relative;
}

.benefits_inner {
  text-align: center;
}

.benefits_title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  color: #fff;
}

.benefits_subtitle {
  margin: 12px auto 0;
  max-width: 720px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.benefits_grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.benefit-card {
  background: linear-gradient(180deg, #ffffff 0%, #eaeaea 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px 20px 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.benefit-card_icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
}

.benefit-card_title {
  margin: 6px 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
}

.benefit-card_text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.62);
  max-width: 320px;
}

.bonus {
  background: #ffe88a;
  padding: 48px 0 56px;
}

.bonus_box {
  background: var(--yellow);
  border-radius: 10px;
  padding: 34px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.bonus_title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  color: var(--black);
}

.bonus_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.bonus_item {
  position: relative;
  padding-left: 26px;
  font-size: 13px;
  color: #1b1b1b;
  font-weight: 500;
}

.bonus_item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--black);
  font-weight: 900;
}

.bonus_action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus_btn {
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
}

.why {
  background: #1f1f1f;
  padding: 62px 0 70px;
}

.why_title {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  color: #fff;
}

.why_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 44px;
}

.why-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 6px;
  align-content: start;
}

.why-item_icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 212, 0, 0.12);
  color: var(--yellow);
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
}

.why-item_title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.why-item_text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
}

.notice {
  background: #2f2f2f;
  padding: 22px 0;
}

.notice_inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.notice_badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
  flex: 0 0 auto;
  border: 2px solid rgba(17, 17, 17, 0.55);
}

.notice_text {
  display: grid;
  gap: 6px;
  padding-top: 2px;
}

.notice_lead {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.notice_small {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.footer {
  background: linear-gradient(180deg, #f3f3f3 0%, #d6d6d6 55%, #bfbfbf 100%);
  padding: 0;
  color: #1b1b1b;
  display: flow-root;
}

.footer_top {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer_title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  color: #111;
}

.footer_text {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.65);
}

.footer_text--small {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(17, 17, 17, 0.55);
}

.footer_link {
  display: block;
  padding: 6px 0;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.65);
}

.footer_link:hover {
  color: #111;
  text-decoration: underline;
}

.footer_social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: rgba(17, 17, 17, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.social:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  color: #111;
}

.footer_divider {
  height: 1px;
  background: rgba(17, 17, 17, 0.35);
  margin: 18px 0 16px;
}

.footer_bottom {
  text-align: center;
  padding-top: 6px;
}

.footer_logos {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(17, 17, 17, 0.12);
  font-weight: 800;
  font-size: 14px;
  color: #111;
  text-decoration: none;
}

.logo-pill--big {
  font-size: 34px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 14px;
  letter-spacing: -0.02em;
}

.logo-pill_accent {
  color: #ff6a00;
  margin-left: 2px;
}

.footer_copy {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.55);
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.18);
  z-index: 60;
  padding: 14px 0;
}

.cookie_inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.cookie_title {
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 4px;
}

.cookie_desc {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.62);
}

.cookie_link {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  color: #d08a00;
  text-decoration: underline;
}

.cookie_actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

.cookie_btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}

.cookie_close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
  color: rgba(17, 17, 17, 0.7);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.cookie_close:hover {
  color: #111;
}

.bets {
  background: #1f1f1f;
  padding: 34px 0 60px;
  color: #fff;
}

.bets_layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.bets-sidebar_title {
  margin: 6px 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.bets-sidebar_box {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.bets-sidebar_item {
  display: block;
  padding: 11px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bets-sidebar_item:last-child {
  border-bottom: 0;
}

.bets-sidebar_item.is-active {
  background: linear-gradient(180deg, #f2f2f2 0%, #d8d8d8 100%);
  color: #111;
  font-weight: 700;
}

.bets-content_head {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.bets-content_title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
}

.bets-tabs {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.bets-tabs_tab {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.bets-tabs_tab.is-active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.league-card {
  background: #2f2f2f;
  border-radius: 8px;
  padding: 16px 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.league-card_title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.match-row {
  padding: 12px 0 14px;
}

.match-row + .match-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.match-row_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.match-row_date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.match-row_more {
  border: 0;
  background: #fff;
  color: #111;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.odds {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.odd {
  border: 0;
  background: var(--yellow);
  color: #111;
  border-radius: 6px;
  padding: 10px 8px;
  cursor: pointer;
  display: grid;
  gap: 4px;
  place-items: center;
  font-weight: 800;
}

.odd_k {
  font-size: 12px;
  opacity: 0.9;
}

.odd_v {
  font-size: 12px;
}

.odd:hover {
  filter: brightness(0.98);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.match-row_more:hover {
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.leagues {
  display: grid;
  gap: 14px;
}

.league {
  background: #2f2f2f;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 14px 10px;
}

.league_title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.league_matches {
  display: grid;
  gap: 12px;
}

.match {
  padding-top: 6px;
}

.match + .match {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.match_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.match_date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.match_more {
  border: 0;
  background: #fff;
  color: #111;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.match_more:hover {
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.bonuses {
  background: #1f1f1f;
  color: #fff;
}

.bonuses-hero {
  padding: 54px 0 64px;
}

.bonuses-hero_head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.bonuses-hero_title {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 800;
}

.bonuses-hero_subtitle {
  margin: 12px auto 0;
  font-size: clamp(13px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  max-width: 720px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.promo-card {
  border: 1px solid rgba(255, 212, 0, 0.55);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 18px 16px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.promo-card_title {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 900;
  color: var(--yellow);
  text-align: center;
}

.promo-card_lead {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.promo-card_label {
  font-size: 12px;
  font-weight: 800;
  margin: 8px 0 8px;
  color: rgba(255, 255, 255, 0.82);
}

.promo-card_list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.55;
}

.promo-card_btn {
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.about {
  background: #1f1f1f;
  color: #fff;
  padding: 0 0 60px;
}

.about_section {
  padding: 46px 0 18px;
}

.about_inner {
  max-width: 860px;
}

.about-block {
  text-align: center;
  padding: 10px 0 26px;
}

.about-block + .about-block {
  margin-top: 10px;
}

.about-block_title {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
}

.about-block_text {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.75;
  font-weight: 500;
}

.about-block_text p {
  margin: 0 0 12px;
}

.about-block_text p:last-child {
  margin-bottom: 0;
}

.contact {
  background: #1f1f1f;
  color: #fff;
  padding: 0 0 70px;
}

.contact_section {
  padding: 54px 0 10px;
}

.contact_inner {
  max-width: 700px;
}

.contact_title {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  text-align: left;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field_label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.field_input {
  width: 100%;
  background: #fffbe8;
  border: 1px solid rgba(17, 17, 17, 0.25);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  outline: none;
  color: #111;
}

.field_input::placeholder {
  color: rgba(17, 17, 17, 0.45);
}

.field_input:focus {
  border-color: rgba(255, 212, 0, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.18);
}

.field_input--textarea {
  resize: vertical;
  min-height: 92px;
}

.contact-form_actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.contact-form_btn {
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.bonus-banner {
  margin-top: 34px;
  background: #ffe88a;
  padding: 26px 0;
}

.bonus-banner_box {
  background: var(--yellow);
  border-radius: 10px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.bonus-banner_box::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  border: 2px dashed rgba(17, 17, 17, 0.28);
  pointer-events: none;
}

.bonus-banner_content {
  position: relative;
  z-index: 1;
}

.bonus-banner_title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: var(--black);
}

.bonus-banner_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.bonus-banner_item {
  position: relative;
  padding-left: 22px;
  font-size: 12px;
  font-weight: 600;
  color: #1b1b1b;
}

.bonus-banner_item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--black);
}

.bonus-banner_action {
  position: relative;
  z-index: 1;
}

.bonus-banner_btn {
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
}

.legal {
  background: #1f1f1f;
  color: #fff;
  padding: 0 0 70px;
}

.legal_section {
  padding: 44px 0 10px;
}

.legal_inner {
  max-width: 900px;
}

.legal_title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.1;
}

.legal_content {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
}

.legal_content h2 {
  margin: 22px 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.legal_content p {
  margin: 0 0 12px;
}

.legal_content ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.legal_content li {
  margin: 0;
}

.legal_content ul {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.legal_content a,
.legal_link {
  color: var(--yellow);
  text-decoration: underline;
}

.legal-callout {
  margin: 16px 0;
  padding: 14px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-callout_title {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  font-size: 13px;
}

.legal-callout_text {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.6;
}

.legal-callout--warn {
  border-color: rgba(255, 212, 0, 0.35);
  background: rgba(255, 212, 0, 0.08);
}

.brand_logo-img {
  display: block;
  height: 40px;
  width: auto;
}

.logo-pill_img {
  display: block;
  height: 18px;
  width: auto;
  max-width: 100%;
}

.logo-pill--big .logo-pill_img {
  height: 22px;
}

.notice--footer {
  background: #121212;
  color: #fff;
  padding: 14px 0;
  margin: 0;
}

.notice--footer .notice_inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.notice--footer .notice_badge {
  background: #ffd400;
  color: #111;
  font-weight: 800;
  border-radius: 8px;
  padding: 4px 8px;
  line-height: 1;
  flex: 0 0 auto;
}

.notice--footer .notice_lead {
  margin: 0 0 6px;
  font-size: 12px;
  opacity: .95;
  margin-bottom: 6px;
}

.notice--footer .notice_small {
  margin: 0;
  font-size: 11px;
  opacity: .75;
}

.footer > .container {
  padding: 36px 0 26px;
}

.notice--footer p {
  margin: 0;
}

.agegate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.agegate.is-open {
  display: block;
}

.agegate_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}

.agegate_modal {
  position: relative;
  width: min(420px, calc(100% - 32px));
  margin: 8vh auto 0;
  background: #1b1b1b;
  color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  padding: 20px 18px 16px;
}

.agegate_close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
}

.agegate_close:hover {
  color: #fff;
}

.agegate_badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffd400;
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin: 2px auto 10px;
}

.agegate_title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}

.agegate_subtitle {
  margin: 6px 0 14px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.agegate_text {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

.agegate_link {
  color: #ffd400;
  text-decoration: none;
}

.agegate_link:hover {
  text-decoration: underline;
}

.agegate_actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 12px;
}

.agegate_btn {
  padding: 10px 10px;
  border-radius: 2px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  border: 2px solid transparent;
}

.agegate_btn--no {
  background: transparent;
  border-color: #ffd400;
  color: #ffd400;
}

.agegate_btn--no:hover {
  filter: brightness(1.05);
}

.agegate_btn--yes {
  background: #ffd400;
  color: #111;
}

.agegate_btn--yes:hover {
  filter: brightness(1.03);
}

.agegate_warning {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 11px;
  color: rgba(255,255,255,.78);
}

.agegate_warnicon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #ffd400;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000000;
  border: 0 !important;
  outline: 0;
  box-shadow: none;
  margin: 2px 0;
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu[hidden] {
  display: none;
}

.nav--desktop {
  display: flex;
  gap: 24px;
}

@media (max-width: 1024px) {
  :root {
    --container: 960px;
  }
  
  .nav--desktop {
    display: none;
  }
  
  .burger {
    display: inline-flex;
  }
  
  .header_actions .btn {
    display: none;
  }
  
  .hero {
    padding: 72px 0 78px;
  }
}

@media (max-width: 600px) {
  :root {
    --pad: 16px;
  }
  
  .header_inner {
    min-height: 64px;
  }
  
  .brand_partner {
    display: none;
  }
  
  .brand_logo {
    height: 34px;
    padding: 0 12px;
    letter-spacing: 0.18em;
  }
  
  .hero {
    padding: 56px 0 62px;
  }
  
  .hero_cta {
    width: 100%;
    display: grid;
    gap: 12px;
  }
  
  .hero_cta .btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .steps {
    padding: 44px 0 54px;
  }
  
  .steps_grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .step-card {
    text-align: left;
    align-items: flex-start;
  }
  
  .step-card_icon {
    margin-bottom: 12px;
  }
  
  .step-card_text {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .steps_title {
    margin-bottom: 20px;
  }
  
  .step-card {
    padding: 20px 16px 16px;
  }
  
  .step-card_btn {
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  .benefits {
    padding: 52px 0 64px;
  }
  
  .benefits_grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  
  .benefit-card {
    align-items: flex-start;
    text-align: left;
  }
  
  .benefit-card_icon {
    margin-bottom: 12px;
  }
  
  .benefit-card_text {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .benefits {
    padding: 44px 0 54px;
  }
  
  .benefit-card {
    padding: 20px 16px 18px;
  }
}

@media (max-width: 1024px) {
  .bonus_box {
    padding: 26px 24px;
  }
}

@media (max-width: 700px) {
  .bonus_box {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px;
  }
  
  .bonus_action {
    width: 100%;
  }
  
  .bonus_btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .why {
    padding: 52px 0 58px;
  }
  
  .why_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 28px;
  }
  
  .why-item_text {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .why_title {
    margin-bottom: 26px;
  }
  
  .why_grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .notice_inner {
    align-items: flex-start;
  }
  
  .notice_badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
}

@media (max-width: 1024px) {
  .footer_top {
    grid-template-columns: 1fr 1fr;
    gap: 22px 26px;
  }
  
  .logo-pill--big {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 28px 0 20px;
  }
  
  .footer_top {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .logo-pill--big {
    font-size: 24px;
  }
  
  .footer_divider {
    margin: 14px 0 14px;
  }
}

@media (max-width: 700px) {
  .cookie_inner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie_actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .cookie_btn {
    flex: 1 1 180px;
  }
}

@media (max-width: 1024px) {
  .bets_layout {
    grid-template-columns: 1fr;
  }
  
  .bets-content_head {
    justify-items: start;
  }
}

@media (max-width: 600px) {
  .bets {
    padding: 24px 0 44px;
  }
  
  .odds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .bets-tabs {
    width: 100%;
  }
  
  .bets-tabs_tab {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .odds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .bonuses-hero {
    padding: 44px 0 54px;
  }
  
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .promo-card {
    min-height: unset;
  }
}

@media (max-width: 600px) {
  .bonuses-hero_head {
    margin-bottom: 22px;
  }
  
  .promo-card {
    padding: 16px 14px 14px;
  }
  
  .promo-card_title {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .about_section {
    padding: 36px 0 10px;
  }
  
  .about-block {
    text-align: left;
  }
  
  .about-block_text {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .about {
    padding-bottom: 46px;
  }
  
  .about_section {
    padding-top: 28px;
  }
  
  .about-block_title {
    margin-bottom: 10px;
  }
  
  .about-block_text {
    font-size: 12px;
    line-height: 1.7;
  }
}

@media (max-width: 1024px) {
  .contact_section {
    padding: 44px 0 10px;
  }
}

@media (max-width: 600px) {
  .contact {
    padding-bottom: 54px;
  }
  
  .contact_section {
    padding-top: 28px;
  }
  
  .contact_title {
    margin-bottom: 18px;
  }
  
  .contact-form_actions {
    justify-content: stretch;
  }
  
  .contact-form_btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .bonus-banner_box {
    padding: 22px 22px;
  }
}

@media (max-width: 700px) {
  .bonus-banner_box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .bonus-banner_action {
    width: 100%;
  }
  
  .bonus-banner_btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .legal_section {
    padding-top: 36px;
  }
}

@media (max-width: 600px) {
  .legal {
    padding-bottom: 54px;
  }
  
  .legal_section {
    padding-top: 28px;
  }
  
  .legal_content {
    font-size: 12px;
    line-height: 1.75;
  }
  
  .legal_content h2 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .nav--desktop {
    display: none;
  }
  
  .burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .burger_line {
    width: 22px;
    height: 2px;
    background: #111;
    display: block;
  }
}
