:root {
  --bg-dark: #030507;
  --bg-dark-soft: #0a0f13;
  --dark_gray: #2f3b43;
  --main_black: #0b1115;
  --page-bg: #e8e8e8;
  --panel-bg: #f1f1f1;
  --panel-card: #fafafa;
  --text-main: #101010;
  --text-soft: #909090;
  --text-muted: #b3b3b3;
  --accent: #4f8ff0;
  --accent-strong: #3c79db;
  --hover_color: #478beb;
  --accent-soft: #dbe7ff;
  --match-bg: #f4f1bf;
  --match-outline: #cfd6db;
  --menu-panel: #060b0f;
  --menu-line: #18242f;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --span-red: #E62660;
  --shadow-soft: 0 14px 38px rgba(7, 11, 18, 0.08);
}

.reviews-shell__heading > h1 {
  margin: 0;
  color: #efad00;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.reviews-shell--listing .reviews-track,
.reviews-shell--listing .reviews-shell__footer {
  position: relative;
  z-index: 1;
}

.reviews-shell--listing .reviews-track {
  margin-top: 44px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-columns: auto;
  gap: 18px;
  overflow: visible;
}

.reviews-shell--listing .review-card {
  min-height: 100%;
  height: 100%;
}

.reviews-shell--listing .reviews-controls {
  display: none;
}

.reviews-shell--listing .reviews-shell__footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.reviews-shell--listing .reviews-shell__more {
  min-width: 250px;
  justify-content: center;
}

.reviews-shell--listing .content-listing-shell__empty {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 1280px) {
  .reviews-shell__heading > h1 {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
  .reviews-shell__heading > h1 {
    font-size: 28px;
  }

  .reviews-shell--listing .reviews-track {
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .reviews-shell__heading > h1 {
    font-size: 24px;
  }

  .reviews-shell--listing .reviews-track {
    margin-top: 18px;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .reviews-shell--listing .reviews-shell__footer {
    margin-top: 20px;
  }

  .reviews-shell--listing .reviews-shell__more {
    width: 100%;
    min-width: 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: "Roboto", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

body.image-lightbox-open {
  overflow: hidden;
}

.custom-container {
  width: min(1400px, calc(100vw - 32px));
  margin: 0 auto;
}

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

button {
  font: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
}

.site-main {
  background: var(--page-bg);
}

.site-main--not-found {
background: var(--page-bg) url(../images/bg_404.png);
    background-position: center;
    background-size: cover;
}

.breadcrumbs-section {
  padding: 16px 0 0;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs-list__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}

.breadcrumbs-list__link,
.breadcrumbs-list__current {
  font-size: 14px;
  line-height: 1.2;
}

.breadcrumbs-list__link {
  color: #8f949b;
  transition: color 180ms ease;
}

.breadcrumbs-list__link:hover {
  color: #4f8ff0;
}

.breadcrumbs-list__current {
  color: #1d2126;
  font-weight: 500;
}

.breadcrumbs-list__separator {
  color: #b1b5bb;
  font-size: 13px;
  line-height: 1;
}

.home-page {
  padding: 16px 0 40px;
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--bg-dark);
}

.header-shell {
  padding: 14px 0 0 0;
  background: #040506;
}

.header-bar {
  display: flex;
  align-items: center;
}

.header-bar--wide {
  position: relative;
  justify-content: center;
  min-height: 54px;
}

.header-bar--wide .tg-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header-bar--compact {
  display: none;
  justify-content: space-between;
  min-height: 40px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 208px;
  border-radius: 2px;
  flex-shrink: 0;
}

.site-logo__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-logo--compact {
  width: 168px;
  height: 29px;
}

.site-logo--menu {
  width: 168px;
  height: 29px;
}

.tg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
    gap: 12px;
    padding: 11px 19px;
  border-radius: 9px;
  border: 0;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(60, 121, 219, 0.18);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tg-button--desktop {
  min-width: 128px;
}

.tg-button--compact {
  min-width: 74px;
  padding: 8px 14px;
}

.icon {
display: inline-block;
    width: 25px;
    height: 25px;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    flex-shrink: 0;
}

.icon--telegram {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M21.944 4.667a1.5 1.5 0 00-1.64-.244L3.57 11.532a1.5 1.5 0 00.137 2.807l4.635 1.61 1.61 4.636a1.5 1.5 0 002.808.136l7.11-16.734a1.5 1.5 0 00-.926-1.32zm-10.703 10.33l-.925 3.158-.862-2.48 7.868-7.868-6.081 7.19z'/%3E%3C/svg%3E");
}

.icon--arrow {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13.172 5l1.414 1.414L10.999 10H20v2h-9.001l3.587 3.586L13.172 17 7.172 11z' transform='matrix(-1 0 0 1 27.172 0)'/%3E%3C/svg%3E");
}

.icon--arrow-left {
  transform: rotate(180deg);
}

.desktop-nav {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--main_black);
  padding: 10px 20px;
  position: relative;
  z-index: 10;
}

.desktop-nav::-webkit-scrollbar {
  display: none;
}

.nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 5px 42px;
  border-radius: 30px;
  background: #0f171d;
  color: #b7c2cb;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.desktop-nav .nav-chip {
  --desktop-nav-icon-color: var(--dark_gray);
  color: #ffffff;
}

.nav-chip.is-active {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
}

.nav-chip__icon {
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  flex-shrink: 0;
  transition: background-color 180ms ease;
}

.desktop-nav__icon {
  background-color: var(--desktop-nav-icon-color);
}

.nav-chip__icon--home {
  mask-image: url("../images/capa_1.svg");
}

.nav-chip__icon--gift {
  mask-image: url("../images/capa_2.svg");
}

.nav-chip__icon--play {
  mask-image: url("../images/capa_3.svg");
}

.nav-chip__icon--blog {
  mask-image: url("../images/capa_4.svg");
}

.nav-chip__icon--reviews {
  mask-image: url("../images/capa_5.svg");
}

.nav-chip__icon--trophy {
  mask-image: url("../images/capa_6.svg");
}

.nav-chip__icon--news {
  mask-image: url("../images/capa_7.svg");
}

.nav-chip__icon--table {
  mask-image: url("../images/capa_8.svg");
}

.desktop-nav .nav-chip.is-active,
.desktop-nav .nav-chip:hover {
  --desktop-nav-icon-color: #ffffff;
}

.desktop-nav__dropdown {
  position: relative;
  display: inline-flex;
}

.desktop-nav__dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.desktop-nav__dropdown:hover > .nav-chip,
.desktop-nav__dropdown:focus-within > .nav-chip {
  --desktop-nav-icon-color: #ffffff;
  background: #21292e;
  color: #ffffff;
}

.desktop-nav__dropdown-menu {
  --desktop-dropdown-width: 252px;
  position: fixed;
  top: var(--desktop-dropdown-top, 0px);
  left: var(--desktop-dropdown-left, 0px);
  z-index: 80;
  width: min(var(--desktop-dropdown-width), calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  padding: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(7, 11, 18, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.desktop-nav__dropdown:hover .desktop-nav__dropdown-menu,
.desktop-nav__dropdown:focus-within .desktop-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-nav__dropdown-item {
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #060b0f;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  transition: background-color 0.2s ease;
}

.desktop-nav__dropdown-item + .desktop-nav__dropdown-item {
  border-top: 1px solid #e6e6e6;
}

.desktop-nav__dropdown-item:first-child {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.desktop-nav__dropdown-item:last-child {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.desktop-nav__dropdown-item:hover {
  background: #f8f8f8;
}

.desktop-nav__dropdown-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}

.menu-toggle,
.menu-close {
  position: relative;
  width: 28px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.menu-toggle span,
.menu-close span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 8px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

.menu-close span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.menu-close span:nth-child(2) {
  top: 8px;
  transform: rotate(-45deg);
}

.hero-section {
  padding-top: 50px;
}

.matches-section,
.bonuses-section {
  padding-top: 16px;
}

.hero-banner,
.hero-news,
.section-card,
.bonus-shell {
  border-radius: var(--radius-xl);
}

.hero-row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 16px;
}

.hero-main-col {
  min-width: 0;
}

.hero-banner {
  position: relative;
  min-height: 395px;
  overflow: visible;
  isolation: isolate;
}

.hero-banner__surface {
  position: absolute;
  inset: 0;
  border-radius: 31px;
  overflow: hidden;
  background-image: var(--hero-banner-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-banner__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgb(241 225 225 / 0%) 0%, rgb(255 255 255 / 0%) 32%, rgba(3, 7, 11, 0.28) 58%, rgba(3, 7, 11, 0.08) 100%), radial-gradient(circle at 12% 92%, rgba(71, 124, 218, 0.42) 0%, rgba(71, 124, 218, 0.22) 24%, rgba(71, 124, 218, 0) 54%);
  pointer-events: none;
}

.hero-banner__content {
    position: relative;
    z-index: 3;
    max-width: 630px;
    padding: 118px 0 0px 50px;
    color: #fff;
}

.hero-banner--matches .hero-banner__content {
  display: flex;
  flex-direction: column;
  min-height: 355px;
  box-sizing: border-box;
}

.hero-banner__content h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
}

.hero-banner__text {
  margin-top: 16px;
  max-width: 358px;
  font-size: 12px;
  line-height: 1.45;
  color: gray;
}

.hero-banner__text--matches {
    margin-top: 50px;
    padding-bottom: 20px;
}


.hero-banner__text > :last-child {
  margin-bottom: 0;
}

.hero-banner__text p {
  margin: 0 0 10px;
}

.hero-banner__text .richtext-heading {
  margin: 0 0 10px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}

.hero-banner__button {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 60px;
  padding: 0 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: none;
}

.hero-banner--matches .hero-banner__button {
  align-self: flex-start;
}

.hero-banner__button .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero-banner__players {
    position: absolute;
    bottom: 0;
    right: -44px;
    z-index: 2;
    width: min(49vw, 475px);
    pointer-events: none;
}

.hero-banner__players-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-news {
    padding: 16px 21px 13px;
  background: #f7f7f7;
  width: 100%;
}

.hero-news-col {
  width: 100%;
}

.hero-news__item + .hero-news__item {
  border-top: 1px solid #ececec;
}

.hero-news__item {
  display: block;
  padding: 15px 0 15px;
  color: inherit;
  text-decoration: none;
}

.hero-news__item p {
  margin: 0 0 15px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #252525;
}

.hero-news__item span {
  font-size: 15px;
  line-height: 1;
  color: #b2b2b2;
}

.hero-news__item--empty p {
  margin-bottom: 0;
  color: #68727c;
}

.section-card {
  padding: 25px;
  background: #f3f3f3;
  box-shadow: var(--shadow-soft);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}

.section-head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #111;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  border: none;
}

.section-cta__label {
  padding: 0 14px;
}

.section-cta__arrow {
  width: 34px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.section-cta__icon {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.section-cta-mobile-wrap,
.section-cta--mobile {
  display: none;
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.match-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 15px;
  border-radius: 16px;
  background: var(--match-bg) url("../images/bg_top_matches.png") center/cover no-repeat;
  cursor: pointer;
}

.match-card__meta,
.match-card__footer {
  position: relative;
  z-index: 1;
}

.match-card__actions {
  position: relative;
  z-index: 3;
}

.match-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.match-card__overlay-link:focus-visible {
  outline: 2px solid #4d8cf0;
  outline-offset: -2px;
}

.match-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8e8e8e;
  font-size: 15px;
  line-height: 1;
}

.match-card__main {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.match-card__teams {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.match-card__teams strong {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
}

.match-card__logos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.club-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.club-logo__image {
  display: block;
  width: 65%;
  height: 65%;
  object-fit: contain;
}

.match-card__actions {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  justify-content: center;
}

.match-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 38px;
    border-radius: 25px;
    font-size: 17px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.match-card__button--filled {
  padding: 0 10px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
}

.match-card__button--filled .icon {
  width: 17px;
  height: 17px;
}

.match-card__button--ghost {
  padding: 0 13px;
  border: 1px solid #b9c4cb;
  color: #525252;
  background: rgba(255, 255, 255, 0.16);
}

.match-card__button-text--short {
  display: none;
}

.match-card__footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.match-card__footer .sm-overview-card__value-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  max-width: 100%;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #71a7ff 0%, #4d8cf0 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-card__market {
  height: 22px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1;
  color: #3a3a3a;
}

.match-card__odd {
  min-width: 49px;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #71a7ff 0%, #4d8cf0 100%);
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.bonus-shell {
  position: relative;
  overflow: hidden;
  padding: 20px 0 24px;
  background: #ffffff url(../images/bg_bonuses.png);
  background-size: cover;
  box-shadow: var(--shadow-soft);
  background-repeat: no-repeat;
}

.bonus-shell::before {
  content: none;
  pointer-events: none;
}

.bonus-shell__top {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 34px 40px 18px;
}

.bonus-shell__title {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.bonus-shell__mark-image {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
}

.bonus-shell__title h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 700;
  color: #202020;
}

.bonus-shell__title h2 span {
  color: var(--span-red);
}

.bonus-carousel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 46px;
}

.bonus-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 420px;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 0 0px 10px 0px;
}

.bonus-track::-webkit-scrollbar {
  display: none;
}

.bonus-card {
  position: relative;
  scroll-snap-align: start;
  min-height: 494px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e8edf2;
  overflow: hidden;
}

.bonus-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border-radius: inherit;
}

.bonus-card__poster {
  position: relative;
  height: 248px;
  background: linear-gradient(180deg, #090c10 0%, #10151b 100%);
}

.bonus-card__poster-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-card__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
}

.bonus-card__meta {
  position: absolute;
  top: 10px;
  left: 14px;
  right: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.bonus-card__meta--brand-only {
  justify-content: center;
}

.bonus-card__meta--brand-only .bonus-card__brand {
  max-width: 100%;
}

.bonus-card__chip,
.bonus-card__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.bonus-card__chip {
  height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex: 0 0 auto;
}

.bonus-card__brand {
  max-width: calc(100% - 164px);
  min-height: 30px;
  color: #ffd85f;
  font-size: 24px;
  line-height: 1;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.48);
}

.bonus-card__brand-logo {
  display: block;
  max-width: 168px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.bonus-card__body {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-height: 246px;
  padding: 18px 20px 20px;
}

.bonus-card__body p {
  margin: 0;
  min-height: 96px;
  font-size: 16px;
  line-height: 1.28;
  color: #373737;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bonus-card__link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bonus-card__link-icon {
  width: 18px;
  height: 18px;
  opacity: 0.42;
  transition: opacity 180ms ease;
}

.bonus-controls {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.bonus-controls__button {
  width: 52px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #eef1f4;
  color: #8d8d8d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bonus-controls__button.is-active {
  background: #e4e8ee;
  color: #2c2c2c;
}

.bonus-controls__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.bonus-controls__icon--prev {
  transform: rotate(180deg);
}

.bonus-controls__button:disabled {
  opacity: 0.6;
}

.bonus-shell--listing .bonus-shell__top {
  min-height: 186px;
  padding-bottom: 10px;
}

.bonus-filters {
  margin-top: 0;
  padding: 0 46px 18px;
}

.bonus-filter {
  background: rgba(244, 245, 247, 0.94);
  border-color: transparent;
  color: #b4b8bf;
}

.bonus-filter.is-active {
  box-shadow: 0 4px 10px rgba(17, 24, 31, 0.08);
  background: white;
  color: #1d2126;
}

.bonus-shell--listing .bonus-carousel {
  padding: 0 46px;
}

.bonus-shell--listing .bonus-track {
  grid-auto-flow: row;
  grid-auto-columns: unset;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  scroll-snap-type: none;
  padding: 0;
}

.bonus-shell--listing .bonus-card[hidden] {
  display: none;
}

.bonus-shell__footer {
  display: flex;
  justify-content: center;
  padding: 28px 46px 0;
}

.bonus-shell__more {
  min-width: 132px;
  justify-content: center;
}

.bonus-shell--listing .bonus-controls {
  display: none;
}

.forever-bonuses-section {
  padding: 34px 0 0;
}

.forever-bonuses-shell {
  padding: 52px 46px 34px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.forever-bonuses-shell__title {
  margin: 0;
  text-align: center;
  font-size: 42px;
  line-height: 1.16;
  font-weight: 700;
  color: #111820;
}

.forever-bonuses-table {
  margin-top: 34px;
}

.forever-bonuses-table__head {
  display: grid;
  align-items: center;
  min-height: 60px;
  padding: 0 32px;
  border-radius: 18px;
  background: #edf1f6;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 500;
}

.forever-bonuses-table__head--desktop {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1.7fr) minmax(0, 2.4fr);
}

.forever-bonuses-table__head--tablet {
  display: none;
}

.forever-bonuses-table__body {
  overflow: hidden;
}

.forever-bonuses-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1.7fr) minmax(0, 2.4fr);
  align-items: stretch;
  background: #fff;
}

.forever-bonuses-row__cell {
  min-height: 104px;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #edf1f6;
}

.forever-bonuses-row__cell + .forever-bonuses-row__cell {
  border-left: 1px solid #edf1f6;
}

.forever-bonuses-row:last-child .forever-bonuses-row__cell {
  border-bottom: 0;
}

.forever-bonuses-row__cell--bookmaker,
.forever-bonuses-row__cell--link {
  justify-content: center;
}

.forever-bonuses-row__cell--title {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.forever-bonuses-row__cell--terms {
  align-items: flex-start;
  justify-content: center;
}

.forever-bonuses-row__brand {
  font-size: 18px;
  line-height: 1.2;
  color: #1d1d1d;
}

.forever-bonuses-row__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.forever-bonuses-row__link--inline {
  display: none;
}

.forever-bonuses-row__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.38;
  font-weight: 700;
  color: #161616;
}

.forever-bonuses-row__cell--title p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: #1e1e1e;
}

.forever-bonuses-row__quote {
  position: relative;
  width: 100%;
  padding-left: 28px;
}

.forever-bonuses-row__quote::before {
  content: "”";
  position: absolute;
  left: 0;
  top: -4px;
  color: var(--accent);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

.forever-bonuses-row__quote p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #171717;
}

.forever-bonuses-row__quote p + p {
  margin-top: 6px;
}

.faq-section {
  padding: 34px 0 0;
}

.faq-shell {
  padding: 42px 42px 24px;
  border-radius: 28px;
  background: #fff url("../images/bg_faqs.png") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.faq-shell__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.faq-shell__intro h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.16;
  font-weight: 700;
  color: #111820;
}

.faq-shell__accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #e8edf2;
  border-radius: 14px;
  background: #fff;
}

.faq-item[open] {
  background: #eef1f6;
}

.faq-item__summary {
  list-style: none;
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

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

.faq-item__summary span:first-child {
  min-width: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #1a1f24;
}

.faq-item__summary-icon {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid #afb4bb;
  border-bottom: 2px solid #afb4bb;
  transform: rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.faq-item[open] .faq-item__summary-icon {
  border-color: #20242a;
  transform: rotate(-135deg);
}

.faq-item__content {
  height: 0;
  overflow: hidden;
  transition: height 240ms ease;
}

.faq-item__answer {
  padding: 0 18px 18px;
  font-size: 15px;
  line-height: 1.42;
  color: #40484f;
}

.pros-cons-section {
  padding: 34px 0 0;
}

.pros-cons-shell {
  padding: 36px 36px 36px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.pros-cons-shell__title {
  margin: 0;
  text-align: center;
  font-size: 42px;
  line-height: 1.16;
  font-weight: 700;
  color: #111820;
}

.pros-cons-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.pros-cons-card {
  position: relative;
  min-height: 378px;
  padding: 40px;
  border-radius: 24px;
  background:
    linear-gradient(141deg, rgba(243, 246, 250, 0) 58%, rgba(225, 229, 235, 0.8) 100%),
    #eff2f6;
  overflow: hidden;
}

.pros-cons-card__head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pros-cons-card__badge {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.pros-cons-card--advantages .pros-cons-card__badge {
  background: #0aa08d;
}

.pros-cons-card--advantages .pros-cons-card__item-icon {
  background: #0aa08d url(../images/adv_white.svg) center / 14px 14px no-repeat;
  color: transparent;
  font-size: 0;
}

.pros-cons-card--disadvantages .pros-cons-card__badge,
.pros-cons-card--disadvantages .pros-cons-card__item-icon {
  background: #eb4f45;
}

.pros-cons-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #101010;
}

.pros-cons-card__list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pros-cons-card__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.36;
  color: #171717;
}

.pros-cons-card__item-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.bottom-block-section {
  padding: 34px 0 0;
}

.bottom-block-shell {
  padding: 42px 30px 36px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.bottom-block__heading {
  text-align: center;
}

.bottom-block__heading h2 {
  margin: 0;
  color: #111820;
  font-size: 42px;
  line-height: 1.16;
  font-weight: 700;
}

.bottom-block__content {
  margin-top: 36px;
  color: #1b1f24;
  font-size: 16px;
  line-height: 1.42;
}

.bottom-block__content > :first-child {
  margin-top: 0;
}

.bottom-block__content > :last-child {
  margin-bottom: 0;
}

.bottom-block__content .richtext-heading {
  margin: 24px 0 10px;
  color: #111820;
  font-weight: 700;
  line-height: 1.24;
}

.bottom-block__content .richtext-heading--h1,
.bottom-block__content .richtext-heading--h2 {
  font-size: 22px;
}

.bottom-block__content .richtext-heading--h3,
.bottom-block__content .richtext-heading--h4,
.bottom-block__content .richtext-heading--h5,
.bottom-block__content .richtext-heading--h6 {
  font-size: 18px;
}

.bottom-block__content p {
  margin: 0 0 12px;
}

.bottom-block__content ul,
.bottom-block__content ol {
  margin: 0 0 18px;
  padding-left: 20px;
}

.bottom-block__content li + li {
  margin-top: 4px;
}

.not-found-page {
  padding: 16px 0 0;
}

.not-found-section {
  padding-top: 16px;
}

.not-found-shell {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  padding: 48px 24px 72px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found-shell__code {
  margin: 0;
  color: #0b1115;
  font-size: 176px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.not-found-shell__card {
  width: min(710px, 100%);
  margin-top: 50px;
  padding: 36px 26px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(7, 11, 18, 0.06);
  text-align: center;
}

.not-found-shell__message {
  margin: 0;
  color: #20262d;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
}

.not-found-shell__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.not-found-shell__action {
  min-width: 214px;
  height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.not-found-shell__action img {
  width: 18px;
  height: 18px;
  display: block;
}

.not-found-shell__action--home {
  background: #eef2f5;
  color: #4d5963;
}

.not-found-shell__action--tg {
  background: var(--accent);
  color: #fff;
}

.not-found-shell__action--tg img {
  filter: brightness(0) invert(1);
}

.not-found-shell__action:hover {
  transform: translateY(-1px);
}

.not-found-shell__action--home:hover {
  background: #e4e9ee;
  color: #36414a;
}

.not-found-shell__action--tg:hover {
  background: var(--hover_color);
}

.match-center-section,
.bk-rating-section {
  padding-top: 16px;
}

.match-center-shell {
  padding: 24px 36px 36px;
  border-radius: 24px;
  background: #fbfbfb;
  box-shadow: var(--shadow-soft);
}

.match-center__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.match-center__head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.match-center__cta {
  flex-shrink: 0;
}

.match-center__cta--desktop {
  position: absolute;
  top: 0;
  right: 0;
}

.match-center__cta-bottom {
  display: none;
}

.match-center__status-tabs,
.match-center__sport-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 15px;
}

.match-center__status-tabs::-webkit-scrollbar,
.match-center__sport-tabs::-webkit-scrollbar {
  display: none;
}

.match-center__status-tabs {
  margin-top: 20px;
}

.match-center__status-tab {
    height: 36px;
    min-width: 94px;
    max-width: 180px;
    max-height: 36px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #f2f4f7;
    color: #b5b9bf;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      max-width 220ms ease,
      max-height 220ms ease,
      min-width 220ms ease,
      margin 220ms ease,
      padding 220ms ease;
}

.match-center__status-tab.is-active {
  background: #ffffff;
  color: #1d1f22;
  box-shadow: 0 2px 8px rgba(18, 26, 34, 0.08);
}

.match-center__status-tab.is-hidden-by-date {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  min-width: 0;
  max-width: 0;
  max-height: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}


.match-center-chip {
  position: relative;
  height: 46px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: #eff1f4;
  color: #1d2126;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.match-center-chip.is-active {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
}

.match-center-chip--hot {
    background: #f2f4f7;
    color: #a0a7b2;
}

.match-center-chip:hover {
  transform: translateY(-1px);
}

.match-center-chip:focus-visible {
  outline: 2px solid rgba(31, 111, 243, 0.28);
  outline-offset: 2px;
}

.match-center-chip__image {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.match-center-chip.is-active .match-center-chip__image {
  filter: brightness(0) invert(1);
}

.match-center__accordions {
  margin-top: 24px;
}

.match-center__league {
  border-radius: 16px;
  background: #f2f4f7;
  overflow: hidden;
}

.match-center__league + .match-center__league {
  margin-top: 12px;
}

.match-center__league[open] {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(19, 26, 34, 0.08);
}

.match-center__league-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 57px;
  padding: 0 18px;
  cursor: pointer;
}

.match-center__league-summary::-webkit-details-marker {
  display: none;
}

.match-center__league[open] .match-center__league-summary {
  background: #3f4c53;
  color: #ffffff;
}

.match-center__league-main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #23282d;
  font-size: 16px;
  font-weight: 500;
}

.match-center__league[open] .match-center__league-main {
  color: #ffffff;
}

.match-center__league-main span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-center__odds-head,
.match-center__odds {
  width: 198px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  text-align: center;
}

.match-center__odds-head {
  color: #949aa0;
  font-size: 16px;
  font-weight: 600;
}

.match-center__league[open] .match-center__odds-head {
  color: rgba(255, 255, 255, 0.56);
}

.match-center__flag-wrap {
  position: relative;
  width: 15px;
  height: 11px;
  flex-shrink: 0;
}

.match-center__flag-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.match-center__flag {
  display: none;
  width: 15px;
  height: 11px;
  border-radius: 2px;
  background:
    linear-gradient(135deg, transparent 38%, #f4d13f 38%, #f4d13f 62%, transparent 62%),
    radial-gradient(circle at center, #173b1e 0 24%, transparent 25%),
    linear-gradient(180deg, #0d8f42 0%, #0d8f42 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.match-center__league-games {
  background: #ffffff;
  overflow: hidden;
  transition: height 280ms ease;
  will-change: height;
}

.match-center__game {
  border-bottom: 1px solid #eef2f6;
}

.match-center__league-games .match-center__game:last-child {
  border-bottom: 0;
}

.match-center__game--featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 198px;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 0 18px;
}

.match-center__game-body {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  justify-content: start;
  gap: 20px;
  min-width: 0;
}

.match-center__match-line {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px fit-content(260px) auto fit-content(260px);
  align-items: center;
  justify-content: start;
  gap: 16px;
  flex: none;
  width: auto;
}

.match-center__time {
  height: 32px;
  border-radius: 16px;
  background: #f5f7fa;
  color: #68727c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
}

.match-center__team {
  min-width: 0;
  font-size: 16px;
  font-weight: 500;
  color: #1c2126;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-center__team--away {
  text-align: left;
}

.match-center__score {
  min-width: 64px;
  height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  background: #11181f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.match-center__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  justify-self: start;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.match-center__button-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.match-center__odds span {
  height: 40px;
  border-radius: 14px;
  border: 1px solid #ecf0f3;
  background: #fff;
  color: #272b31;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.match-center__empty {
  margin-top: 24px;
  padding: 32px 28px;
  border-radius: 18px;
  background: #f2f4f7;
  color: #68727c;
  text-align: center;
}

.match-center__empty p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.all-matches-section {
  padding-top: 16px;
}

.all-matches-shell {
  padding: 40px 34px 40px;
  border-radius: 28px;
  background: #fbfbfb;
  box-shadow: var(--shadow-soft);
}

.all-matches-shell__head {
  text-align: center;
}

.all-matches-shell__head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.all-matches-shell__toolbar {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  transition: margin-top 240ms ease, opacity 240ms ease, max-height 240ms ease;
}

.all-matches-shell__toolbar--overview {
  flex-direction: column;
  gap: 14px;
}

.all-matches-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 102px;
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #f2f4f7;
  color: #5d6873;
  font-size: 18px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.all-matches-chip__icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}



.all-matches-chip--top.is-active,
.all-matches-chip:hover {
  background: #fff4ee;
  color: #eb6b31;
}

.all-matches-chip--date {
  min-width: 110px;
}

.all-matches-date-picker {
  position: relative;
}

.all-matches-date-picker__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  transform: translateX(-50%);
}

.all-matches-date-picker__backdrop {
  display: none;
}

.all-matches-date-picker__dialog {
  width: 320px;
  padding: 12px 12px 14px;
  border-radius: 24px;
  border: 1px solid #edf1f5;
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 24, 33, 0.14);
}

.all-matches-date-picker__header {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf1f5;
}

.all-matches-date-picker__month {
  text-align: center;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: lowercase;
  color: #232a32;
}

.all-matches-date-picker__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #dce5ef;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 14px rgba(15, 24, 33, 0.1);
}

.all-matches-date-picker__nav-icon {
  width: 11px;
  height: 11px;
  border-top: 2px solid #94b1cf;
  border-right: 2px solid #94b1cf;
  display: block;
}

.all-matches-date-picker__nav-icon--prev {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.all-matches-date-picker__nav-icon--next {
  transform: rotate(45deg);
  margin-right: 4px;
}

.all-matches-date-picker__weekdays,
.all-matches-date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.all-matches-date-picker__weekdays {
  margin-bottom: 6px;
}

.all-matches-date-picker__weekdays span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  color: #aac0d5;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.all-matches-date-picker__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #2a3138;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.all-matches-date-picker__day:hover {
  background: #f2f5f8;
}

.all-matches-date-picker__day.is-outside {
  color: #c8cdd3;
}

.all-matches-date-picker__day.is-today {
  box-shadow: inset 0 0 0 1px #dbe6f3;
}

.all-matches-date-picker__day.is-selected {
  background: #1f6ff3;
  color: #fff;
  box-shadow: 0 10px 18px rgba(31, 111, 243, 0.28);
}

.all-matches-shell__status-tabs {
  margin-top: 0;
  background: #eef1f5;
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}

.all-matches-shell__sport-tabs {
  width: 100%;
  margin-top: 0;
  padding-bottom: 2px;
  overflow: visible;
  flex-wrap: wrap;
}

.all-matches-shell__sport-tabs .all-matches-date-picker {
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
}

.match-center-chip--hot.is-active {
  background: linear-gradient(180deg, #fff8f3 0%, #ffe7da 100%);
  color: #f06d32;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 2px rgba(255, 124, 58, 0.28),
    0 0 0 rgba(255, 124, 58, 0.18);
}

.match-center-chip--hot.is-active .match-center-chip__image {
  filter: none;
}

.all-matches-shell__status-tabs .match-center__status-tab {
  min-width: 78px;
  background: transparent;
  color: #a0a7b2;
  box-shadow: none;
  font-weight: 500;
}

.all-matches-shell__status-tabs .match-center__status-tab.is-active {
  background: #ffffff;
  color: #1d1f22;
  box-shadow: 0 4px 12px rgba(18, 26, 34, 0.08);
}

.all-matches-shell__status-tabs .match-center__status-tab.is-hidden-by-date {
  min-width: 0;
  width: 0;
  flex: 0 0 0;
}

.all-matches-list {
  margin-top: 34px;
}

[data-all-matches-status-wrap],
[data-all-matches-date-wrap],
[data-all-matches-top-wrap] {
  max-height: 120px;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    max-width 220ms ease,
    max-height 220ms ease,
    margin 220ms ease,
    padding 220ms ease;
}

.all-matches-shell.is-mma-schedule [data-all-matches-status-wrap],
.all-matches-shell.is-mma-schedule [data-all-matches-date-wrap],
.all-matches-shell.is-mma-schedule [data-all-matches-top-wrap] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.all-matches-shell.is-mma-schedule:not(.all-matches-shell--sports) .all-matches-shell__toolbar {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.all-matches-shell.is-mma-schedule .all-matches-list {
  margin-top: 24px;
}

.mma-schedule {
  display: grid;
  gap: 24px;
}

.mma-schedule__month {
  display: grid;
  gap: 16px;
}

.mma-schedule__month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mma-schedule__month-title {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  color: #1c232a;
}

.mma-schedule__days {
  display: grid;
  gap: 18px;
}

.mma-schedule__day {
  display: grid;
  gap: 12px;
}

.mma-schedule__day-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mma-schedule__day-header::before {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a45 0%, rgba(255, 138, 69, 0.08) 100%);
  flex-shrink: 0;
}

.mma-schedule__day-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #5b6672;
  text-transform: capitalize;
}

.mma-schedule__list {
  display: grid;
  gap: 10px;
}

.all-matches-empty--mma {
  text-align: left;
}

.match-center-shell--home .all-matches-shell__toolbar {
  margin-top: 18px;
}

.match-center-shell--home .match-center__status-tabs,
.match-center-shell--home .match-center__sport-tabs {
  overflow: visible;
  flex-wrap: wrap;
}

.match-center-shell--home .match-center__sport-tabs {
  justify-content: center;
}

.match-center-shell--home .all-matches-list {
  margin-top: 24px;
}

.all-matches-group + .all-matches-group {
  margin-top: 28px;
}

.all-matches-group__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #5a6470;
  font-size: 18px;
  line-height: 1.2;
}

.all-matches-group__country {
  color: #2f3740;
  font-weight: 700;
}

.all-matches-group__separator {
  color: #c7cdd4;
}

.all-matches-group__league {
  font-weight: 500;
}

.all-matches-group__list {
  display: grid;
  gap: 10px;
}

.all-match-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    cursor: pointer;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px 288px;
    align-items: center;
    gap: 22px;
    padding: 13px;
    border-radius: 24px;
    background: #f2f4f7;
    transition: background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.all-match-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -54px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 34%, rgba(84, 96, 109, 0.05) 34% 38%, transparent 38% 100%),
    linear-gradient(45deg, transparent 46%, rgba(84, 96, 109, 0.05) 46% 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(84, 96, 109, 0.05) 46% 54%, transparent 54%);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

.all-match-card:hover {
  background: #edf1f5;
}

.all-match-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.all-match-card__main {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 92px;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}

.all-match-card__logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.all-match-card .all-match-card__logo {
  width: 48px;
  height: 48px;
}

.all-match-card__identity {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.all-match-card__logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  color: #57616b;
}

.all-match-card__meta {
    font-size: 15px;
    line-height: 1.15;
    color: #00b928;
    font-weight: 600;
}

.all-match-card__meta-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.all-match-card__live-minute {
    display: inline-flex;
    position: relative;
    align-items: center;
    padding-bottom: 3px;
    color: #00b928;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.all-match-card__live-minute::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: rgba(0, 185, 40, 0.22);
}

.all-match-card__live-minute::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.3;
    animation: all-match-card-live-minute-line 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes all-match-card-live-minute-line {
    0% {
        left: calc(100% - 8px);
        width: 8px;
        opacity: 0.22;
    }

    25% {
        left: calc(100% - 20%);
        width: 20%;
        opacity: 0.45;
    }

    50% {
        left: 0;
        width: 100%;
        opacity: 0.9;
    }

    75% {
        left: 0;
        width: 20%;
        opacity: 0.45;
    }

    100% {
        left: 0;
        width: 8px;
        opacity: 0.22;
    }
}

.all-match-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: #151a20;
}

.all-match-card__result {
  width: 92px;
  text-align: center;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  color: #20262d;
}

.all-match-card--completed .all-match-card__result {
  color: #a3aab4;
}

.all-match-card__actions {
  position: relative;
  z-index: 2;
  display: contents;
}

.all-match-card__button {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.all-match-card__button-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.all-match-card__odds {
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.all-match-card__odd {
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}



.all-match-card__odd-label {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #606a75;
}

.all-match-card__odd-value {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #131920;
}

.all-matches-empty,
.all-matches-shell__loading {
  margin-top: 12px;
  border-radius: 22px;
  padding: 28px 24px;
  background: #f2f4f7;
  text-align: center;
  color: #68727c;
  font-size: 18px;
  line-height: 1.4;
}

.single-match-section {
  padding: 8px 0 32px;
}

.single-match-shell {
  min-height: 280px;
  padding: 30px 34px;
  border-radius: 28px;
  background: #fbfbfb;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.single-match-shell__eyebrow {
  color: #6e7883;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.single-match-shell h1 {
  margin: 0;
  color: #131920;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
}

.single-match-shell__meta,
.single-match-shell__text {
  margin: 0;
}

.single-match-shell__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #5f6974;
  font-size: 18px;
  line-height: 1.3;
}

.single-match-shell__text {
  max-width: 720px;
  color: #3b4650;
  font-size: 20px;
  line-height: 1.45;
}

.all-matches-shell__loading {
  margin-top: 18px;
}

@media (max-width: 1439px) {
  .all-matches-shell {
    padding: 24px 20px 28px;
    border-radius: 24px;
  }

  .all-matches-shell__head h2 {
    font-size: 36px;
  }

  .all-matches-shell__toolbar {
    gap: 10px;
  }

  .all-matches-chip {
    height: 44px;
    min-width: 94px;
    font-size: 16px;
  }

  .all-matches-date-picker__dialog {
    width: 332px;
    padding: 14px;
  }

  .all-matches-date-picker__month {
    font-size: 19px;
  }

  .all-matches-date-picker__weekdays span {
    min-height: 28px;
    font-size: 13px;
  }

  .all-matches-date-picker__day {
    height: 40px;
    font-size: 15px;
  }

  .all-matches-shell__status-tabs .match-center__status-tab {
    min-width: 112px;
  }

  .all-match-card {
    grid-template-columns: minmax(0, 1fr) 200px 252px;
    gap: 16px;
    min-height: 112px;
    padding: 16px;
  }

  .all-match-card__main {
    grid-template-columns: auto minmax(0, 1fr) 74px;
  }

  .all-match-card__title {
    font-size: 18px;
  }

  .all-match-card__result {
    width: 74px;
    font-size: 16px;
  }

  .all-match-card__button {
    min-width: 200px;
    height: 44px;
    font-size: 16px;
  }

  .all-match-card__odd {
    min-height: 88px;
    padding: 14px 10px 12px;
  }

  .mma-schedule__month-title {
    font-size: 24px;
  }

  .mma-schedule__day-title {
    font-size: 16px;
  }

  .single-match-shell {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .single-match-shell h1 {
    font-size: 34px;
  }

  .single-match-shell__text {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .all-matches-shell__toolbar {
    justify-content: flex-start;
  }

  .all-matches-date-picker__panel {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 104px 20px 24px;
    transform: none;
  }

  .all-matches-date-picker__backdrop {
    position: absolute;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(20, 28, 37, 0.18);
  }

  .all-matches-date-picker__dialog {
    position: relative;
    width: min(100%, 340px);
    border-radius: 28px;
  }

  .all-matches-shell__status-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .match-center-shell--home .all-matches-shell__status-tabs,
  .match-center-shell--home .all-matches-shell__sport-tabs {
    justify-content: flex-start;
    overflow: visible;
    flex-wrap: wrap;
    width: auto;
  }

  .all-matches-shell.is-mma-schedule:not(.all-matches-shell--sports) .all-matches-shell__toolbar {
    max-height: 0;
    padding: 0;
  }

  .all-match-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .all-match-card__main {
    grid-template-columns: auto minmax(0, 1fr) 74px;
    gap: 14px;
  }

  .all-match-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
  }

  .all-match-card__button {
    min-width: 0;
    width: auto;
    justify-self: end;
  }

  .all-match-card__odds {
    min-width: 0;
    gap: 10px;
  }

  .single-match-shell h1 {
    font-size: 30px;
  }

  .mma-schedule {
    gap: 18px;
  }

  .mma-schedule__month {
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .all-matches-section {
    padding-top: 12px;
  }

  .all-matches-shell {
    padding: 18px 12px 22px;
    border-radius: 28px;
  }

  .all-matches-shell__head h2 {
    font-size: 24px;
  }

  .all-matches-shell__toolbar {
    margin-top: 18px;
    gap: 8px;
  }

  .all-matches-chip {
    min-width: 0;
    height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .all-matches-chip__icon {
    width: 14px;
    height: 14px;
  }

  .all-matches-date-picker__panel {
    padding: 72px 10px 12px;
  }

  .all-matches-date-picker__dialog {
    width: min(100%, 312px);
    padding: 12px 12px 14px;
    border-radius: 22px;
  }

  .all-matches-date-picker__header {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .all-matches-date-picker__month {
    font-size: 17px;
  }

  .all-matches-date-picker__nav {
    width: 36px;
    height: 36px;
  }

  .all-matches-date-picker__nav-icon {
    width: 10px;
    height: 10px;
  }

  .all-matches-date-picker__weekdays,
  .all-matches-date-picker__grid {
    gap: 4px;
  }

  .all-matches-date-picker__weekdays {
    margin-bottom: 6px;
  }

  .all-matches-date-picker__weekdays span {
    min-height: 24px;
    font-size: 12px;
  }

  .all-matches-date-picker__day {
    height: 34px;
    border-radius: 9px;
    font-size: 13px;
  }

  .all-matches-shell__status-tabs {
    padding: 3px;
  }

  .match-center-shell--home .all-matches-shell__status-tabs,
  .match-center-shell--home .all-matches-shell__sport-tabs {
    overflow: visible;
    flex-wrap: wrap;
  }

  .mma-schedule {
    gap: 14px;
  }

  .mma-schedule__month-title {
    font-size: 20px;
  }

  .mma-schedule__day-header {
    gap: 10px;
  }

  .mma-schedule__day-header::before {
    width: 28px;
  }

  .mma-schedule__day-title {
    font-size: 14px;
  }

  .all-matches-shell__status-tabs .match-center__status-tab {
    min-width: 96px;
    height: 38px;
    padding: 0 16px;
    font-size: 14px;
  }

  .all-matches-list {
    margin-top: 20px;
  }

  .all-matches-group + .all-matches-group {
    margin-top: 18px;
  }

  .all-matches-group__header {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .all-match-card {
    gap: 12px;
    min-height: 0;
    padding: 14px 12px;
    border-radius: 22px;
  }

  .all-match-card::after {
    opacity: 1;
  }

  .all-match-card__main {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "identity logos"
      "result logos";
    align-items: start;
    gap: 12px;
  }

  .all-match-card__logos {
    grid-area: logos;
    flex-direction: column;
    gap: 10px;
    align-self: start;
  }

  .all-match-card .all-match-card__logo {
    width: 38px;
    height: 38px;
  }

  .all-match-card__identity {
    grid-area: identity;
    gap: 6px;
  }

  .all-match-card__meta {
    font-size: 12px;
  }

  .all-match-card__title {
    white-space: normal;
    font-size: 16px;
    line-height: 1.25;
  }

  .all-match-card__result {
    grid-area: result;
    width: auto;
    text-align: left;
    font-size: 16px;
  }

  .all-match-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .all-match-card__button {
    justify-self: start;
    height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .all-match-card__button-icon {
    width: 16px;
    height: 16px;
  }

  .all-match-card__odds {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .all-match-card__odd {
    min-height: 74px;
    padding: 10px 8px;
    border-radius: 14px;
    gap: 6px;
  }

  .all-match-card__odd-label {
    font-size: 13px;
  }

  .all-match-card__odd-value {
    font-size: 15px;
  }

  .single-match-section {
    padding-bottom: 22px;
  }

  .single-match-shell {
    min-height: 220px;
    padding: 18px 14px;
    border-radius: 24px;
    gap: 10px;
  }

  .single-match-shell__eyebrow {
    font-size: 12px;
  }

  .single-match-shell h1 {
    font-size: 24px;
  }

  .single-match-shell__meta {
    gap: 8px;
    font-size: 14px;
  }

  .single-match-shell__text {
    font-size: 16px;
  }

  .all-matches-empty,
  .all-matches-shell__loading {
    padding: 20px 16px;
    border-radius: 18px;
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .all-matches-shell__toolbar--overview {
    align-items: flex-start;
  }

  .all-matches-shell__toolbar--overview .all-matches-shell__status-tabs {
    justify-content: flex-start;
    align-self: flex-start;
  }

  .all-matches-shell__toolbar--overview .all-matches-shell__sport-tabs {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .all-matches-shell__toolbar--overview .all-matches-shell__sport-tabs::-webkit-scrollbar {
    display: none;
  }

  .all-matches-shell__toolbar--overview .all-matches-shell__sport-tabs > * {
    flex: 0 0 auto;
  }

  .all-matches-shell__toolbar--overview .all-matches-date-picker__panel {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 104px 20px 24px;
    transform: none;
  }

  .all-matches-shell__toolbar--overview .all-matches-date-picker__backdrop {
    position: absolute;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(20, 28, 37, 0.18);
  }

  .all-matches-shell__toolbar--overview .all-matches-date-picker__dialog {
    position: relative;
    width: min(100%, 340px);
    border-radius: 28px;
  }
}

.bk-rating-shell {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 30px 34px 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(7, 12, 17, 0.08), rgba(7, 12, 17, 0.08)),
    var(--bk-rating-bg-image, linear-gradient(180deg, #15212a 0%, #0b1218 100%));
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  box-shadow: var(--shadow-soft);
}

.bk-rating__heading {
  position: relative;
  text-align: center;
}

.bk-rating__heading::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 246px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(121, 219, 255, 0.65) 0%, rgba(121, 219, 255, 0.28) 42%, rgba(121, 219, 255, 0) 74%);
  filter: blur(3px);
}

.bk-rating__heading h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.bk-rating__panel {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 34px auto 0;
  padding: 10px;
  border-radius: 16px;
  background: var(--dark_gray);
}

.bk-rating__row {
  display: grid;
  grid-template-columns: 20px 20px minmax(0, 1fr) auto minmax(0, 180px) 20px;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 4px 14px;
  border-radius: 10px;
  background: var(--main_black);
  border: 1px solid rgba(101, 121, 136, 0.22);
  transition: opacity 220ms ease, transform 220ms ease;
}

.bk-rating__row + .bk-rating__row {
  margin-top: 6px;
}

.bk-rating__row.is-entering {
  opacity: 0;
  transform: translateY(14px);
}

.bk-rating__rank {
  font-size: 15px;
  font-weight: 500;
  color: #f6f8fa;
}

.bk-rating__globe {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.bk-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  height: 22px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.bk-brand--dynamic {
  gap: 10px;
  height: auto;
  min-width: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

.bk-brand__logo {
  display: block;
  flex-shrink: 0;
  width: auto;
  max-width: 112px;
  height: 24px;
  object-fit: contain;
}

.bk-brand__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bk-rating__arrow {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.bk-brand--winline {
  padding: 0 10px;
  border-radius: 999px;
  background: #14181c;
  border: 2px solid #ff7b1b;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.03em;
}

.bk-brand--liga {
  padding: 0 8px;
  background: #133b13;
  color: #8ee25c;
  font-size: 15px;
  font-weight: 700;
}

.bk-brand--pari {
  color: #ffffff;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.02em;
}

.bk-brand--melbet {
  color: #ffffff;
  font-size: 17px;
  font-style: italic;
}

.bk-brand--fonbet {
  color: #ff3c32;
  font-size: 17px;
}

.bk-brand--onewin {
  color: #56a3ff;
  font-size: 17px;
  font-style: italic;
}

.bk-brand--betboom {
  color: #ff3155;
  font-size: 17px;
}

.bk-rating__score {
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9c4f 0%, #ff7b2c 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}

.bk-rating__note {
  color: #7f8d98;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bk-rating__footer {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.bk-rating__cta {
  height: 42px;
  border-radius: 10px;
}

.bk-rating__load-more {
  min-width: 224px;
  border: 0;
}

.why-us-section {
  padding-top: 12px;
}

.why-us-shell {
  position: relative;
  overflow: hidden;
  padding: 58px 46px 0px;
  border-radius: 28px;
  background-color: #020910;
  background-image: var(--why-us-bg-desktop, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow-soft);
}

.why-us-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, rgba(12, 30, 55, 0) 0%, rgba(12, 30, 55, 0.32) 100%);
  pointer-events: none;
}

.why-us__brand,
.why-us__heading,
.why-us__grid {
  position: relative;
  z-index: 1;
}

.why-us__brand {
  display: flex;
  justify-content: center;
}

.why-us__brand-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 266px;
  height: 98px;
  border-radius: 20px;
  border: 1px solid rgba(78, 143, 255, 0.9);
  background: rgba(3, 7, 13, 0.68);
  box-shadow: 0 0 0 1px rgba(78, 143, 255, 0.08), 0 16px 34px rgba(2, 6, 12, 0.24);
}

.why-us__brand-logo {
  display: block;
  width: 184px;
  height: auto;
  object-fit: contain;
}

.why-us__heading {
  max-width: 990px;
  margin: 30px auto 0;
  text-align: center;
}

.why-us__heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.why-us__text {
  margin: 26px auto 0;
  max-width: 1060px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.34;
  font-weight: 400;
}

.why-us__text p {
  margin: 0;
}

.why-us__text .richtext-heading {
  margin: 0 0 12px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}

.why-us__grid {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-us-card {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 262px;
  padding: 100px 26px 30px;
  text-align: center;
  --why-us-card-shape: polygon(0 14%, 10% 10%, 24% 7%, 50% 0, 76% 7%, 90% 10%, 100% 14%, 100% 100%, 0 100%);
}

.why-us-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 18px;
  clip-path: var(--why-us-card-shape);
  background:
    linear-gradient(180deg, rgba(9, 18, 31, 0.98) 0%, rgba(8, 15, 24, 0.96) 100%);
  border: 1px solid rgba(49, 79, 136, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(90, 131, 233, 0.12),
    0 18px 30px rgba(1, 6, 12, 0.22);
  pointer-events: none;
}

.why-us-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 18px;
  clip-path: var(--why-us-card-shape);
  background:
    radial-gradient(circle at 50% 0%, rgba(74, 105, 255, 0.34) 0%, rgba(74, 105, 255, 0.18) 12%, rgba(74, 105, 255, 0) 28%),
    conic-gradient(from 0deg at 50% 0%, rgba(76, 117, 255, 0) 104deg, rgba(76, 117, 255, 0.12) 114deg 126deg, rgba(76, 117, 255, 0) 126deg 140deg, rgba(76, 117, 255, 0.24) 140deg 158deg, rgba(76, 117, 255, 0) 158deg 172deg, rgba(76, 117, 255, 0.34) 172deg 188deg, rgba(76, 117, 255, 0) 188deg 202deg, rgba(76, 117, 255, 0.24) 202deg 220deg, rgba(76, 117, 255, 0) 220deg 234deg, rgba(76, 117, 255, 0.12) 234deg 246deg, rgba(76, 117, 255, 0) 246deg 360deg),
    linear-gradient(180deg, rgba(38, 61, 114, 0.18) 0%, rgba(38, 61, 114, 0.04) 24%, rgba(38, 61, 114, 0) 48%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 16%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.16) 52%, rgba(0, 0, 0, 0) 62%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 16%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.16) 52%, rgba(0, 0, 0, 0) 62%);
  pointer-events: none;
}

.why-us-card__badge {
position: absolute;
    left: 50%;
    top: -80px;
    z-index: 3;
    width: 165px;
    height: 165px;
    transform: translateX(-50%);
    display: block;
}

.why-us-card__badge-image {
  display: block;
  width: 100%;
  height: 100%;
}

.why-us-card strong,
.why-us-card p {
  position: relative;
  z-index: 2;
}

.why-us-card strong {
  display: block;
  color: #5f98ff;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.why-us-card p {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.22;
  font-weight: 500;
}

.reviews-section {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.site-body.page-home .reviews-section {
  margin-top: -30px;
}

.reviews-shell {
  position: relative;
  overflow: hidden;
  padding: 70px 32px 34px;
  border-radius: 28px;
  background: #f3f3f3 url("../images/bg_reviews.png") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.reviews-shell::before,
.reviews-shell::after {
  content: "";
  position: absolute;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(224, 224, 224, 0.9) 0%, rgba(224, 224, 224, 0.24) 42%, rgba(224, 224, 224, 0) 72%);
  opacity: 0.58;
  pointer-events: none;
}

.reviews-shell::before {
  left: -78px;
  top: 42px;
}

.reviews-shell::after {
  right: -76px;
  top: 120px;
}

.reviews-shell__icon-wrap,
.reviews-shell__heading,
.reviews-shell__tabs,
.reviews-carousel,
.reviews-controls {
  position: relative;
  z-index: 1;
}

.reviews-shell__cup {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.reviews-shell__cup--big {
  top: 28px;
  left: 18px;
  width: 138px;
  height: auto;
}

.reviews-shell__cup--small {
  top: 82px;
  right: 30px;
  width: 132px;
  height: auto;
}

.reviews-shell__icon-wrap {
  display: flex;
  justify-content: center;
}

.reviews-shell__icon {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.reviews-shell__heading {
  margin-top: 8px;
  text-align: center;
}

.reviews-shell__heading h2 {
  margin: 0;
  color: #efad00;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.reviews-shell__tabs {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
  border-radius: 999px;
  background: #ececec;
  overflow-x: auto;
  scrollbar-width: none;
}

.reviews-shell__tabs::-webkit-scrollbar {
  display: none;
}

.reviews-shell__tab {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-width: 172px;
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #b3b3b3;
  font-size: 18px;
  font-weight: 600;
}

.reviews-shell__tab.is-active {
  background: #f5f5f5;
  color: #1d1d1d;
  box-shadow: inset 0 0 0 1px rgba(212, 212, 212, 0.9);
}

.reviews-carousel {
  margin-top: 44px;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  min-height: 346px;
  padding: 26px 24px 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(235, 235, 235, 0.95);
  box-shadow:
    inset 0 -72px 90px rgba(243, 231, 175, 0.42),
    0 8px 28px rgba(22, 29, 37, 0.04);
}

.review-card::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(246, 226, 131, 0.34) 0%, rgba(246, 226, 131, 0.08) 52%, rgba(246, 226, 131, 0) 78%);
  pointer-events: none;
}

.review-card--image {
  padding: 0;
  overflow: hidden;
}

.review-card--image::after {
  display: none;
}

.review-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card__name {
  margin: 0;
  color: #111111;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.review-card__rate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5be17 0%, #efad00 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.review-card p {
  margin: 26px 0 0;
  color: #1e1e1e;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 400;
}

.reviews-controls {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.reviews-controls__button {
  width: 38px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: #e7e7e7;
  color: #8d8d8d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reviews-controls__button.is-active {
  background: #dcdcdc;
  color: #1c1c1c;
}

.reviews-controls__button:disabled {
  opacity: 0.54;
  cursor: default;
}

.reviews-controls__icon {
  display: block;
  width: 8px;
  height: 14px;
  flex-shrink: 0;
}

.reviews-controls__button:hover {
  background: var(--hover_color);
  color: #ffffff;
}

.news-section,
.articles-section {
  margin-top: 28px;
}

.content-shell {
  padding: 32px 22px 24px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.content-shell__heading {
  text-align: center;
}

.content-shell__heading h2 {
  margin: 0;
  color: #11181f;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.content-filters {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.content-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #ebedf0;
  border-radius: 999px;
  background: #ffffff;
  color: #1c232a;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.content-filters-bk {
    margin: 28px 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: #F0F2F5;
    padding: 0px;
    border-radius: 30px;
    width: fit-content;
}

.content-filter-bk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0px 19px;
    border: 1px solid #ebedf0;
    border-radius: 999px;
    background: #F0F2F5;
    color: #AFAFAF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.content-filter__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: filter 180ms ease, opacity 180ms ease;
}

.content-filter.is-active {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
  color: #ffffff;
}

.content-filter.is-active .content-filter__icon {
  filter: brightness(0) invert(1);
}

.content-grid {
  display: grid;
  gap: 18px;
}

.content-grid--news {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid--articles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.content-card {
  min-width: 0;
}

.content-card__media {
  position: relative;
  display: block;
  aspect-ratio: 304 / 182;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #10151a 0%, #1b232d 100%);
}

.content-card__image,
.content-card__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.content-card__image {
  object-fit: cover;
}

.content-card__media-placeholder {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 204, 85, 0.22) 0%, rgba(255, 204, 85, 0) 24%),
    linear-gradient(180deg, rgba(19, 24, 32, 0.96) 0%, rgba(12, 16, 22, 0.98) 100%);
}

.content-card__media-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
    width: 23px;
    height: 23px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(16, 21, 26, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.content-card__media-icon img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}


.content-card__body {
  margin-top: 8px;
}

.content-card__title {
  display: block;
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.content-card__excerpt {
  margin: 8px 0 0;
  color: #b1b1b1;
  font-size: 15px;
  line-height: 1.22;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.content-card__date {
  display: block;
  margin-top: 4px;
  color: #b1b1b1;
  font-size: 15px;
  line-height: 1.2;
}

.content-shell__footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.articles-showcase {
  display: grid;
  grid-template-columns: 538px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.content-listing-section {
  margin-top: 28px;
}

.content-listing-shell {
  padding: 42px 26px 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.content-listing-shell__heading {
  text-align: center;
}

.content-listing-shell__heading h1 {
  margin: 0;
  color: #11181f;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.content-listing-shell__filters {
  margin-top: 34px;
}

.content-listing-shell .content-grid {
  margin-top: 24px;
}

.content-listing-shell__footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.content-listing-shell__more {
  min-width: 132px;
  justify-content: center;
}

.content-listing-shell__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 36px 0 12px;
  text-align: center;
  color: #7f8892;
  font-size: 16px;
  line-height: 1.4;
}

.latest-news-section {
  margin-top: 28px;
}

.latest-news-shell {
  padding: 0;
}

.latest-news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 448px;
  grid-template-areas:
    "meta media"
    "body media"
    "cta media";
  gap: 18px 42px;
  align-items: start;
  padding: 22px 22px 20px;
  border-radius: 28px;
  background: #ffffff url("../images/bg_articles.png") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.latest-news-feature__meta {
  grid-area: meta;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 6px;
}

.latest-news-feature__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.latest-news-feature__date {
  color: #b1b1b1;
  font-size: 16px;
  line-height: 1.2;
}

.latest-news-feature__body {
  grid-area: body;
}

.latest-news-feature__title {
  display: block;
  color: #1b1b1b;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.latest-news-feature__excerpt {
  margin: 10px 0 0;
  color: #b1b1b1;
  font-size: 16px;
  line-height: 1.28;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.latest-news-feature__media {
  grid-area: media;
  position: relative;
  display: block;
  aspect-ratio: 448 / 212;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #10151a 0%, #1b232d 100%);
}

.latest-news-feature__image,
.latest-news-feature__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.latest-news-feature__image {
  object-fit: cover;
}

.latest-news-feature__media-placeholder {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 204, 85, 0.22) 0%, rgba(255, 204, 85, 0) 24%),
    linear-gradient(180deg, rgba(19, 24, 32, 0.96) 0%, rgba(12, 16, 22, 0.98) 100%);
}


.latest-news-feature__cta {
    grid-area: cta;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 38px;
    border-radius: 14px;
    background: #0b1215;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    width: fit-content;
}

.adv-banners-section,
.tg-banner-section {
  margin-top: 18px;
}

.adv-banners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.adv-banner-card {
  display: block;
  height: 180px;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #e7ebf2;
  box-shadow: var(--shadow-soft);
}

.adv-banner-card:first-child:last-child {
  grid-column: 1 / -1;
}

a.adv-banner-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.adv-banner-card:hover {
  transform: translateY(-2px);
}

.adv-banner-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.adv-banner-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tg-banner {
  padding: 0 32px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(74, 136, 235, 0.96) 0%, rgba(74, 136, 235, 0.96) 100%),
    var(--tg-banner-bg) center / cover no-repeat;
  background-image:
    linear-gradient(90deg, rgba(74, 136, 235, 0.96) 0%, rgba(74, 136, 235, 0.96) 100%),
    var(--tg-banner-bg);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.tg-banner--warm {
  background:
    linear-gradient(90deg, rgba(220, 109, 34, 0.96) 0%, rgba(241, 128, 38, 0.96) 100%),
    var(--tg-banner-bg) center / cover no-repeat;
  background-image:
    linear-gradient(90deg, rgba(220, 109, 34, 0.96) 0%, rgba(241, 128, 38, 0.96) 100%),
    var(--tg-banner-bg);
}

.tg-banner--plain {
  background: #4a88eb;
  background-image: var(--tg-banner-bg);
  background-position: center;
  background-size: cover;
}

.tg-banner__body {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tg-banner__title {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.tg-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 128px;
  min-height: 0;
  padding: 11px 19px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(60, 121, 219, 0.18);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tg-banner__button-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.tg-banner__button--light {
  background: #ffffff;
  color: #101214;
  box-shadow: 0 10px 24px rgba(12, 18, 28, 0.12);
}

.tg-banner__button--light .tg-banner__button-icon {
  filter: brightness(0) saturate(100%);
}

.tg-banner__button.tg-banner__button--light:hover {
  background: #ffffff;
  color: #101214;
  box-shadow: 0 10px 24px rgba(12, 18, 28, 0.12);
}

.tg-banner--with-game {
  min-height: 168px;
  padding: 20px 34px;
}

.tg-banner__body--with-game {
  min-height: 128px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.tg-banner__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.tg-banner--with-game .tg-banner__title {
  max-width: 420px;
  font-size: 24px;
}

.tg-banner--with-game .tg-banner__button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
}

.tg-banner-match {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 24px;
  min-width: 372px;
}

.tg-banner-match__team {
  display: flex;
  justify-content: center;
}

.tg-banner-match__logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(7, 20, 34, 0.14);
  overflow: hidden;
}

.tg-banner-match__logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.tg-banner-match__logo span {
  color: #0d2236;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.tg-banner-match__center {
  min-width: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tg-banner-match__date {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.tg-banner-match__score {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.text-content-page {
  padding-top: 0px;
}

.text-detail-hero {
  position: relative;
  padding: 34px 0 0;
}

.text-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 800px;
  background:
    linear-gradient(180deg, rgba(8, 13, 18, 0.86) 0%, rgba(8, 13, 18, 0.66) 26%, rgba(232, 232, 232, 0) 64%),
    linear-gradient(90deg, rgba(7, 10, 14, 0.78) 0%, rgba(7, 10, 14, 0.1) 18%, rgba(7, 10, 14, 0.1) 82%, rgba(7, 10, 14, 0.78) 100%),
    var(--text-detail-bg) center top / cover no-repeat;
  pointer-events: none;
}

.text-detail-hero .custom-container {
  position: relative;
  z-index: 1;
}

.text-detail-card {
    margin: 0 auto;
    padding: 30px 30px 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 13, 18, 0.08);
}

.text-detail-card__breadcrumbs {
  margin-bottom: 10px;
}

.text-detail-card__breadcrumbs .breadcrumbs-list__link,
.text-detail-card__breadcrumbs .breadcrumbs-list__current {
  font-size: 15px;
}

.text-detail-card__breadcrumbs .breadcrumbs-list__current {
  color: #5a6068;
}

.text-detail-card__date {
  display: block;
  color: #9ba1a8;
  font-size: 12px;
  line-height: 1.2;
}

.text-detail-card__title {
  margin: 8px 0 0;
  color: #15191d;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
}

.text-detail-card__media {
  position: relative;
  margin-top: 18px;
  aspect-ratio: 808 / 454;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #10151a 0%, #1b232d 100%);
}

.text-detail-card__image,
.text-detail-card__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.text-detail-card__image {
  object-fit: cover;
}

.text-detail-card__media-placeholder {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 204, 85, 0.22) 0%, rgba(255, 204, 85, 0) 24%),
    linear-gradient(180deg, rgba(19, 24, 32, 0.96) 0%, rgba(12, 16, 22, 0.98) 100%);
}

.text-detail-card__lead {
  margin: 14px 0 0;
  color: #4d535a;
  font-size: 14px;
  line-height: 1.42;
}

.text-detail-attached {
  margin-top: 18px;
  padding: 18px 22px 18px 38px;
  border-radius: 16px;
  background: #f3f5f8;
  border-left: 4px solid var(--accent);
}

.text-detail-attached__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-detail-attached__icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.text-detail-attached__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.text-detail-attached__title {
  color: var(--accent);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.text-detail-attached__content {
  margin-top: 10px;
  color: #434950;
  font-size: 14px;
  line-height: 1.42;
}

.text-detail-card__content {
  margin-top: 20px;
  color: #1f2429;
  font-size: 17px;
  line-height: 1.58;
}

.text-detail-card__content > :first-child {
  margin-top: 0;
}

.text-detail-card__content > :last-child {
  margin-bottom: 0;
}

.text-detail-card__content .richtext-heading {
  margin: 26px 0 12px;
  color: #171b20;
  font-size: 24px;
  line-height: 1.24;
  font-weight: 700;
}

.text-detail-card__content p,
.text-detail-card__content ul,
.text-detail-card__content ol,
.text-detail-card__content blockquote {
  margin: 0 0 18px;
}

.text-detail-card__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 22px auto;
  border-radius: 18px;
}

.text-detail-card__content a {
  color: var(--accent);
}

.text-detail-quote {
  position: relative;
  margin: 24px 0 0;
  padding: 34px 70px 34px 52px;
  border-radius: 16px;
  background: #f3f5f8;
}

.text-detail-quote::before,
.text-detail-quote::after {
  position: absolute;
  color: var(--accent);
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
}

.text-detail-quote::before {
  content: "“";
  top: 12px;
  left: 18px;
}

.text-detail-quote::after {
  content: "”";
  right: 18px;
  bottom: 8px;
}

.text-detail-quote p {
  margin: 0;
  color: #434950;
  font-size: 16px;
  line-height: 1.56;
}

.text-detail-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eceef2;
}

.text-detail-card__footer-date {
  color: #b0b6bc;
  font-size: 13px;
  line-height: 1.2;
}

.text-detail-card__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 45px;
  padding: 0 21px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.text-detail-card__footer-link img {
  display: block;
  width: 14px;
  height: 14px;
}

.text-detail-promos-section {
  padding-top: 14px;
}

.text-detail-promos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.text-top-banner {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 168px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.text-top-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.text-top-banner--telegram {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(135deg, #79b1ff 0%, #005cb4 100%);
}

.text-top-banner--telegram::before {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 46%);
}

.text-top-banner--accent {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(135deg, #23231f 0%, #f0ca3d 100%);
}

.text-top-banner--accent::before {
  background:
    radial-gradient(circle at 76% 30%, rgba(255, 245, 179, 0.38) 0%, rgba(255, 245, 179, 0) 18%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 42%);
}

.text-top-banner__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 168px;
  padding: 20px 24px;
}

.text-top-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f141a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.text-top-banner__copy {
  display: grid;
  gap: 6px;
  max-width: 260px;
  color: #ffffff;
}

.text-top-banner__copy strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.text-top-banner__copy span {
  font-size: 18px;
  line-height: 1.18;
  font-weight: 700;
}

.text-top-banner__image {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 104px;
  height: 104px;
  object-fit: contain;
  opacity: 0.92;
  pointer-events: none;
}

.content-related-section {
  padding-top: 18px;
}

.content-related-shell {
    padding: 80px 55px 30px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.content-related-shell__heading {
  display: flex;
  justify-content: center;
}

.content-related-shell__heading h2 {
  margin: 0;
  color: #171b20;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
}

.content-related-shell .content-grid {
  margin-top: 28px;
}

.content-related-shell .content-grid--news,
.content-related-shell .content-grid--articles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.articles-promo {
  min-height: 412px;
  padding: 36px 26px 28px;
  border-radius: 28px;
  background: #ffffff url("../images/bg_articles.png") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.articles-promo__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
}

.articles-promo__icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.articles-promo__heading {
  margin-top: 22px;
}

.articles-promo__heading h2 {
  margin: 0;
  color: #11181f;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
}

.articles-promo__heading h2 span {
  color: var(--accent-strong);
}

.articles-promo__cta {
  margin-top: 24px;
}

.site-footer {
  margin-top: 28px;
  padding: 37px 0 0;
  background: #02070b;
}

body.page-404 .site-footer {
  margin-top: 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 96px;
  padding: 37px 0 34px;
}

.site-footer__brand-area {
  max-width: 536px;
}

.site-footer__brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 205px;
  flex-shrink: 0;
}

.site-footer__logo-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-footer__telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 184px;
  height: 38px;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, #5999f8 0%, #3f7fe1 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.site-footer__telegram-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.site-footer__offer {
  display: block;
  margin-top: 48px;
  width: 238px;
  height: 138px;
  border-radius: 23px;
  overflow: hidden;
}

.site-footer__offer-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
}

.site-footer__column-title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
}

.site-footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__column li + li {
  margin-top: 16px;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-footer__bottom {
  min-height: 71px;
  padding: 20px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom p,
.site-footer__meta a {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
}

.site-footer__meta a {
  transition: color 180ms ease;
}

.site-footer__traff {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  flex-wrap: wrap;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.54);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 375px);
  height: 100%;
  padding: 14px 16px 24px;
  overflow-y: auto;
  background: #040506;
  transform: translateX(100%);
  box-shadow: -18px 0 42px rgba(3, 7, 10, 0.42);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.tg-button--menu {
  width: 56px;
  min-width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 18px;
  box-shadow: none;
}

.mobile-menu__nav {
  margin-top: 18px;
  padding-bottom: 16px;
}

.mobile-menu__entry + .mobile-menu__entry {
  margin-top: 12px;
}

.mobile-menu__link {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #151d23;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mobile-menu__link.is-active {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
}

.mobile-menu__link--submenu {
  cursor: pointer;
}

.mobile-menu__icon {
  width: 20px;
  height: 20px;
  background-color: #2f3941;
}

.mobile-menu__link.is-active .mobile-menu__icon {
  background-color: #ffffff;
}

.mobile-menu__caret {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 280ms ease;
}

.mobile-menu__caret svg {
  display: block;
  width: 16px;
  height: 16px;
}

.mobile-menu__entry--has-submenu:not(.is-expanded) .mobile-menu__caret {
  transform: rotate(180deg);
}

.tg-button:hover,
.tg-banner__button:hover,
.section-cta:hover,
.match-card__button--filled:hover,
.match-center__button:hover,
.all-match-card__button:hover,
.forever-bonuses-row__link:hover,
.nav-chip:hover,
.mobile-menu__link:hover {
  background: linear-gradient(180deg, var(--hover_color) 0%, var(--hover_color) 100%);
  color: #fff;
}

.match-card__button--ghost:hover,
.bonus-card__link:hover {
  border-color: var(--hover_color);
  color: var(--hover_color);
}

.bonus-card__link:hover .bonus-card__link-icon {
  opacity: 0.78;
}

.bonus-controls__button:hover {
  background: var(--hover_color);
  color: #fff;
}

.site-footer__column a:hover,
.site-footer__meta a:hover {
  color: var(--hover_color);
}

.mobile-menu__submenu-shell {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transition:
    grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    margin-top 220ms ease;
}

.mobile-menu__entry--has-submenu.is-expanded .mobile-menu__submenu-shell {
  grid-template-rows: 1fr;
  margin-top: 12px;
  opacity: 1;
}

.mobile-menu__submenu {
  min-height: 0;
  overflow: hidden;
  padding: 0 2px;
}

.mobile-menu__subitem {
  min-height: 52px;
  padding: 0 8px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f1f5f8;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-menu__subitem:last-child {
  border-bottom: 0;
}

.mobile-menu__subitem-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

@media (max-width: 1439px) {
  .header-shell {
    padding: 16px 0 18px;
  }

  .custom-container {
    width: min(1318px, calc(100vw - 48px));
  }

  .header-bar--wide,
  .desktop-nav {
    display: none;
  }

  .header-bar--compact {
    display: flex;
  }

  .hero-banner__content h1,
  .section-head h2,
  .bonus-shell__title h2,
  .match-center__head h2,
  .bk-rating__heading h2,
  .why-us__heading h2,
  .reviews-shell__heading h2 {
    font-size: 36px;
  }

  .hero-row {
    --bs-gutter-x: 16px;
  }

  .hero-section {
    padding-top: 74px;
  }

  .hero-banner {
    min-height: 380px;
  }

  .hero-banner__surface {
    border-radius: 24px;
  }

  .hero-banner__content {
    max-width: 454px;
    padding: 74px 0 34px 46px;
  }

  .hero-banner--matches .hero-banner__content {
    min-height: 262px;
  }

  .hero-banner__text {
    margin-top: 10px;
    max-width: 292px;
  }

  .hero-banner__button {
    margin-top: 26px;
    height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    gap: 11px;
    font-size: 16px;
  }

  .hero-banner__button .icon {
    width: 20px;
    height: 20px;
  }

  .hero-banner__players {

    width: min(38vw, 476px);
  }

  .hero-news {
    border-radius: 24px;
    padding: 14px 16px 12px;
  }

  .hero-news__item {
    padding: 14px 0 12px;
  }

  .hero-news__item p {
    font-size: 16px;
    margin: 0;
  }

  .match-center-shell {
    padding: 20px 16px 16px;
    border-radius: 20px;
  }

  .match-center__head {
    min-height: 36px;
  }

  .match-center__status-tabs {
    margin-top: 18px;
  }

  .match-center__accordions {
    margin-top: 18px;
  }

  .bk-rating-shell {
    min-height: 392px;
    padding: 24px 24px 24px;
    border-radius: 20px;
  }

  .bk-rating__heading::before {
    width: 210px;
  }

  .bk-rating__panel {
    max-width: 560px;
    margin-top: 24px;
  }

  .bk-rating__row {
    grid-template-columns: 18px 14px minmax(0, 1fr) auto minmax(0, 144px) 20px;
    gap: 10px;
    padding: 0 12px;
  }

  .why-us-shell {
    padding: 48px 34px 74px;
  }

  .why-us__brand-frame {
    width: 244px;
    height: 88px;
  }

  .why-us__brand-logo {
    width: 168px;
  }

  .why-us__heading {
    margin-top: 26px;
  }

  .why-us__text {
    margin-top: 22px;
    max-width: 930px;
    font-size: 16px;
  }

  .why-us__grid {
    margin-top: 84px;
    gap: 16px;
  }

  .why-us-card {
    min-height: 236px;
    padding: 108px 20px 24px;
  }

  .why-us-card__badge {
    width: 160px;
    top: -80px;
  }

  .reviews-section {
    margin-top: 26px;
  }

  .site-body.page-home .reviews-section {
    margin-top: -26px;
  }

  .reviews-shell {
    padding: 62px 24px 30px;
  }

  .reviews-shell__cup--big {
    top: 34px;
    left: -8px;
    width: 112px;
  }

  .reviews-shell__cup--small {
    top: 96px;
    right: 2px;
    width: 100px;
  }

  .reviews-shell__tabs {
    margin-top: 24px;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 36px) / 4);
    gap: 12px;
  }

  .review-card {
    min-height: 320px;
    padding: 22px 20px 24px;
  }

  .content-shell {
    padding: 28px 18px 22px;
  }

  .content-filters {
    margin-top: 24px;
  }

  .content-grid--news {
    gap: 16px;
  }

  .text-detail-hero {
    padding: 0;
  }

  .text-detail-hero::before {
    display: none;
  }

  .text-detail-card {
    max-width: 880px;
  }

  .text-detail-card__breadcrumbs {
    margin-bottom: 8px;
  }

  .text-detail-card__title {
    font-size: 28px;
  }

  .text-detail-card__content {
    font-size: 16px;
  }

  .text-detail-promos-grid {
    gap: 16px;
  }

  .text-top-banner {
    min-height: 148px;
    border-radius: 20px;
  }

  .text-top-banner__body {
    min-height: 148px;
    padding: 18px 20px;
  }

  .text-top-banner__copy strong {
    font-size: 24px;
  }

  .text-top-banner__copy span {
    font-size: 16px;
  }

  .content-related-shell {
    padding: 30px 24px 26px;
  }

  .content-related-shell__heading h2 {
    font-size: 36px;
  }

  .content-card__title {
    font-size: 17px;
  }

  .content-card__excerpt,
  .content-card__date {
    font-size: 15px;
  }

  .articles-showcase {
    grid-template-columns: 456px minmax(0, 1fr);
    gap: 18px;
  }

  .articles-promo {
    min-height: 372px;
    padding: 28px 22px 24px;
  }

  .articles-promo__icon-wrap {
    width: 90px;
    height: 90px;
  }

  .articles-promo__icon {
    width: 60px;
    height: 60px;
  }

  .content-listing-shell {
    padding: 34px 22px 24px;
  }

  .content-listing-shell__heading h1 {
    font-size: 36px;
  }

  .content-listing-shell__filters {
    margin-top: 28px;
  }

  .content-listing-shell .content-grid {
    gap: 0 22px;
  }

  .latest-news-section {
    margin-top: 24px;
  }

  .latest-news-feature {
    grid-template-columns: minmax(0, 1fr) 344px;
    gap: 16px 24px;
    padding: 20px 22px;
  }

  .latest-news-feature__title {
    font-size: 18px;
  }

  .latest-news-feature__excerpt {
    font-size: 15px;
  }

  .latest-news-feature__media {
    aspect-ratio: 344 / 172;
  }

  .latest-news-feature__cta {
    min-width: 150px;
    min-height: 48px;
  }

  .tg-banner__title {
    font-size: 19px;
  }

  .site-footer {
    margin-top: 24px;
    padding-top: 34px;
  }

  .site-footer__inner {
    gap: 58px;
    padding: 30px 0 28px;
  }

  .site-footer__brand-row {
    gap: 18px;
  }

  .site-footer__logo {
    width: 186px;
  }

  .site-footer__offer {
    margin-top: 38px;
  }

  .site-footer__nav {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
  }

  .site-footer__column-title {
    font-size: 18px;
  }

  .site-footer__column a {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .site-logo--compact {
    width: 131px;
    height: 56px;
  }

  .hero-banner__surface {
    background-position: right;
  }

  .hero-banner__text {
    margin-top: 50px;
    max-width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: rgb(189 189 189);
  }
}

@media (min-width: 1200px) {
  .site-logo--compact {
      width: 200px;
      height: 64px;
  }
  .hero-news-col {
    width: 300px;
    flex: 0 0 auto;
  }
}

@media (min-width: 1440px) {
  .hero-news-col {
    width: 418px;
  }
}

@media (max-width: 1024px) {

  .custom-container {
    width: min(736px, calc(100vw - 32px));
  }

  .home-page {
    padding-top: 10px;
  }

  .hero-banner {
            min-height: 288px;
  }

  .hero-banner__content {
    max-width: 390px;
    padding: 96px 0 42px 42px;
  }

  .hero-banner__content h1 {
    font-size: 28px;
  }

  .hero-banner__text {
    margin-top: 12px;
    max-width: 252px;
    font-size: 16px;
  }

  .hero-banner__button {
    margin-top: 26px;
    height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 17px;
  }

  .hero-banner__button .icon {
    width: 22px;
    height: 22px;
  }

  .hero-banner__players {
    top: -56px;
    right: 20px;
    width: 392px;
  }

  .section-head h2,
  .bonus-shell__title h2,
  .match-center__head h2,
  .bk-rating__heading h2,
  .why-us__heading h2,
  .reviews-shell__heading h2 {
    font-size: 28px;
  }

  .hero-news {
    border-radius: 24px;
    padding: 12px 18px 10px;
  }

  .hero-news__item {
    padding: 16px 0 14px;
  }

  .hero-news__item p {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .match-center-shell {
    padding: 18px 14px 16px;
  }

  .match-center__head {
    justify-content: flex-start;
    min-height: 32px;
  }

  .match-center__status-tabs {
    justify-content: flex-start;
  }

  .match-center__league-summary,
  .match-center__game--featured {
    padding-left: 12px;
    padding-right: 12px;
  }

  .match-center__game--featured {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .match-center__game-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .match-center__match-line {
    width: 100%;
  }

  .match-center__odds {
    width: 100%;
  }

  .match-center__accordions {
    margin-top: 18px;
  }

  .bk-rating-shell {
    min-height: 340px;
    padding: 22px 20px 22px;
  }

  .bk-rating__panel {
    max-width: 100%;
    margin-top: 20px;
  }

  .bk-rating__row {
    grid-template-columns: 18px 14px minmax(0, 1fr) auto minmax(0, 112px) 10px;
    min-height: 40px;
  }

  .bk-brand {
    font-size: 16px;
  }

  .why-us-shell {
    padding: 34px 22px 58px;
  }

  .why-us__brand-frame {
    width: 212px;
    height: 78px;
    border-radius: 18px;
  }

  .why-us__brand-logo {
    width: 146px;
  }

  .why-us__heading {
    margin-top: 22px;
  }

  .why-us__text {
    margin-top: 18px;
    max-width: 640px;
    font-size: 16px;
  }

  .why-us__grid {
    margin-top: 72px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
  }

  .why-us-card {
    min-height: 212px;
    padding: 96px 18px 22px;
  }

  .why-us-card__badge {
    width: 130px;
    top: -65px;
  }

  .why-us-card strong {
    font-size: 20px;
  }

  .why-us-card p {
    font-size: 16px;
  }

  .reviews-section {
    margin-top: 22px;
  }

  .site-body.page-home .reviews-section {
    margin-top: -22px;
  }

  .reviews-shell {
    padding: 56px 20px 24px;
  }

  .reviews-shell__tabs {
    margin-top: 22px;
  }

  .reviews-shell__tab {
    min-width: 153px;
    height: 42px;
    padding: 0 16px;
    font-size: 16px;
  }

  .reviews-carousel {
    margin-top: 30px;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
  }

  .review-card {
    min-height: 286px;
    padding: 20px 18px 22px;
  }

  .review-card__name,
  .review-card__rate,
  .review-card p {
    font-size: 16px;
  }

  .faq-section {
    padding-top: 28px;
  }

  .faq-shell {
    padding: 34px 24px 24px;
  }

  .faq-shell__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-shell__intro {
    text-align: center;
  }

  .faq-shell__intro h2 {
    font-size: 36px;
  }

  .pros-cons-section {
    padding-top: 28px;
  }

  .pros-cons-shell {
    padding: 30px 18px 24px;
  }

  .pros-cons-shell__title {
    font-size: 36px;
  }

  .pros-cons-grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pros-cons-card {
    min-height: 0;
    padding: 30px 28px 28px;
    border-radius: 22px;
  }

  .pros-cons-card__list {
    margin-top: 28px;
    gap: 14px;
  }

  .bottom-block-section {
    padding-top: 28px;
  }

  .bottom-block-shell {
    padding: 34px 22px 28px;
  }

  .bottom-block__heading h2 {
    font-size: 36px;
  }

  .bottom-block__content {
    margin-top: 24px;
    font-size: 15px;
  }

  .bottom-block__content .richtext-heading--h1,
  .bottom-block__content .richtext-heading--h2 {
    font-size: 20px;
  }

  .bottom-block__content .richtext-heading--h3,
  .bottom-block__content .richtext-heading--h4,
  .bottom-block__content .richtext-heading--h5,
  .bottom-block__content .richtext-heading--h6 {
    font-size: 17px;
  }

  .content-shell {
    padding: 26px 16px 20px;
  }

  .content-filters {
    margin-top: 22px;
  }

  .content-grid--news,
  .content-grid--articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
  }

  .text-detail-hero {
    padding: 0;
  }

  .text-detail-hero::before {
    display: none;
  }

  .text-detail-card {
    padding: 14px 14px 18px;
    border-radius: 22px;
  }

  .text-detail-card__breadcrumbs {
    margin-bottom: 7px;
  }

  .text-detail-card__title {
    font-size: 28px;
  }

  .text-detail-card__content {
    font-size: 15px;
  }

  .text-detail-card__content .richtext-heading {
    font-size: 20px;
  }

  .text-detail-quote {
    padding: 30px 54px 28px 44px;
  }

  .text-detail-promos-grid {
    gap: 14px;
  }

  .text-top-banner {
    min-height: 132px;
    border-radius: 18px;
  }

  .text-top-banner__body {
    min-height: 132px;
    padding: 16px 18px;
  }

  .text-top-banner__copy strong {
    font-size: 22px;
  }

  .text-top-banner__copy span {
    font-size: 15px;
  }

  .text-top-banner__image {
    width: 78px;
    height: 78px;
  }

  .content-related-shell {
    padding: 28px 20px 24px;
  }

  .content-related-shell__heading h2 {
    font-size: 32px;
  }

  .content-card__title {
    font-size: 16px;
  }

  .content-card__excerpt,
  .content-card__date {
    font-size: 15px;
  }

  .articles-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .articles-promo {
    min-height: 136px;
    padding: 18px 18px;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    align-items: center;
    justify-content: start;
    text-align: left;
    gap: 14px;
    background-position: top;
  }

  .articles-promo__icon-wrap {
    width: 76px;
    height: 76px;
  }

  .articles-promo__icon {
    width: 52px;
    height: 52px;
  }

  .articles-promo__heading {
    margin-top: 0;
  }

  .articles-promo__heading h2 {
    font-size: 24px;
    line-height: 1.16;
  }

  .articles-promo__cta {
    margin-top: 0;
    justify-self: end;
  }

  .content-listing-shell {
    padding: 28px 18px 22px;
  }

  .content-listing-shell__heading h1 {
    font-size: 28px;
  }

  .content-listing-shell__filters {
    margin-top: 24px;
  }

  .content-listing-shell .content-grid {
    margin-top: 20px;
  }

  .content-listing-shell__footer {
    margin-top: 22px;
  }

  body.page-news .content-listing-shell__filters,
  body.page-articles .content-listing-shell__filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  body.page-news .content-listing-shell__filters::-webkit-scrollbar,
  body.page-articles .content-listing-shell__filters::-webkit-scrollbar {
    display: none;
  }

  body.page-news .content-filter,
  body.page-articles .content-filter {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 18px;
    white-space: nowrap;
    font-size: 16px;
  }

  body.page-news .content-grid--news,
  body.page-articles .content-grid--article-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.page-news .content-card--news,
  body.page-articles .content-card--article-list {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
    padding: 0 0 18px;
    border-bottom: 1px solid #ebedf0;
  }

  body.page-news .content-card--news .content-card__media,
  body.page-articles .content-card--article-list .content-card__media {
    width: 204px;
    min-width: 204px;
    aspect-ratio: 204 / 118;
    border-radius: 16px;
  }

  body.page-news .content-card--news .content-card__media-icon,
  body.page-articles .content-card--article-list .content-card__media-icon {
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
  }

  body.page-news .content-card--news .content-card__media-icon img,
  body.page-articles .content-card--article-list .content-card__media-icon img {
    width: 18px;
    height: 18px;
  }

  body.page-news .content-card--news .content-card__body,
  body.page-articles .content-card--article-list .content-card__body {
    margin-top: 0;
    min-width: 0;
    padding-top: 4px;
  }

  body.page-news .content-card--news .content-card__title,
  body.page-articles .content-card--article-list .content-card__title {
    display: -webkit-box;
    overflow: hidden;
    color: #343639;
    font-size: 16px;
    line-height: 1.26;
    font-weight: 700;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  body.page-news .content-card--news .content-card__excerpt,
  body.page-articles .content-card--article-list .content-card__excerpt {
    margin-top: 10px;
    color: #9b9da0;
    font-size: 14px;
    line-height: 1.32;
    -webkit-line-clamp: 2;
  }

  body.page-news .content-card--news .content-card__date,
  body.page-articles .content-card--article-list .content-card__date {
    margin-top: 8px;
    color: #9b9da0;
    font-size: 14px;
    line-height: 1.25;
  }

  .latest-news-section {
    margin-top: 20px;
  }

  .latest-news-feature {
    grid-template-columns: minmax(0, 1fr) 328px;
    gap: 14px 22px;
    padding: 18px 18px 20px;
    border-radius: 24px;
  }

  .latest-news-feature__meta {
    gap: 16px;
  }

  .latest-news-feature__title {
    font-size: 17px;
  }

  .latest-news-feature__excerpt,
  .latest-news-feature__date {
    font-size: 15px;
  }

  .latest-news-feature__media {
    aspect-ratio: 328 / 172;
  }

  .latest-news-feature__cta {
    min-width: 142px;
    min-height: 46px;
    border-radius: 12px;
  }

  .adv-banners-section,
  .tg-banner-section {
    margin-top: 16px;
  }

  .adv-banners-grid {
    gap: 20px;
  }

  .adv-banner-card {
    border-radius: 18px;
  }

  .tg-banner {
    min-height: 194px;
    padding: 18px 22px;
    border-radius: 24px;
  }

  .tg-banner__body {
    min-height: 158px;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }

  .tg-banner__title {
    max-width: 520px;
    font-size: 20px;
  }

  .tg-banner--with-game {
    min-height: 246px;
    padding: 22px;
  }

  .tg-banner__body--with-game {
    min-height: 202px;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .tg-banner__content {
    gap: 16px;
  }

  .tg-banner--with-game .tg-banner__title {
    max-width: 560px;
    font-size: 22px;
  }

  .tg-banner-match {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    gap: 18px;
  }

  .tg-banner-match__logo {
    width: 86px;
    height: 86px;
  }

  .tg-banner-match__logo img {
    width: 54px;
    height: 54px;
  }

  .tg-banner-match__center {
    min-width: 116px;
    gap: 8px;
  }

  .tg-banner-match__date {
    font-size: 14px;
  }

  .tg-banner-match__score {
    font-size: 36px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__brand-area {
    max-width: none;
  }

  .site-footer__brand-row {
    justify-content: flex-start;
    gap: 20px;
  }

  .site-footer__offer {
    margin-top: 28px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-footer__meta {
    justify-content: flex-start;
    gap: 18px 26px;
  }

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

  .bonus-track {
    grid-auto-columns: 360px;
    gap: 16px;
    padding-right: 24px;
  }

  .bonus-shell__top {
    min-height: 184px;
    padding: 0 24px;
  }

  .bonus-shell__mark-image {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
  }

  .bonus-card {
    min-height: 436px;
    border-radius: 20px;
  }

  .bonus-card__poster {
    height: 210px;
  }

  .bonus-card__meta {
    gap: 14px;
  }

  .bonus-card__chip {
    height: 40px;
    padding: 0 15px;
    font-size: 15px;
  }

  .bonus-card__brand {
    max-width: calc(100% - 150px);
    font-size: 22px;
  }

  .bonus-card__body {
    min-height: 226px;
    padding: 16px 16px 18px;
  }

  .bonus-card__body p {
    min-height: 86px;
  }

  .bonus-filters {
    padding: 4px 10px;
  }

  .bonus-shell--listing .bonus-carousel {
    padding: 0 24px;
  }

  .bonus-shell--listing .bonus-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .bonus-shell__footer {
    padding: 24px 24px 0;
  }

  .forever-bonuses-section {
    padding-top: 28px;
  }

  .forever-bonuses-shell {
    padding: 42px 24px 28px;
  }

  .forever-bonuses-shell__title {
    font-size: 36px;
  }

  .forever-bonuses-table {
    margin-top: 30px;
  }

  .forever-bonuses-table__head--desktop {
    display: none;
  }

  .forever-bonuses-table__head--tablet {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.84fr) minmax(0, 1.45fr);
    padding: 0 18px;
  }

  .forever-bonuses-row {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.84fr) minmax(0, 1.45fr);
  }

  .forever-bonuses-row__cell {
    min-height: 124px;
    padding: 22px 16px;
  }

  .forever-bonuses-row__cell--bookmaker {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .forever-bonuses-row__cell--link {
    display: none;
  }

  .forever-bonuses-row__link--inline {
    display: inline-flex;
    min-width: 118px;
    min-height: 34px;
    padding: 0 18px;
    font-size: 15px;
  }

  .forever-bonuses-row__title {
    font-size: 16px;
  }

  .forever-bonuses-row__cell--title p,
  .forever-bonuses-row__brand,
  .forever-bonuses-row__quote p {
    font-size: 15px;
  }

  .forever-bonuses-row__quote {
    padding-left: 22px;
  }

  .forever-bonuses-row__quote::before {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .bonus-shell{
    background-position: right;
  }

  .custom-container {
    width: 100%;
  }

  .header-shell {
    padding: 0 0 12px;
  }

  .header-bar--compact {
    min-height: 86px;
    padding: 14px 0 12px;
  }

  .tg-button--compact {
    width: 58px;
    min-width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 18px;
  }

  .tg-button__label {
    display: none;
  }

  .site-logo--compact {
    width: 178px;
    height: 60px;
  }

  .site-logo--menu {
    width: 178px;
    height: 60px;
  }

  .mobile-menu__bar {
    min-height: 86px;
    padding-bottom: 10px;
  }

  .menu-toggle {
    width: 28px;
    height: 20px;
  }

  .menu-toggle span {
    height: 2px;
  }

  .menu-toggle span:nth-child(1) {
    top: 1px;
  }

  .menu-toggle span:nth-child(2) {
    top: 9px;
  }

  .menu-toggle span:nth-child(3) {
    bottom: 1px;
  }

  .menu-close {
    width: 24px;
    height: 24px;
  }

  .menu-close span {
    left: 1px;
    width: calc(100% - 2px);
    height: 2px;
  }

  .menu-close span:nth-child(1),
  .menu-close span:nth-child(2) {
    top: 11px;
  }

  .hero-section {
    padding-top: 22px;
  }

  .hero-row {
    --bs-gutter-x: 0;
  }

  .matches-section,
  .bonuses-section,
  .match-center-section,
  .bk-rating-section,
  .why-us-section,
  .reviews-section {
    padding-top: 12px;
  }

  .hero-banner {
    min-height: 552px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(15, 24, 35, 0.14);
  }

  .hero-banner__surface {
    border-radius: 28px;
    background-image: var(--hero-banner-bg-mobile, var(--hero-banner-bg));
  }

  .hero-banner__content {
    max-width: 270px;
    padding: 30px 22px 0 24px;
  }

  .hero-banner--matches .hero-banner__content {
    min-height: 552px;
  }

  .hero-banner__content h1 {
    font-size: 28px;
    line-height: 1.1;
  }

  .hero-banner__text {
    margin-top: 10px;
    max-width: 220px;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero-banner__button {
    margin-top: 22px;
    gap: 12px;
    height: 58px;
    padding: 0 24px;
    border-radius: 18px;
    font-size: 17px;
  }

  .hero-banner__button .icon {
    width: 24px;
    height: 24px;
  }

  .hero-banner__players {
    top: auto;
    right: -4px;
    bottom: 0;
    width: 286px;
  }

  .hero-news,
  .section-card,
  .bonus-shell {
    border-radius: 28px;
  }

  .hero-news {
    padding: 14px 20px 16px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 24, 35, 0.08);
  }

  .hero-news__item {
    padding: 18px 0 16px;
  }

  .hero-news__item p {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.24;
  }

  .hero-news__item span {
    font-size: 13px;
  }

  .section-card {
    padding: 14px 10px 16px;
  }

  .section-head {
    margin-bottom: 10px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .section-cta--desktop {
    display: none;
  }

  .matches-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .match-card {
    min-height: 158px;
    padding: 8px;
    border-radius: 16px;
  }

  .match-card__meta {
    font-size: 15px;
  }

  .match-card__teams strong {
    font-size: 16px;
  }

  .club-logo {
    width: 24px;
    height: 24px;
  }

  .match-card__actions {
    margin-top: 18px;
  }

  .match-card__button {
    height: 34px;
    font-size: 15px;
  }

  .match-card__button--filled {
    padding: 0px 14px;
  }

  .match-card__button--ghost {
    padding: 0 11px;
  }

  .match-card__button-text--full {
    display: none;
  }

  .match-card__button-text--short {
    display: inline;
  }

  .match-card__footer .sm-overview-card__value-chip {
    height: 20px;
    font-size: 15px;
  }

  .section-cta-mobile-wrap {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .section-cta--mobile {
    display: inline-flex;
  }

  .bonus-shell {
    padding: 16px 0 18px;
  }

  .bonus-shell__top {
    min-height: 150px;
    padding: 10px 16px 14px;
  }

  .bonus-shell--listing .bonus-shell__top {
    min-height: 138px;
    padding-bottom: 8px;
  }

  .bonus-shell__mark-image {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .bonus-shell__title h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .bonus-carousel {
    padding-left: 12px;
  }

  .bonus-filters {
    margin: 22px auto 0;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0 16px 8px;
    background: transparent;
    border-radius: 0;
  }

  .bonus-filter {
    min-height: 44px;
    padding: 0 18px;
    border: none;
    background: transparent;
    color: #b3b3b3;
    font-size: 16px;
    font-weight: 600;
    box-shadow: none;
  }

  .content-filter-bk.bonus-filter.is-active {
    background: #ffffff;
    color: #11181f;
    box-shadow: 0 8px 22px rgba(17, 24, 31, 0.08);
  }

  .bonus-shell--listing .bonus-carousel {
    padding: 0 12px;
  }

  .bonus-track {
    grid-auto-columns: calc(100% - 28px);
    gap: 12px;
    padding-right: 12px;
  }

  .bonus-shell--listing .bonus-track {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: calc(100% - 28px);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0;
  }

  .bonus-card {
    min-height: 380px;
    border-radius: 22px;
  }

  .bonus-card__poster {
    height: 206px;
  }

  .bonus-card__meta {
    top: 12px;
    left: 12px;
    right: 12px;
    gap: 12px;
  }

  .bonus-card__chip {
    height: 38px;
    padding: 0 14px;
    font-size: 15px;
  }

  .bonus-card__brand {
    max-width: calc(100% - 138px);
    font-size: 18px;
  }

  .bonus-card__body {
    min-height: 174px;
    padding: 14px 14px 16px;
  }

  .bonus-card__body p {
    min-height: 72px;
    font-size: 15px;
  }

  .bonus-card__link {
    height: 44px;
    padding: 0 16px;
    font-size: 15px;
  }

  .bonus-card__link-icon {
    width: 16px;
    height: 16px;
  }

  .bonus-controls {
    margin-top: 14px;
    gap: 10px;
  }

  .bonus-controls__button {
    width: 44px;
    height: 36px;
  }

  .bonus-controls__icon {
    width: 16px;
    height: 16px;
  }

  .bonus-shell__footer {
    display: none;
  }

  .bonus-shell--listing .bonus-shell__footer {
    display: flex;
    padding: 16px 12px 0;
  }

  .bonus-shell--listing .bonus-controls {
    display: flex;
  }

  .forever-bonuses-section {
    padding-top: 24px;
  }

  .forever-bonuses-shell {
    padding: 28px 14px 18px;
  }

  .forever-bonuses-shell__title {
    font-size: 24px;
    line-height: 1.18;
  }

  .forever-bonuses-table {
    margin-top: 22px;
  }

  .forever-bonuses-table__head {
    display: none;
  }

  .forever-bonuses-row {
    display: flex;
    flex-direction: column;
    padding: 22px 18px 18px;
    border-radius: 24px;
    background: #f2f4f7;
  }

  .forever-bonuses-row + .forever-bonuses-row {
    margin-top: 16px;
  }

  .forever-bonuses-row__cell {
    min-height: auto;
    padding: 0;
    display: block;
    border: 0;
  }

  .forever-bonuses-row__cell + .forever-bonuses-row__cell {
    border-left: 0;
  }

  .forever-bonuses-row__cell--link {
    display: none;
  }

  .forever-bonuses-row__cell--title {
    order: 1;
  }

  .forever-bonuses-row__cell--bookmaker {
    order: 2;
    margin-top: 14px;
  }

  .forever-bonuses-row__brand {
    display: block;
    font-size: 18px;
    line-height: 1.25;
  }

  .forever-bonuses-row__link--inline {
    display: inline-flex;
    min-width: 206px;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 24px;
    font-size: 15px;
  }

  .forever-bonuses-row__title {
    font-size: 18px;
    line-height: 1.22;
  }

  .forever-bonuses-row__cell--title p {
    margin-top: 6px;
    font-size: 16px;
  }

  .forever-bonuses-row__cell--terms {
    order: 3;
    margin-top: 18px;
  }

  .forever-bonuses-row__quote {
    min-height: 102px;
    padding: 18px 52px 18px 24px;
    border-radius: 22px;
    background: #dce7fb;
  }

  .forever-bonuses-row__quote::before {
    content: none;
  }

  .forever-bonuses-row__quote::after {
    content: "”";
    position: absolute;
    right: 18px;
    bottom: 8px;
    color: var(--accent);
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
  }

  .forever-bonuses-row__quote p {
    font-size: 16px;
    line-height: 1.35;
  }

  .faq-section {
    padding-top: 24px;
  }

  .faq-shell {
    padding: 28px 12px 18px;
  }

  .faq-shell__layout {
    gap: 18px;
  }

  .faq-shell__intro h2 {
    font-size: 24px;
    line-height: 1.18;
    text-align: center;
  }

  .faq-shell__accordions {
    gap: 10px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-item__summary {
    min-height: 44px;
    padding: 0 14px;
  }

  .faq-item__summary span:first-child {
    font-size: 15px;
  }

  .faq-item__answer {
    padding: 0 14px 14px;
    font-size: 15px;
    line-height: 1.4;
  }

  .pros-cons-section {
    padding-top: 24px;
  }

  .pros-cons-shell {
    padding: 28px 12px 18px;
  }

  .pros-cons-shell__title {
    font-size: 24px;
    line-height: 1.18;
  }

  .pros-cons-grid {
    margin-top: 20px;
    gap: 12px;
  }

  .pros-cons-card {
    padding: 18px 16px 18px;
    border-radius: 20px;
  }

  .pros-cons-card__head {
    gap: 14px;
  }

  .pros-cons-card__badge {
    width: 28px;
    height: 28px;
    font-size: 22px;
  }

  .pros-cons-card__title {
    font-size: 16px;
  }

  .pros-cons-card__list {
    margin-top: 22px;
    gap: 12px;
  }

  .pros-cons-card__item {
    gap: 12px;
    font-size: 15px;
    line-height: 1.34;
  }

  .pros-cons-card__item-icon {
    width: 22px;
    height: 22px;
    font-size: 16px;
  }

  .bottom-block-section {
    padding-top: 24px;
  }

  .bottom-block-shell {
    padding: 28px 12px 18px;
  }

  .bottom-block__heading h2 {
    font-size: 24px;
    line-height: 1.18;
  }

  .bottom-block__content {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.36;
  }

  .bottom-block__content .richtext-heading--h1,
  .bottom-block__content .richtext-heading--h2 {
    margin-top: 18px;
    font-size: 18px;
  }

  .bottom-block__content .richtext-heading--h3,
  .bottom-block__content .richtext-heading--h4,
  .bottom-block__content .richtext-heading--h5,
  .bottom-block__content .richtext-heading--h6 {
    margin-top: 18px;
    font-size: 16px;
  }

  .bottom-block__content p {
    margin-bottom: 10px;
  }

  .match-center-shell {
    padding: 18px 10px 14px;
    border-radius: 18px;
  }

  .match-center__head {
    min-height: 28px;
    justify-content: flex-start;
  }

  .match-center__head h2 {
    font-size: 24px;
  }

  .match-center__cta--desktop {
    display: none;
  }

  .match-center__cta-bottom {
    margin-top: 12px;
    display: flex;
    justify-content: center;
  }

  .match-center__cta--mobile {
    display: inline-flex;
  }

  .match-center__status-tabs {
    margin-top: 16px;
    justify-content: flex-start;
  }

  .all-matches-shell__status-tabs,
  .match-center-shell--home .all-matches-shell__status-tabs {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .all-matches-shell__status-tabs::-webkit-scrollbar {
    display: none;
  }

  .all-matches-shell__status-tabs .match-center__status-tab:not(.is-hidden-by-date) {
    flex: 0 0 auto;
  }

  .match-center__status-tab {
    height: 30px;
    padding: 0 14px;
    font-size: 15px;
  }

  .match-center__sport-tabs {
    margin-top: 10px;
    padding-bottom: 2px;
  }

  .all-matches-shell__sport-tabs,
  .match-center-shell--home .all-matches-shell__sport-tabs {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .all-matches-shell__sport-tabs::-webkit-scrollbar {
    display: none;
  }

  .all-matches-shell__sport-tabs > * {
    flex: 0 0 auto;
  }

  .match-center-chip {
    height: 34px;
    padding: 0 12px;
    font-size: 15px;
  }

  .match-center-chip__image {
    width: 14px;
    height: 14px;
  }

  .match-center__accordions {
    margin-top: 14px;
  }

  .match-center__league {
    border-radius: 14px;
  }

  .match-center__league + .match-center__league {
    margin-top: 8px;
  }

  .match-center__league-summary {
    min-height: 40px;
    padding: 0 10px;
  }

  .match-center__league-main {
    gap: 8px;
    font-size: 15px;
  }

  .match-center__odds-head {
    width: 84px;
    gap: 4px;
    font-size: 15px;
  }

  .match-center__game--featured {
    padding: 10px;
    gap: 10px;
    min-height: 0;
  }

  .match-center__game-body {
    display: flex;
    gap: 10px;
  }

  .match-center__match-line {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 8px;
    grid-template-areas:
      "time home score"
      ". away score";
    align-items: start;
  }

  .match-center__time {
    font-size: 15px;
    grid-area: time;
  }

  .match-center__team {
    font-size: 15px;
    line-height: 1.28;
    white-space: normal;
  }

  .match-center__team--home {
    grid-area: home;
  }

  .match-center__team--away {
    grid-area: away;
  }

  .match-center__score {
    min-width: 48px;
    height: 30px;
    padding: 0 8px;
    font-size: 15px;
    grid-area: score;
    align-self: center;
  }

  .match-center__button {
    height: 32px;
    padding: 0 14px;
    font-size: 15px;
  }

  .match-center__button-icon,
  .section-cta__icon {
    width: 14px;
    height: 14px;
  }

  .match-center__odds {
    gap: 6px;
  }

  .match-center__odds span {
    height: 30px;
    font-size: 15px;
  }

  .bk-rating-shell {
    min-height: 0;
    padding: 24px 14px 18px;
    border-radius: 28px;
    background-position: center top;
  }

  .bk-rating__heading::before {
    top: 16px;
    width: 188px;
    height: 10px;
  }

  .bk-rating__heading h2 {
    font-size: 36px;
  }

  .bk-rating__panel {
    margin-top: 22px;
    padding: 10px;
    border-radius: 24px;
  }

  .bk-rating__row {
    grid-template-columns: 24px 24px minmax(0, 1fr) 20px;
    grid-template-areas:
      "rank globe brand arrow"
      "score score note arrow";
    gap: 16px 14px;
    min-height: 122px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .bk-rating__row + .bk-rating__row {
    margin-top: 10px;
  }

  .bk-rating__rank {
    grid-area: rank;
    font-size: 18px;
    align-self: center;
  }

  .bk-rating__globe {
    grid-area: globe;
    width: 24px;
    height: 24px;
    align-self: center;
  }

  .bk-brand {
    grid-area: brand;
    height: auto;
    font-size: 18px;
    align-self: center;
  }

  .bk-brand--dynamic {
    gap: 0;
  }

  .bk-brand--has-logo .bk-brand__text {
    display: none;
  }

  .bk-brand__logo {
    max-width: 168px;
    height: 36px;
  }

  .bk-rating__score {
      grid-area: score;
      justify-self: start;
      height: 30px;
      padding: 0px 11px;
      font-size: 14px;
      font-weight: 700;
  }

  .bk-rating__note {
    grid-area: note;
    align-self: center;
    font-size: 14px;
    white-space: nowrap;
  }

  .bk-rating__arrow {
    grid-area: arrow;
    justify-self: end;
    align-self: center;
  }

  .bk-rating__footer {
    margin-top: 16px;
  }

  .bk-rating__cta {
    height: 42px;
  }

  .why-us-shell {
    padding: 26px 14px 26px;
    border-radius: 24px;
    background-image: var(--why-us-bg-mobile, var(--why-us-bg-desktop, none));
  }

  .why-us__brand-frame {
    width: 172px;
    height: 62px;
    border-radius: 16px;
  }

  .why-us__brand-logo {
    width: 120px;
  }

  .why-us__heading {
    margin-top: 18px;
  }

  .why-us__heading h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  .why-us__text {
    margin-top: 16px;
    max-width: 270px;
    font-size: 15px;
    line-height: 1.34;
  }

  .why-us__grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us-card {
    min-height: 152px;
    padding: 78px 18px 18px;
    border-radius: 16px;
  }

  .why-us-card__badge {
        width: 162px;
        top: -73px;
  }

  .why-us-card strong {
    font-size: 18px;
  }

  .why-us-card p {
    margin-top: 12px;
    font-size: 15px;
  }

  .reviews-section {
    margin-top: 18px;
    padding-top: 0;
  }

  .site-body.page-home .reviews-section {
    margin-top: -18px;
  }

  .reviews-shell {
    padding: 44px 10px 16px;
    border-radius: 20px;
  }

  .reviews-shell__cup {
    display: none;
  }

  .reviews-shell::before {
    width: 138px;
    height: 138px;
    left: -58px;
    top: 34px;
  }

  .reviews-shell::after {
    width: 138px;
    height: 138px;
    right: -56px;
    top: 104px;
  }

  .reviews-shell__icon {
    width: 30px;
    height: 30px;
  }

  .reviews-shell__heading {
    margin-top: 6px;
  }

  .reviews-shell__heading h2 {
    font-size: 24px;
  }

  .reviews-shell__tabs {
    margin-top: 18px;
  }

  .reviews-shell__tab {
    min-width: fit-content;
    height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .reviews-carousel {
    margin-top: 18px;
  }

  .reviews-track {
    grid-auto-columns: 100%;
    gap: 12px;
  }

  .review-card {
    min-height: 276px;
    padding: 18px 16px 20px;
    border-radius: 16px;
  }

  .review-card__name {
    font-size: 16px;
  }

  .review-card__rate {
    min-width: 62px;
    height: 28px;
    padding: 0 10px;
    font-size: 15px;
  }

  .review-card p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.3;
  }

  .reviews-controls {
    margin-top: 14px;
  }

  .reviews-controls__button {
    width: 32px;
    height: 22px;
  }

  .reviews-controls__icon {
    width: 8px;
    height: 12px;
  }

  .news-section,
  .articles-section {
    margin-top: 16px;
  }

  .content-shell {
    padding: 22px 12px 16px;
    border-radius: 20px;
  }

  .content-shell__heading h2 {
    font-size: 24px;
  }

  .content-filters {
    margin-top: 18px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .content-filters::-webkit-scrollbar {
    display: none;
  }

  .content-filter {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .content-filter__icon {
    width: 14px;
    height: 14px;
  }

  .content-grid--news,
  .content-grid--articles {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .content-grid--news {
    margin-top: 18px;
  }

  .text-content-page {
    padding-top: 8px;
  }

  .text-detail-hero {
    padding: 0;
  }

  .text-detail-hero::before {
    display: none;
  }

  .text-detail-card {
    padding: 12px 12px 16px;
    border-radius: 18px;
  }

  .text-detail-card__title {
    font-size: 24px;
  }

  .text-detail-card__breadcrumbs {
    margin-bottom: 6px;
  }

  .text-detail-card__breadcrumbs .breadcrumbs-list {
    gap: 6px;
  }

  .text-detail-card__breadcrumbs .breadcrumbs-list__item {
    gap: 6px;
    min-height: 14px;
  }

  .text-detail-card__breadcrumbs .breadcrumbs-list__link,
  .text-detail-card__breadcrumbs .breadcrumbs-list__current,
  .text-detail-card__breadcrumbs .breadcrumbs-list__separator {
    font-size: 15px;
  }

  .text-detail-card__media {
    margin-top: 12px;
    border-radius: 12px;
  }

  .text-detail-card__lead {
    font-size: 11px;
  }

  .text-detail-attached {
    margin-top: 14px;
    padding: 12px 12px 12px 16px;
    border-radius: 12px;
  }

  .text-detail-attached__head {
    gap: 8px;
  }

  .text-detail-attached__icon {
    width: 18px;
    height: 18px;
  }

  .text-detail-attached__title {
    font-size: 12px;
  }

  .text-detail-attached__content {
    font-size: 10px;
    line-height: 1.35;
  }

  .text-detail-card__content {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.48;
  }

  .text-detail-card__content .richtext-heading {
    margin: 20px 0 10px;
    font-size: 16px;
  }

  .text-detail-card__content p,
  .text-detail-card__content ul,
  .text-detail-card__content ol,
  .text-detail-card__content blockquote {
    margin-bottom: 14px;
  }

  .text-detail-card__content img {
    margin: 16px auto;
    border-radius: 12px;
  }

  .text-detail-quote {
    margin-top: 18px;
    padding: 24px 28px 20px 28px;
    border-radius: 12px;
  }

  .text-detail-quote::before,
  .text-detail-quote::after {
    font-size: 34px;
  }

  .text-detail-quote::before {
    top: 8px;
    left: 10px;
  }

  .text-detail-quote::after {
    right: 10px;
    bottom: 4px;
  }

  .text-detail-quote p {
    font-size: 12px;
    line-height: 1.45;
  }

  .text-detail-card__footer {
    margin-top: 16px;
    padding-top: 14px;
    flex-wrap: wrap;
  }

  .text-detail-card__footer-link {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
    margin-left: auto;
  }

  .text-detail-promos-section {
    padding-top: 12px;
  }

  .text-detail-promos-grid {
    gap: 8px;
  }

  .text-top-banner {
    min-height: 96px;
    border-radius: 14px;
  }

  .text-top-banner__body {
    min-height: 96px;
    padding: 10px 10px 12px;
  }

  .text-top-banner__eyebrow {
    min-height: 22px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 9px;
  }

  .text-top-banner__copy {
    gap: 3px;
    max-width: 112px;
  }

  .text-top-banner__copy strong {
    font-size: 18px;
  }

  .text-top-banner__copy span {
    font-size: 11px;
  }

  .text-top-banner__image {
    right: 8px;
    bottom: 8px;
    width: 46px;
    height: 46px;
  }

  .content-related-section {
    padding-top: 14px;
  }

  .content-related-shell {
    padding: 18px 12px 14px;
    border-radius: 20px;
  }

  .content-related-shell__heading h2 {
    font-size: 24px;
  }

  .content-related-shell .content-grid {
    margin-top: 16px;
  }

  .content-card__title {
    font-size: 15px;
  }

  .content-card__excerpt,
  .content-card__date {
    font-size: 12px;
    line-height: 1.24;
  }

  .content-shell__footer {
    margin-top: 18px;
  }

  .articles-showcase {
    gap: 12px;
  }

  .articles-promo {
    min-height: 264px;
    padding: 30px 18px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    background-position: top;
  }

  .articles-promo__icon-wrap {
    width: 96px;
    height: 96px;
  }

  .articles-promo__icon {
    width: 64px;
    height: 64px;
  }

  .articles-promo__heading {
    margin-top: 16px;
  }

  .articles-promo__heading h2 {
    font-size: 24px;
    line-height: 1.18;
  }

  .articles-promo__cta {
    margin-top: 24px;
    align-self: center;
  }

  .content-listing-section {
    margin-top: 16px;
  }

  .content-listing-shell {
    padding: 22px 12px 16px;
    border-radius: 20px;
  }

  .content-listing-shell__heading h1 {
    font-size: 24px;
  }

  .content-listing-shell__filters {
    margin-top: 18px;
  }

  .content-listing-shell .content-grid {
    margin-top: 16px;
  }

  .content-listing-shell__footer {
    margin-top: 18px;
  }

  body.page-news .content-listing-shell__filters,
  body.page-articles .content-listing-shell__filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  body.page-news .content-listing-shell__filters::-webkit-scrollbar,
  body.page-articles .content-listing-shell__filters::-webkit-scrollbar {
    display: none;
  }

  body.page-news .content-filter,
  body.page-articles .content-filter {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 18px;
    white-space: nowrap;
  }

  body.page-news .content-grid--news,
  body.page-articles .content-grid--article-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.page-news .content-card--news,
  body.page-articles .content-card--article-list {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 0 0 18px;
    border-bottom: 1px solid #ebedf0;
  }

  body.page-news .content-card--news .content-card__media,
  body.page-articles .content-card--article-list .content-card__media {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 120 / 76;
    border-radius: 12px;
  }

  body.page-news .content-card--news .content-card__media-icon,
  body.page-articles .content-card--article-list .content-card__media-icon {
    top: 8px;
    left: 8px;
    width: 30px;
    height: 30px;
  }

  body.page-news .content-card--news .content-card__media-icon img,
  body.page-articles .content-card--article-list .content-card__media-icon img {
    width: 16px;
    height: 16px;
  }

  body.page-news .content-card--news .content-card__body,
  body.page-articles .content-card--article-list .content-card__body {
    margin-top: 0;
    min-width: 0;
    padding-top: 2px;
  }

  body.page-news .content-card--news .content-card__title,
  body.page-articles .content-card--article-list .content-card__title {
    display: -webkit-box;
    overflow: hidden;
    color: #343639;
    font-size: 15px;
    line-height: 1.22;
    font-weight: 700;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  body.page-news .content-card--news .content-card__excerpt,
  body.page-articles .content-card--article-list .content-card__excerpt {
    margin-top: 6px;
    color: #9b9da0;
    font-size: 12px;
    line-height: 1.24;
    -webkit-line-clamp: 2;
  }

  body.page-news .content-card--news .content-card__date,
  body.page-articles .content-card--article-list .content-card__date {
    margin-top: 4px;
    color: #9b9da0;
    font-size: 12px;
    line-height: 1.2;
  }

  .latest-news-section {
    margin-top: 16px;
  }

  .latest-news-feature {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "media"
      "body"
      "cta";
    gap: 14px;
    padding: 14px 14px 16px;
    border-radius: 20px;
  }

  .latest-news-feature__meta {
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .latest-news-feature__chip {
    min-height: 32px;
    padding: 0 14px;
    font-size: 14px;
  }

  .latest-news-feature__date {
    font-size: 14px;
  }

  .latest-news-feature__media {
    aspect-ratio: 1 / 0.72;
    border-radius: 14px;
  }

  .latest-news-feature__title {
    font-size: 16px;
  }

  .latest-news-feature__excerpt {
    font-size: 14px;
  }

  .latest-news-feature__cta {
    width: 100%;
    max-width: 254px;
    min-height: 44px;
    border-radius: 14px;
  }

  .adv-banners-section,
  .tg-banner-section {
    margin-top: 14px;
  }

  .adv-banners-grid {
    gap: 16px;
  }

  .adv-banner-card {
    height: 165px;
    border-radius: 16px;
  }

  .tg-banner {
    min-height: 256px;
    padding: 18px 16px;
    border-radius: 20px;
    background-image:
      linear-gradient(90deg, rgba(74, 136, 235, 0.96) 0%, rgba(74, 136, 235, 0.96) 100%),
      var(--tg-banner-bg-mobile, var(--tg-banner-bg));
  }

  .tg-banner--plain {
    background-image: var(--tg-banner-bg-mobile, var(--tg-banner-bg));
  }

  .tg-banner__body {
    min-height: 220px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .tg-banner__title {
    font-size: 18px;
  }

  .tg-banner__button {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
  }

  .tg-banner--with-game {
    min-height: 300px;
    padding: 18px 16px;
  }

  .tg-banner__body--with-game {
    min-height: 264px;
    gap: 18px;
  }

  .tg-banner__content {
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .tg-banner--with-game .tg-banner__title {
    max-width: 280px;
    font-size: 18px;
  }

  .tg-banner--with-game .tg-banner__button {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .tg-banner-match {
    width: 100%;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    gap: 10px;
  }

  .tg-banner-match__logo {
    width: 72px;
    height: 72px;
  }

  .tg-banner-match__logo img {
    width: 44px;
    height: 44px;
  }

  .tg-banner-match__logo span {
    font-size: 24px;
  }

  .tg-banner-match__center {
    min-width: 0;
  }

  .tg-banner-match__date {
    font-size: 12px;
  }

  .tg-banner-match__score {
    font-size: 30px;
  }

  .tg-banner--with-game.tg-banner--plain {
    min-height: auto;
    padding: 22px 16px 20px;
  }

  .tg-banner--with-game.tg-banner--plain .tg-banner__body--with-game {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
  }
  .tg-banner--with-game.tg-banner--plain .tg-banner-match {
    order: 1;
    width: 100%;
    min-width: 0;
    grid-template-columns: 78px minmax(0, 1fr) 78px;
    gap: 16px;
  }

  .tg-banner--with-game.tg-banner--plain .tg-banner-match__logo {
    width: 78px;
    height: 78px;
  }

  .tg-banner--with-game.tg-banner--plain .tg-banner-match__logo img {
    width: 50px;
    height: 50px;
  }

  .tg-banner--with-game.tg-banner--plain .tg-banner-match__center {
    gap: 12px;
    padding-top: 2px;
  }

  .tg-banner--with-game.tg-banner--plain .tg-banner-match__date {
    font-size: 12px;
    line-height: 1.2;
  }

  .tg-banner--with-game.tg-banner--plain .tg-banner-match__score {
    font-size: 32px;
    line-height: 1;
  }

  .tg-banner--with-game.tg-banner--plain .tg-banner__content {
    order: 2;
    width: 100%;
    align-items: center;
    gap: 22px;
    text-align: center;
  }

  .tg-banner--with-game.tg-banner--plain .tg-banner__title {
    max-width: 310px;
    font-size: 18px;
    line-height: 1.2;
  }

  .tg-banner--with-game.tg-banner--plain .tg-banner__button {
    min-width: 286px;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 700;
  }

  .text-detail-card__title {
    font-size: 24px;
  }

  .text-detail-card__lead {
    font-size: 10px;
  }

  .text-detail-card__content {
    font-size: 12px;
  }

  .text-detail-quote p {
    font-size: 11px;
  }

  .text-top-banner {
    min-height: 86px;
  }

  .text-top-banner__copy strong {
    font-size: 15px;
  }

  .text-top-banner__copy span {
    font-size: 10px;
  }

  .content-related-shell__heading h2 {
    font-size: 22px;
  }

  .site-footer {
    margin-top: 18px;
    padding: 0 15px;
  }

  .site-footer__inner {
    padding: 28px 0 20px;
    gap: 24px;
  }

  .site-footer__brand-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .site-footer__logo {
    width: 143px;
  }

  .site-footer__telegram {
    min-width: 116px;
    height: 36px;
    padding: 0 17px;
    gap: 7px;
    border-radius: 9px;
    font-size: 15px;
  }

  .site-footer__telegram-icon {
    width: 12px;
    height: 12px;
  }

  .site-footer__offer {
        margin: 14px auto 0;
        width: 100%;
        height: 160px;
        border-radius: 14px;
  }

  .site-footer__nav {
    gap: 16px;
  }

  .site-footer__column-title {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .site-footer__column ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .site-footer__column li + li {
    margin-top: 0;
  }

  .site-footer__column a {
    font-size: 13px;
    line-height: 1.2;
  }

  .site-footer__bottom {
    min-height: 0;
    padding: 12px 0 18px;
    gap: 10px;
  }

  .site-footer__bottom p,
  .site-footer__meta a {
    font-size: 12px;
    line-height: 1.25;
  }

  .site-footer__meta .site-footer__traff {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mobile-menu__panel {
    padding: 14px 16px 24px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
.bonus-shell {
    background-position: right;
}
  .content-filters-bk{
    justify-content: center;
    gap: 0;
  }
  .content-filter-bk{
    border: none;
  }
  .bonus-filter.is-active {
    box-shadow: none;
  }
  .site-footer__brand-area {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    align-items: start;
    gap: 24px 32px;
    max-width: none;
  }

  .site-footer__brand-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
  }

  .site-footer__offer {
    margin-top: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 320 / 154;
    border-radius: 24px;
    justify-self: end;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__column-title {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .site-footer__column ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
  }

  .site-footer__column li + li {
    margin-top: 0;
  }

  .site-footer__bottom {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .site-footer__bottom p,
  .site-footer__meta a,
  .site-footer__meta span {
    font-size: 15px;
    line-height: 1.2;
  }

  .site-footer__meta .site-footer__traff {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
  }

  .site-footer__meta {
    justify-content: flex-start;
    gap: 18px 56px;
  }
}

@media (max-width: 1024px) {
  .site-main--not-found {
    background-image: url(../images/404_tablet.png);
  }

  .not-found-section {
    padding-top: 12px;
  }

  .not-found-shell {
    min-height: 540px;
    padding: 44px 18px 32px;
    background-position: center top;
  }

  .not-found-shell__code {
    font-size: 142px;
  }

  .not-found-shell__card {
    width: min(430px, 100%);
    margin-top: auto;
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  .not-found-shell__message {
    font-size: 15px;
  }

  .not-found-shell__actions {
    gap: 12px;
    margin-top: 20px;
  }

  .not-found-shell__action {
    min-width: 182px;
    height: 40px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .site-main--not-found {
    background-image: url(../images/404_mobile.png);
  }

  .not-found-page {
    padding-top: 0;
  }

  .not-found-section {
    padding-top: 0;
  }

  .not-found-shell {
    min-height: 520px;
    padding: 38px 12px 18px;
    border-radius: 20px;
    background-position: center top;
  }

  .not-found-shell__code {
    font-size: 106px;
  }

  .not-found-shell__card {
    width: 100%;
    margin-top: auto;
    padding: 20px 12px 18px;
    border-radius: 20px;
  }

  .not-found-shell__message {
    font-size: 14px;
  }

  .not-found-shell__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .not-found-shell__action {
    width: 100%;
    min-width: 0;
    height: 40px;
    font-size: 14px;
    border-radius: 12px;
  }
}

.content-grid--article-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  align-content: start;
}

.content-card--article-list {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #ebedf0;
}

.content-card--article-list .content-card__media {
  width: 180px;
  min-width: 180px;
  aspect-ratio: 180 / 108;
  border-radius: 16px;
}

.content-card--article-list .content-card__media-icon {
  top: 10px;
  left: 10px;
  width: 38px;
  height: 38px;
}

.content-card--article-list .content-card__media-icon img {
  width: 20px;
  height: 20px;
}

.content-card--article-list .content-card__body {
  margin-top: 0;
  min-width: 0;
  padding-top: 8px;
}

.content-card--article-list .content-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: #343639;
  font-size: 19px;
  line-height: 1.26;
  font-weight: 700;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.content-card--article-list .content-card__excerpt {
  margin-top: 10px;
  color: #9b9da0;
  font-size: 17px;
  line-height: 1.32;
  -webkit-line-clamp: 2;
}

.content-card--article-list .content-card__date {
  margin-top: 8px;
  color: #9b9da0;
  font-size: 16px;
  line-height: 1.25;
}

@media (max-width: 1024px) {
  .match-card__meta{
    font-size: 12px;
  }
  .match-card__button{
        font-size: 14px;
  }
  .content-grid--article-list {
    gap: 0 18px;
  }

  .content-card--article-list {
    gap: 14px;
    padding-bottom: 16px;
  }

  .content-card--article-list .content-card__media {
    width: 138px;
    min-width: 138px;
    aspect-ratio: 138 / 88;
    border-radius: 14px;
  }

  .content-card--article-list .content-card__media-icon {
    width: 34px;
    height: 34px;
  }

  .content-card--article-list .content-card__media-icon img {
    width: 18px;
    height: 18px;
  }

  .content-card--article-list .content-card__body {
    padding-top: 4px;
  }

  .content-card--article-list .content-card__title {
    font-size: 16px;
  }

  .content-card--article-list .content-card__excerpt,
  .content-card--article-list .content-card__date {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .content-grid--article-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .content-card--article-list {
    gap: 12px;
    padding-bottom: 14px;
  }

  .content-card--article-list .content-card__media {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 120 / 76;
    border-radius: 12px;
  }

  .content-card--article-list .content-card__media-icon {
    top: 8px;
    left: 8px;
    width: 30px;
    height: 30px;
  }

  .content-card--article-list .content-card__media-icon img {
    width: 16px;
    height: 16px;
  }

  .content-card--article-list .content-card__body {
    padding-top: 2px;
  }

  .content-card--article-list .content-card__title {
    font-size: 15px;
  }

  .content-card--article-list .content-card__excerpt {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.24;
  }

  .content-card--article-list .content-card__date {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.24;
  }
}

.single-bonus-section {
  padding: 16px 0 0;
}

.single-bonus-shell {
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.single-bonus-hero {
  overflow: hidden;
  padding: 34px 28px 28px;
  border-radius: 28px;
  background: #ffffff url(../images/bg_single_bonus.png);
  background-size: cover;
}

.single-bonus-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.single-bonus-hero__intro {
  min-width: 0;
}

.single-bonus-hero__logo,
.single-bonus-hero__logo-placeholder {
  display: block;
  max-width: 180px;
  height: 56px;
}

.single-bonus-hero__logo {
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.single-bonus-hero__logo-placeholder {
  color: #121920;
  font-size: 34px;
  line-height: 56px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-bonus-hero__intro h1 {
  max-width: 620px;
  margin: 26px 0 0;
  color: #101820;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 700;
}

.single-bonus-hero__cta {
  min-width: 176px;
  height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  background: #f37021;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms ease;
}

.single-bonus-hero__cta:hover {
  background: #e06015;
  transform: translateY(-1px);
}

.single-bonus-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  width: 70%;
}

.single-bonus-stat {
  min-width: 0;
}

.single-bonus-stat__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #45515d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-bonus-stat.is-accent .single-bonus-stat__icon {
  background: #ffb708;
}

.single-bonus-stat__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.single-bonus-stat__value {
  display: block;
  margin-top: 16px;
  color: #121920;
  font-size: 19px;
  line-height: 1.16;
  font-weight: 700;
}

.single-bonus-stat__label {
  display: block;
  margin-top: 8px;
  color: #273038;
  font-size: 17px;
  line-height: 1.2;
}

.single-bonus-accordions {
  margin-top: 38px;
}

.single-bonus-accordion {
  border-top: 1px solid #dfe5ea;
}

.single-bonus-accordion:first-child {
  border-top: 0;
}

.single-bonus-accordion__summary {
  list-style: none;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.single-bonus-accordion__summary::-webkit-details-marker {
  display: none;
}

.single-bonus-accordion__summary span:first-child {
  color: #121920;
  font-size: 18px;
  line-height: 1.24;
  font-weight: 700;
}

.single-bonus-accordion__icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  border-right: 2px solid #11181f;
  border-bottom: 2px solid #11181f;
  transform: rotate(45deg);
  transition: transform 180ms ease, opacity 180ms ease;
  opacity: 0.86;
}

.single-bonus-accordion[open] .single-bonus-accordion__icon {
  transform: rotate(-135deg);
}

.single-bonus-accordion__content-shell {
  height: 0;
  overflow: hidden;
  transition: height 240ms ease;
}

.single-bonus-accordion__content {
  padding: 0 0 28px;
}

.single-bonus-accordion__content--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 30px;
  align-items: start;
}

.single-bonus-accordion__content--split.is-text-only {
  grid-template-columns: 1fr;
}

.single-bonus-accordion__text {
  color: #171e25;
  font-size: 16px;
  line-height: 1.5;
}

.single-bonus-accordion__text br + br {
  display: block;
  content: "";
  margin-top: 8px;
}

.single-bonus-accordion__media {
  justify-self: end;
}

.single-bonus-accordion__media-button {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 22px;
  overflow: hidden;
}

.single-bonus-accordion__media-button img {
  display: block;
  width: min(220px, 100%);
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(7, 11, 18, 0.08);
}

.single-bonus-accordion__media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 20, 28, 0.22);
  opacity: 0;
  transition: opacity 180ms ease;
}

.single-bonus-accordion__media-zoom {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(79, 143, 240, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 180ms ease, background-color 180ms ease;
}

.single-bonus-accordion__media-zoom img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  box-shadow: none;
}

.single-bonus-accordion__media-button:hover .single-bonus-accordion__media-overlay,
.single-bonus-accordion__media-button:focus-visible .single-bonus-accordion__media-overlay {
  opacity: 1;
}

.single-bonus-accordion__media-button:hover .single-bonus-accordion__media-zoom,
.single-bonus-accordion__media-button:focus-visible .single-bonus-accordion__media-zoom {
  transform: scale(1);
}

.single-bonus-accordion__media-button:focus-visible {
  outline: 2px solid rgba(79, 143, 240, 0.8);
  outline-offset: 4px;
}

.single-bonus-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.single-bonus-lightbox[hidden] {
  display: none;
}

.single-bonus-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 11, 15, 0.82);
}

.single-bonus-lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 980px);
  max-height: 92vh;
  padding: 18px;
  border-radius: 24px;
  background: rgba(15, 22, 29, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.single-bonus-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.single-bonus-lightbox__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.single-bonus-lightbox__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.single-bonus-lightbox__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.single-bonus-lightbox__image {
  display: block;
  max-width: min(88vw, 920px);
  max-height: calc(92vh - 36px);
  width: auto;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
}

.single-bk-section {
  padding: 16px 0 40px;
}

.single-bk-shell {
  padding: 22px 24px 28px;
  border-radius: 28px;
  background: #ffffff url(../images/bg_single_bonus.png) center/cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.single-bk-card {
  position: relative;
  overflow: hidden;
  padding: 22px 24px 26px;
  border-radius: 28px;
  background: #0b1115 url(../images/bg_single_bk.png) center/cover no-repeat;
}

.single-bk-card__top,
.single-bk-stats {
  position: relative;
  z-index: 1;
}

.single-bk-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.single-bk-card__brand {
  min-width: 0;
}

.single-bk-card__logo,
.single-bk-card__logo-placeholder {
  display: block;
  max-width: 172px;
  height: 56px;
}

.single-bk-card__logo {
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.single-bk-card__logo-placeholder {
  color: #ffffff;
  font-size: 34px;
  line-height: 56px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-bk-card__rank {
  max-width: 580px;
  margin: 18px 0 0;
  color: #f4f7fa;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}

.single-bk-card__cta {
  min-width: 184px;
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #4f8ff0;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms ease;
}

.single-bk-card__cta:hover,
.single-bk-card__cta:focus-visible {
  background: #3d7fe2;
  transform: translateY(-1px);
}

.single-bk-card__cta img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.single-bk-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.single-bk-stat {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.single-bk-stat__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #45515d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-bk-stat.is-accent .single-bk-stat__icon {
  background: #ffb708;
}

.single-bk-stat__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.single-bk-stat__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.single-bk-stat__value {
  display: block;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.16;
  font-weight: 700;
}

.single-bk-stat__label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.2;
}

.single-bk-accordions {
  margin-top: 24px;
}

.single-bk-accordion__content--wide {
  padding-top: 4px;
}

.single-bk-pros-cons {
  margin-top: 0;
}

.single-bk-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.single-bk-apps__button {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #4f8ff0;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  transition: background-color 180ms ease, transform 180ms ease;
}

.single-bk-apps__button:hover,
.single-bk-apps__button:focus-visible {
  background: #3d7fe2;
  transform: translateY(-1px);
}

.single-bk-apps__button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.single-bk-translations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 18px 12px;
}

.single-bk-translation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.single-bk-translation__media {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e1e8f0;
  box-shadow: 0 10px 24px rgba(12, 19, 28, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.single-bk-translation__media img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.single-bk-translation__placeholder {
  color: #3b4651;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.single-bk-translation__title {
  color: #4a5560;
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .single-bonus-hero {
    padding: 26px 20px 22px;
  }

  .single-bonus-hero__top {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .single-bonus-hero__logo,
  .single-bonus-hero__logo-placeholder {
    max-width: 160px;
    height: 48px;
  }

  .single-bonus-hero__logo-placeholder {
    font-size: 28px;
    line-height: 48px;
  }

  .single-bonus-hero__intro h1 {
    margin-top: 20px;
    max-width: 100%;
    font-size: 19px;
  }

  .single-bonus-hero__cta {
    align-self: flex-start;
    min-width: 148px;
    height: 46px;
    padding: 0 22px;
    font-size: 15px;
  }

  .single-bonus-stats {
    margin-top: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .single-bonus-stat__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .single-bonus-stat__icon img {
    width: 21px;
    height: 21px;
  }

  .single-bonus-stat__value {
    margin-top: 10px;
    font-size: 16px;
  }

  .single-bonus-stat__label {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.28;
  }

  .single-bonus-accordions {
    margin-top: 28px;
  }

  .single-bonus-accordion__summary {
    min-height: 64px;
  }

  .single-bonus-accordion__summary span:first-child {
    font-size: 16px;
  }

  .single-bonus-accordion__content--split {
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 22px;
  }

  .single-bonus-accordion__text {
    font-size: 15px;
    line-height: 1.42;
  }

  .single-bonus-accordion__media-button img {
    width: min(190px, 100%);
    border-radius: 18px;
  }

  .single-bk-shell {
    padding: 20px;
  }

  .single-bk-card {
    padding: 20px;
  }

  .single-bk-card__top {
    flex-direction: column;
    gap: 20px;
  }

  .single-bk-card__logo,
  .single-bk-card__logo-placeholder {
    max-width: 156px;
    height: 48px;
  }

  .single-bk-card__logo-placeholder {
    font-size: 28px;
    line-height: 48px;
  }

  .single-bk-card__rank {
    margin-top: 16px;
    max-width: 100%;
    font-size: 16px;
  }

  .single-bk-card__cta {
    min-width: 168px;
  }

  .single-bk-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .single-bk-stat__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .single-bk-stat__icon img {
    width: 20px;
    height: 20px;
  }

  .single-bk-stat__value {
    font-size: 16px;
  }

  .single-bk-stat__label {
    margin-top: 4px;
    font-size: 14px;
  }

  .single-bk-translations {
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  }

  .single-bk-translation__media {
    width: 68px;
    height: 68px;
  }

  .single-bk-translation__media img {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 767px) {
  .single-bonus-section {
    padding-top: 10px;
  }

  .single-bonus-shell {
    border-radius: 20px;
  }

  .single-bonus-hero {
    padding: 20px 16px 18px;
    border-radius: 20px;
  }

  .single-bonus-hero__top {
    gap: 16px;
  }

  .single-bonus-hero__logo,
  .single-bonus-hero__logo-placeholder {
    max-width: 132px;
    height: 40px;
    margin: 0 auto;
  }

  .single-bonus-hero__logo {
    object-position: center;
  }

  .single-bonus-hero__logo-placeholder {
    text-align: center;
    font-size: 24px;
    line-height: 40px;
  }

  .single-bonus-hero__intro {
    text-align: center;
  }

  .single-bonus-hero__intro h1 {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.24;
  }

  .single-bonus-hero__cta {
    align-self: center;
    min-width: 146px;
    height: 42px;
    border-radius: 12px;
    font-size: 14px;
  }

  .single-bonus-stats {
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
  }

  .single-bonus-stat__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .single-bonus-stat__icon img {
    width: 18px;
    height: 18px;
  }

  .single-bonus-stat__value {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.18;
  }

  .single-bonus-stat__label {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.28;
  }

  .single-bonus-accordions {
    margin-top: 24px;
  }

  .single-bonus-accordion__summary {
    min-height: 56px;
    gap: 12px;
  }

  .single-bonus-accordion__summary span:first-child {
    font-size: 15px;
  }

  .single-bonus-accordion__content {
    padding-bottom: 18px;
  }

  .single-bonus-accordion__content--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .single-bonus-accordion__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .single-bonus-accordion__media {
    justify-self: start;
  }

  .single-bonus-accordion__media-button {
    border-radius: 16px;
  }

  .single-bonus-accordion__media-button img {
    width: min(176px, 100%);
    border-radius: 16px;
  }

  .single-bonus-accordion__media-overlay {
    opacity: 1;
    background: rgba(12, 20, 28, 0.08);
  }

  .single-bonus-accordion__media-zoom {
    width: 58px;
    height: 58px;
    transform: scale(1);
  }

  .single-bonus-accordion__media-zoom img {
    width: 26px;
    height: 26px;
  }

  .single-bonus-lightbox {
    padding: 16px;
  }

  .single-bonus-lightbox__dialog {
    width: 100%;
    padding: 12px;
    border-radius: 18px;
  }

  .single-bonus-lightbox__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .single-bonus-lightbox__image {
    max-width: calc(100vw - 48px);
    max-height: calc(100vh - 56px);
    border-radius: 14px;
  }

  .single-bk-section {
    padding-top: 10px;
  }

  .single-bk-shell {
    padding: 16px;
    border-radius: 20px;
  }

  .single-bk-card {
    padding: 18px 16px 20px;
    border-radius: 22px;
  }

  .single-bk-card__logo,
  .single-bk-card__logo-placeholder {
    max-width: 138px;
    height: 40px;
  }

  .single-bk-card__logo-placeholder {
    font-size: 24px;
    line-height: 40px;
  }

  .single-bk-card__rank {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.35;
  }

  .single-bk-card__cta {
    min-width: 0;
    width: 100%;
    font-size: 14px;
  }

  .single-bk-stats {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
  }

  .single-bk-stat__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .single-bk-stat__icon img {
    width: 18px;
    height: 18px;
  }

  .single-bk-stat__value {
    font-size: 14px;
  }

  .single-bk-stat__label {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.28;
  }

  .single-bk-apps {
    flex-direction: column;
    align-items: stretch;
  }

  .single-bk-apps__button {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .single-bk-translations {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 10px;
  }

  .single-bk-translation__media {
    width: 60px;
    height: 60px;
  }

  .single-bk-translation__media img {
    width: 46px;
    height: 46px;
  }

  .single-bk-translation__title {
    font-size: 13px;
  }
}

.bonus-comparison-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
}

.bonus-comparison-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.bonus-comparison-table {
  min-width: 100%;
}

.bonus-comparison-table__head,
.bonus-comparison-table__row {
  display: grid;
  grid-template-columns: var(--comparison-grid);
}

.bonus-comparison-table__head {
  padding: 0;
  text-align: center;
}

.bonus-comparison-table__head span {
  min-height: 60px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bonus-comparison-table__body {
  overflow: hidden;
}

.bonus-comparison-table__cell {
  min-height: 96px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid #edf1f6;
  background: #fff;
  color: #171717;
  font-size: 16px;
  line-height: 1.32;
}

.bonus-comparison-table__row .bonus-comparison-table__cell + .bonus-comparison-table__cell {
  border-left: 1px solid #edf1f6;
}

.bonus-comparison-table__row:last-child .bonus-comparison-table__cell {
  border-bottom: 0;
}

.bonus-comparison-table__cell--label {
  font-weight: 700;
}

.bonus-comparison-table__row--actions .bonus-comparison-table__cell--value {
  padding-top: 24px;
  padding-bottom: 24px;
}

.bonus-comparison-cards {
  display: none;
}

.bonus-comparison-card {
  padding: 18px 16px 16px;
  border-radius: 20px;
  background: #f7f8fa;
  box-shadow: 0 10px 24px rgba(10, 18, 28, 0.06);
}

.bonus-comparison-card + .bonus-comparison-card {
  margin-top: 12px;
}

.bonus-comparison-card__title {
  margin: 0;
  color: #171717;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.bonus-comparison-card__stats {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-comparison-card__stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: #1b232b;
}

.bonus-comparison-card__stat span {
  font-size: 14px;
  line-height: 1.3;
  color: #55616d;
}

.bonus-comparison-card__stat strong {
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #171717;
}

.bonus-comparison-card__link {
  width: 100%;
  margin-top: 16px;
}

@media (max-width: 767px) {
  .bonus-comparison-table-wrap {
    display: none;
  }

  .bonus-comparison-cards {
    display: block;
    margin-top: 22px;
  }
}

.desktop-nav__dropdown-item.is-active {
  background: #eef4ff;
  color: #152130;
  font-weight: 500;
}

.league-tables-page {
  padding-bottom: 40px;
}

.league-tables-section {
  padding-top: 18px;
}

.league-tables-shell {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.league-tables-hero {
  padding: 24px 24px 18px;
  border-radius: 24px;
  background: #ffffff;
  background-image: var(--league-tables-bg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.league-tables-hero__icon {
  width: 82px;
  height: 82px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #6ea7fa 0%, #4f8ff0 100%);
  box-shadow: inset 0 0 0 2px #3c79db;
  display: flex;
  align-items: center;
  justify-content: center;
}

.league-tables-hero__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.league-tables-hero h1 {
  max-width: 680px;
  margin: 18px auto 0;
  color: #11181f;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 700;
}

.league-tables-search {
  width: 100%;
  margin-top: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f3f4f7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.league-tables-search__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.league-tables-search__input {
  width: 100%;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #161d24;
  font-size: 14px;
  line-height: 1;
  outline: none;
}

.league-tables-search__input::placeholder {
  color: #b0b5bc;
}

.league-tables-board {
  margin-top: 14px;
  border: 1px solid #edf0f3;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
}

.league-tables-board__head {
  padding: 10px 14px;
  background: #44515b;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  border-radius: 8px 8px 0 0;
}

.league-tables-list {
  background: #ffffff;
}

.league-tables-loading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.league-table-item + .league-table-item {
  border-top: 1px solid #edf0f3;
}

.league-table-item__summary {
  list-style: none;
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.league-table-item__summary::-webkit-details-marker {
  display: none;
}

.league-table-item__country {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1b232c;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

.league-table-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.league-table-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.league-table-item__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #a5acb4;
  border-bottom: 1.5px solid #a5acb4;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  flex-shrink: 0;
}

.league-table-item[open] .league-table-item__chevron {
  transform: rotate(-135deg);
}

.league-table-item__panel {
  padding: 4px 10px 12px;
}

.league-table-grid {
  display: grid;
  grid-template-columns: 38px minmax(180px, 1.8fr) repeat(7, minmax(58px, 0.7fr));
  align-items: center;
  column-gap: 8px;
}

.league-table-grid--head {
  padding: 0 12px 10px;
}

.league-table-grid--head-mobile {
  display: none;
}

.league-table-grid--head .league-table-grid__cell {
  color: #b4bac1;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

.league-table-grid--head .league-table-grid__cell--team {
  text-align: left;
}

.league-table-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.league-table-grid--row {
  min-height: 45px;
  padding: 0 12px;
  border-radius: 10px;
  background: #f4f6f8;
}

.league-table-grid__cell {
  min-width: 0;
}

.league-table-grid__cell--rank {
  color: #1b232c;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}

.league-table-grid__cell--team {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.league-table-team__badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef3fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.league-table-team__badge img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.league-table-team__name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1b232c;
  font-size: 18px;
  line-height: 1.2;
}

.league-table-grid__cell--value {
  color: #1b232c;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1024px) {
  .league-tables-page {
    padding-bottom: 28px;
  }

  .league-tables-section {
    padding-top: 10px;
  }

  .league-tables-shell {
    padding: 10px 8px 12px;
    border-radius: 20px;
  }

  .league-tables-hero {
    padding: 18px 12px 12px;
    border-radius: 18px;
  }

  .league-tables-hero__icon {
    width: 70px;
    height: 70px;
  }

  .league-tables-hero__icon img {
    width: 28px;
    height: 28px;
  }

  .league-tables-hero h1 {
    max-width: 100%;
    margin-top: 16px;
    font-size: 25px;
  }

  .league-tables-search {
    margin-top: 22px;
    padding: 0 12px;
    gap: 8px;
  }

  .league-tables-search__icon {
    width: 16px;
    height: 16px;
  }

  .league-tables-search__input {
    height: 38px;
    font-size: 12px;
  }

  .league-tables-board {
    margin-top: 12px;
    border-radius: 14px;
  }

  .league-tables-board__head {
    padding: 8px 10px;
    font-size: 15px;
  }

  .league-table-item__summary {
    min-height: 40px;
    padding: 0 10px;
    gap: 10px;
  }

  .league-tables-loading {
    width: 1px;
    height: 1px;
  }

  .league-table-item__country {
    gap: 8px;
    font-size: 15px;
  }

  .league-table-item__panel {
    padding: 4px 6px 8px;
  }

  .league-table-grid {
    grid-template-columns: 20px minmax(76px, 1.2fr) repeat(7, minmax(20px, 1fr));
    column-gap: 4px;
  }

  .league-table-grid--head-desktop {
    display: none;
  }

  .league-table-grid--head-mobile {
    display: grid;
    padding: 0 6px 8px;
  }

  .league-table-grid--head .league-table-grid__cell {
    font-size: 15px;
  }

  .league-table-rows {
    gap: 4px;
  }

  .league-table-grid--row {
    min-height: 45px;
    padding: 0 6px;
    border-radius: 8px;
  }

  .league-table-grid__cell--rank {
    font-size: 9px;
  }

  .league-table-grid__cell--team {
    gap: 6px;
  }

  .league-table-team__badge {
    width: 12px;
    height: 12px;
  }

  .league-table-team__badge img {
    width: 8px;
    height: 8px;
  }

  .league-table-team__name,
  .league-table-grid__cell--value {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .league-tables-page {
    padding-bottom: 16px;
  }

  .league-tables-section {
    padding-top: 8px;
  }

  .league-tables-shell {
    padding: 10px 8px 10px;
    border-radius: 18px;
  }

  .league-tables-hero {
    padding: 14px 8px 10px;
    border-radius: 16px;
  }

  .league-tables-hero__icon {
    width: 62px;
    height: 62px;
  }

  .league-tables-hero__icon img {
    width: 24px;
    height: 24px;
  }

  .league-tables-hero h1 {
    max-width: 100%;
    margin-top: 14px;
    font-size: 19px;
  }

  .league-tables-search {
    margin-top: 18px;
    padding: 0 10px;
    gap: 8px;
  }

  .league-tables-search__icon {
    width: 14px;
    height: 14px;
  }

  .league-tables-search__input {
    height: 30px;
    font-size: 10px;
  }

  .league-tables-board {
    margin-top: 10px;
    border-radius: 12px;
  }

  .league-tables-board__head {
    padding: 8px 8px;
    font-size: 14px;
  }

  .league-table-item__summary {
    min-height: 36px;
    padding: 0 8px;
  }

  .league-tables-loading {
    width: 1px;
    height: 1px;
  }

  .league-table-item__country {
    gap: 6px;
    font-size: 15px;
  }

  .league-table-item__icon {
    width: 14px;
    height: 14px;
  }

  .league-table-item__chevron {
    width: 7px;
    height: 7px;
  }

  .league-table-item__panel {
    padding: 3px 4px 8px;
  }

  .league-table-grid {
    grid-template-columns: 18px minmax(46px, 1fr) repeat(7, 18px);
    column-gap: 2px;
  }

  .league-table-grid--head-mobile {
    padding: 0 4px 8px;
  }

  .league-table-grid--head .league-table-grid__cell {
    font-size: 14px;
  }

  .league-table-grid--row {
    min-height: 45px;
    padding: 0 4px;
    border-radius: 7px;
  }

  .league-table-grid__cell--rank {
    font-size: 8px;
  }

  .league-table-grid__cell--team {
    gap: 4px;
  }

  .league-table-team__badge {
    width: 10px;
    height: 10px;
  }

  .league-table-team__badge img {
    width: 7px;
    height: 7px;
  }

  .league-table-grid__cell--value {
    font-size: 10px;
  }
    .league-table-team__name{
      font-size: 14px;
    }
}

.bk-sport-picks-section {
  padding-top: 30px;
}

.bk-sport-picks-shell {
  overflow: hidden;
  padding: 56px 34px 26px;
  border-radius: 28px;
  background: #f3f3f3 url("../images/bg_reviews.png") center/cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.bk-sport-picks__heading {
  text-align: center;
}

.bk-sport-picks__heading h2 {
  max-width: 720px;
  margin: 0 auto;
  color: #101820;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
}

.bk-sport-picks__heading h2 span {
  color: #37d43f;
}

.bk-sport-picks__heading h2 strong {
  font-weight: 700;
}

.bk-sport-picks__filters {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 28px auto 0;
  padding: 5px;
  border-radius: 999px;
  background: rgba(241, 243, 247, 0.96);
}

.bk-sport-picks__filter {
  border: 0;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  color: #b8bdc6;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.bk-sport-picks__filter:hover,
.bk-sport-picks__filter:focus-visible {
  color: #1a2129;
}

.bk-sport-picks__filter.is-active {
  background: #ffffff;
  color: #1a2129;
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.08);
}

.bk-sport-picks__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.bk-sport-card {
  position: relative;
  padding: 34px 96px 28px 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 44px rgba(17, 24, 32, 0.08);
}

.bk-sport-card__header {
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 0;
}

.bk-sport-card__brand {
  min-width: 168px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 38px;
}

.bk-sport-card__logo {
  display: block;
  max-width: 164px;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.bk-sport-card__brand-name {
  color: #11181f;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bk-sport-card__arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 42px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f3f5f8;
  transform: translateY(-50%);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.bk-sport-card__arrow:hover,
.bk-sport-card__arrow:focus-visible {
  background: #e9eef4;
  transform: translateY(-50%) translateX(2px);
}

.bk-sport-card__arrow img {
  width: 10px;
  height: 18px;
  object-fit: contain;
}

.bk-sport-card__meta {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px 30px;
  margin: 0;
}

.bk-sport-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #232d36;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}

.bk-sport-card__meta-item--link {
  text-decoration: none;
}

.bk-sport-card__meta-item--platform {
  color: #4b5661;
  font-weight: 400;
}

.bk-sport-card__meta-item--link:hover,
.bk-sport-card__meta-item--link:focus-visible {
  color: #161d24;
}

.bk-sport-card__meta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #15191d;
  flex-shrink: 0;
}

.bk-sport-card__meta-icon img,
.bk-sport-card__meta-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bk-sport-card__meta-icon--accent {
  color: #4d8dff;
}

.bk-sport-card__meta-text {
  display: inline-block;
}

.bk-sport-card__description {
  margin: 28px 0 0;
  color: #4a5560;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

.bk-sport-picks__empty {
  margin: 24px 0 0;
  color: #4a5560;
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1024px) {
  .bk-sport-picks-section {
    padding-top: 24px;
  }

  .bk-sport-picks-shell {
    padding: 42px 18px 20px;
    border-radius: 24px;
  }

  .bk-sport-picks__heading h2 {
    max-width: 600px;
    font-size: 34px;
  }

  .bk-sport-picks__filters {
    margin-top: 24px;
  }

  .bk-sport-picks__filter {
    min-height: 34px;
    padding: 0 16px;
    font-size: 14px;
  }

  .bk-sport-picks__list {
    margin-top: 24px;
    gap: 14px;
  }

  .bk-sport-card {
    padding: 26px 74px 22px 30px;
    border-radius: 22px;
  }

  .bk-sport-card__header {
    display: block;
  }

  .bk-sport-card__brand {
    min-width: 0;
    min-height: 36px;
    max-width: 168px;
  }

  .bk-sport-card__logo {
    max-width: 152px;
    max-height: 36px;
  }

  .bk-sport-card__brand-name {
    font-size: 26px;
  }

  .bk-sport-card__arrow {
    top: 26px;
    right: 18px;
    width: 38px;
    height: 50px;
    transform: none;
  }

  .bk-sport-card__arrow:hover,
  .bk-sport-card__arrow:focus-visible {
    transform: translateX(2px);
  }

  .bk-sport-card__arrow img {
    width: 9px;
    height: 16px;
  }

  .bk-sport-card__meta {
    flex-wrap: wrap;
    gap: 16px 26px;
    margin-top: 22px;
  }

  .bk-sport-card__meta-item {
    font-size: 15px;
  }

  .bk-sport-card__description {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .bk-sport-picks-section {
    padding-top: 18px;
  }

  .bk-sport-picks-shell {
    padding: 32px 14px 16px;
    border-radius: 22px;
  }

  .bk-sport-picks__heading h2 {
    max-width: 260px;
    font-size: 24px;
    line-height: 1.16;
  }

  .bk-sport-picks__filters {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 22px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .bk-sport-picks__filter {
    min-height: 32px;
    padding: 0 16px;
    background: rgba(241, 243, 247, 0.96);
    font-size: 14px;
  }

  .bk-sport-picks__filter.is-active {
    box-shadow: 0 8px 20px rgba(17, 24, 32, 0.06);
  }

  .bk-sport-picks__list {
    margin-top: 20px;
    gap: 12px;
  }

  .bk-sport-card {
    padding: 18px 54px 18px 18px;
    border-radius: 18px;
  }

  .bk-sport-card__header {
    display: block;
  }

  .bk-sport-card__brand {
    min-height: 32px;
    min-width: 0;
    max-width: 128px;
  }

  .bk-sport-card__logo {
    max-width: 128px;
    max-height: 32px;
  }

  .bk-sport-card__brand-name {
    font-size: 20px;
  }

  .bk-sport-card__arrow {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    transform: none;
  }

  .bk-sport-card__arrow img {
    width: 8px;
    height: 14px;
  }

  .bk-sport-card__meta {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
    align-items: center;
    gap: 14px 24px;
    margin-top: 18px;
  }

  .bk-sport-card__meta-item {
    font-size: 14px;
  }

  .bk-sport-card__meta-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .bk-sport-card__meta-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .bk-sport-card__meta-item--platform .bk-sport-card__meta-text {
    display: none;
  }

  .bk-sport-card__meta-item--platform {
    grid-row: 2;
    gap: 8px;
  }

  .bk-sport-card__meta-item--platform:nth-child(3) {
    grid-column: 1;
  }

  .bk-sport-card__meta-item--platform:nth-child(4) {
    grid-column: 2;
  }

  .bk-sport-card__meta-icon {
    width: 17px;
    height: 17px;
  }

  .bk-sport-card__description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  .bk-sport-picks__empty {
    margin-top: 20px;
    font-size: 14px;
  }
}
