:root {
  --bg-page: rgb(40 40 41);
  --bg-surface: rgb(53 53 54);
  --bg-surface-2: rgb(61 61 62);
  --bg-header-from: rgb(3 86 66);
  --bg-header-to: rgb(20 63 54);
  --bg-accent-from: rgb(4 86 67);
  --bg-accent-to: rgb(3 59 44);
  --text-main: rgb(248 248 246);
  --text-soft: rgb(230 230 228);
  --text-muted: rgb(176 176 176);
  --line-soft: rgb(69 69 69);
  --line-strong: rgb(57 57 57);
  --brand-accent: rgb(48 242 186);
  --brand-accent-dark: rgb(4 91 71);
  --brand-highlight: rgb(250 228 52);
  --brand-highlight-deep: rgb(245 210 22);
  --button-dark: rgb(52 52 52);
  --shadow-soft: 0 4px 12px rgb(0 0 0 / 0.18);
  --shadow-card: 0 16px 32px rgb(0 0 0 / 0.34);
  --radius-xs: 5px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1280px;
  --transition: 0.28s ease;
}

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

html {
  font-size: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
blockquote {
  margin: 0;
}

body {
  background: var(--bg-page);
  color: var(--text-main);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

ul,
ol {
  padding-left: 20px;
}

.layout-shell {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.page-main {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: 78px 0 0;
}

.content-section {
  padding: 32px 0;
}

.content-section__inner {
  display: block;
}

.page-title {
  margin-bottom: 22px;
  color: var(--brand-accent);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 16px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

p strong {
  color: rgb(255 255 255);
  font-weight: 700;
}

p a {
  color: rgb(129 208 198);
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

p a:hover {
  color: rgb(255 255 255);
  border-bottom-color: var(--brand-accent-dark);
}

.layout-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  width: 100%;
  padding-top: 10px;
  background: linear-gradient(180deg, var(--bg-header-from), var(--bg-header-to));
}

.layout-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 77px;
}

.brand-mark__link {
  display: inline-block;
}

.brand-mark__image {
  width: 90px;
}

.primary-nav {
  display: block;
}

.primary-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 48px;
  list-style: none;
  padding: 0;
}

.primary-nav__item {
  margin: 0;
}

.primary-nav__link {
  display: block;
  position: relative;
  padding: 23px 0 24px;
  color: rgb(245 245 245);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color var(--transition);
}

.primary-nav__link:hover {
  color: var(--brand-accent);
}

.primary-nav__item:first-child .primary-nav__link::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 4px;
  background: var(--brand-accent);
}

.header-cta-group {
  display: flex;
  gap: 14px;
}

.ui-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 36px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: all var(--transition);
}

.ui-button--solid {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: rgb(5 5 5);
}

.ui-button--solid:hover {
  background: rgb(244 244 244);
  border-color: rgb(244 244 244);
}

.ui-button--ghost {
  background: transparent;
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.ui-button--ghost:hover {
  color: rgb(248 248 248);
  border-color: rgb(248 248 248);
}

.ui-button--download {
  width: 100%;
  justify-content: space-between;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgb(4 88 67), rgb(6 136 101));
  color: rgb(255 255 255);
  box-shadow: 0 6px 20px rgb(5 84 64 / 0.28);
}

.ui-button--download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.28);
}

.ui-button--bonus {
  padding: 20px 28px;
  border-radius: var(--radius-md);
  background: var(--brand-accent);
  color: rgb(0 0 0);
  font-size: 16px;
  font-weight: 800;
}

.ui-button--bonus:hover {
  transform: translateY(-2px);
}

.ui-button--secondary {
  padding: 20px 28px;
  border: 2px solid var(--brand-highlight);
  border-radius: var(--radius-md);
  background: transparent;
  color: rgb(255 255 255);
  font-size: 16px;
  font-weight: 700;
}

.ui-button--secondary:hover {
  background: rgb(250 228 52 / 0.08);
}

.ui-button__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ui-button__note {
  font-size: 15px;
  text-align: right;
}

.ui-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.ui-icon--gift {
  width: 28px;
  height: 28px;
}

.promo-strip button span,
.sports-hub span,
.sports-hub img {
  pointer-events: none;
}

.promo-strip__list {
  display: flex;
  gap: 10px;
  padding: 32px 0 10px;
  list-style: none;
  overflow-x: auto;
}

.promo-strip__item {
  flex: 0 0 auto;
  padding: 0;
}

.promo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 340px;
  min-height: 205px;
  padding: 12px 12px 10px;
  border: 2px solid #185341;
  border-radius: var(--radius-xs);
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  text-align: left;
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.promo-card__tag {
  margin-bottom: 8px;
  color: var(--brand-accent);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgb(25 70 61 / 0.65);
}

.promo-card__title {
  display: -webkit-box;
  max-width: 222px;
  overflow: hidden;
  color: var(--text-main);
  font-size: 28px;
  font-style: oblique;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 6px rgb(25 70 61 / 0.65);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.promo-card__text {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  display: -webkit-box;
  overflow: hidden;
  color: rgb(247 247 247 / 0.78);
  font-size: 11px;
  font-style: oblique;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sports-hub__list {
  display: flex;
  gap: 5px;
  padding: 32px 0 8px;
  list-style: none;
  overflow-x: auto;
}

.sports-hub__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  min-width: 90px;
  padding: 10px 0;
  background: #3e3e3e;
  border-radius: 8px;
  border: 1px solid #464646;
}

.sports-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  transition: transform var(--transition);
}

.sports-chip:hover {
  transform: scale(1.04);
}

.sports-chip__icon {
  width: 25px;
  height: 25px;
}

.sports-chip__label {
  color: rgb(247 247 247);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.match-panel {
  margin: 40px 0 10px;
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  background: rgb(41 41 42);
  box-shadow: var(--shadow-card);
}

.match-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-strong);
}

.match-panel__league-meta {
  display: flex;
  flex-direction: column;
}

.match-panel__league-name {
  color: rgb(255 255 255);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.match-panel__round {
  margin-top: 4px;
  color: rgb(181 181 181);
  font-size: 14px;
}

.match-panel__filters {
  display: flex;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line-soft);
  border-radius: 15984px;
  background: rgb(55 55 55);
}

.match-panel__filter {
  padding: 8px 20px;
  border-radius: 15984px;
  background: transparent;
  color: rgb(224 224 224);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}

.match-panel__filter:hover {
  background: rgb(69 69 69);
  color: rgb(255 255 255);
}

.match-panel__filter.is-active {
  background: var(--brand-accent);
  color: rgb(51 51 51);
  box-shadow: 0 2px 8px rgb(3 83 63 / 0.35);
}

.match-banner {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 20px;
  padding: 25px 30px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgb(3 86 66), rgb(22 65 55));
  overflow: hidden;
}

.match-banner__card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}

.match-banner__time {
  padding: 4px 12px;
  border-radius: 15984px;
  background: rgb(255 255 255 / 0.14);
  color: rgb(255 255 255);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.match-banner__teams {
  display: flex;
  align-items: center;
  gap: 15px;
}

.match-banner__team {
  color: rgb(255 255 255);
  font-size: 24px;
  font-weight: 700;
}

.match-banner__versus {
  color: rgb(255 255 255 / 0.72);
  font-size: 18px;
  font-weight: 600;
}

.match-banner__odds {
  display: flex;
  gap: 15px;
}

.match-odd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 20px;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.1);
  transition: opacity var(--transition);
}

.match-odd:hover {
  opacity: 0.75;
}

.match-odd__type {
  color: rgb(255 255 255 / 0.8);
  font-size: 12px;
}

.match-odd__value {
  color: rgb(255 255 255);
  font-size: 18px;
  font-weight: 700;
}

.hero-media img {
  width: 100%;
  margin-bottom: 16px;
  object-fit: cover;
}

.article-content p,
.article-content a {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.article-content a {
  color: var(--brand-accent);
}

.article-content a:hover {
  color: var(--brand-highlight);
}

.casino-showcase__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding: 10px;
}

.casino-showcase__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  background-color: #3e3e3e;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #464646;
}

.game-grid img {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 3px 6px rgb(0 0 0 / 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.22);
}

.page-breadcrumbs {
  padding-top: 30px;
}

#breadcrumbs {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding: 15px 20px;
  border-radius: 7px;
  background: rgb(56 56 57);
  color: rgb(255 255 254);
  font-size: 14px;
}

#breadcrumbs a {
  margin-right: 5px;
  color: rgb(0 249 181);
  font-weight: 700;
}

#breadcrumbs a:hover {
  text-decoration: underline;
}

#breadcrumbs .breadcrumb_last {
  margin-left: 10px;
  color: rgb(255 255 254);
  font-weight: 700;
}

#breadcrumbs span {
  display: flex;
}

.app-hero {
  border-radius: var(--radius-sm);
  background: rgb(55 55 55);
}

.app-hero__header {
  padding: 20px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: rgb(68 68 68);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.app-hero__body {
  padding: 30px;
}

.app-hero__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.app-hero__visual,
.app-hero__actions {
  flex: 1 1 320px;
}

.app-hero__image {
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.35);
}

.download-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 0.05);
}

.app-stats__item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.app-stats__item--align-end {
  justify-content: flex-end;
}

.app-stats__value {
  font-size: 21px;
  font-weight: 700;
}

.app-stats__label {
  font-size: 14px;
  opacity: 0.8;
}

.rating-stars {
  display: flex;
  gap: 6px;
}

.rating-star {
  width: 24px;
  height: 24px;
  fill: rgb(244 218 34);
}

.app-hero__description {
  margin-top: 32px;
  padding: 20px 20px 5px;
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 0.05);
  box-shadow: var(--shadow-soft);
}

.bonus-hero {
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.05);
  border-radius: var(--radius-md);
  background: rgb(41 41 41);
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.45);
}

.bonus-hero__banner {
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-accent-from), var(--bg-accent-to));
  text-align: center;
}

.bonus-hero__badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 20px;
  border-radius: 15984px;
  background: var(--brand-accent);
  color: rgb(0 0 0);
  font-weight: 700;
}

.bonus-hero__title {
  display: block;
  margin-bottom: 15px;
  color: rgb(255 255 255);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
}

.bonus-hero__text {
  max-width: 700px;
  margin: 0 auto 25px;
  color: rgb(255 255 255);
  opacity: 0.9;
}

.promo-strip__list,
.sports-hub__list {
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.promo-strip__list::-webkit-scrollbar,
.sports-hub__list::-webkit-scrollbar {
  display: none;
}

.footer-panel {
  padding: 28px 0 22px;
  background: rgb(38 38 39);
  border-top: 1px solid rgb(56 56 57);
}

.footer-panel__top {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 28px;
  padding: 0 0 26px;
  border-bottom: 1px solid rgb(58 58 59);
}

.footer-panel__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-panel__brand-link {
  display: inline-flex;
  width: fit-content;
}

.footer-panel__brand-logo {
  width: 96px;
  max-width: 100%;
  opacity: 0.96;
}

.footer-panel__nav-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-nav-box {
  padding: 14px 16px 16px;
  border: 1px solid rgb(61 61 62);
  border-radius: 12px;
  background: rgb(44 44 45);
}

.footer-nav-box__title {
  display: block;
  margin-bottom: 12px;
  color: rgb(246 246 247);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu__item + .footer-menu__item {
  margin-top: 8px;
}

.footer-menu__link {
  color: rgb(149 149 151);
  font-size: 14px;
  line-height: 1.45;
  transition: color 0.28s ease, opacity 0.28s ease;
}

.footer-menu__link:hover {
  color: rgb(241 241 242);
  opacity: 1;
}

.footer-panel__trust {
  padding: 22px 0 20px;
  border-bottom: 1px solid rgb(58 58 59);
}

.footer-panel__trust-title {
  display: block;
  margin-bottom: 14px;
  color: rgb(244 244 245);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgb(64 64 65);
  border-radius: 999px;
  background: rgb(45 45 46);
}

.footer-badge--wide {
  padding-right: 16px;
}

.footer-badge__icon {
  display: block;
  flex-shrink: 0;
  opacity: 0.94;
}

.footer-badge__icon--wide {
  width: auto;
  height: 20px;
}

.footer-badge__text {
  color: rgb(229 229 230);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.footer-panel__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
}

.footer-panel__copyright {
  margin: 0;
  color: rgb(156 156 158);
  font-size: 13px;
  line-height: 1.5;
}

.featured-matches {
  border-radius: 0.75rem;
  color: rgb(255 255 255);
  margin-top: 30px;
}

.featured-matches__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.featured-matches__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.featured-matches__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.featured-matches__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.275rem 0.875rem;
  border: 1px solid rgb(148 148 150);
  border-radius: 999px;
  color: rgb(255 255 255);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
  background-color: #282829;
}

.featured-matches__link:hover {
  border-color: rgb(255 255 255);
  background: rgb(255 255 255 / 0.06);
}

.featured-matches__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.375rem;
}

.match-card {
  display: flex;
  flex-direction: column;
  min-height: 13.875rem;
  border-radius: 0.375rem;
  background: rgb(58 58 59);
  overflow: hidden;
}

.match-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2rem;
  padding: 0.5rem 0.625rem;
  border-bottom: 1px solid rgb(84 84 86);
  background: rgb(64 64 65);
}

.match-card__promo {
  color: rgb(255 255 255);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.match-card__promo--green {
  color: rgb(37 242 159);
}

.match-card__count {
  color: rgb(255 196 60);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.match-card__body {
  flex: 1 1 auto;
  padding: 0.75rem 0.625rem 0.875rem;
}

.match-card__market {
  margin: 0 0 0.75rem;
  color: rgb(255 255 255);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.match-card__meta {
  margin-bottom: 0.625rem;
}

.match-card__tag {
  display: block;
  margin-bottom: 0.25rem;
  color: rgb(255 255 255);
  font-size: 0.8125rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

.match-card__teams {
  display: block;
  color: rgb(255 255 255);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.match-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-card__list li {
  position: relative;
  padding-left: 1.125rem;
  color: rgb(255 255 255);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.match-card__list li + li {
  margin-top: 0.3125rem;
}

.match-card__list li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0.125rem;
  width: 0.375rem;
  height: 0.375rem;
  border: 1px solid rgb(198 198 199);
  border-radius: 50%;
}

.match-card__footer {
  width: 100%;
  padding: 8px 10px 6px;
  border: none;
  border-top: 1px solid rgb(84 84 86);
  background: rgb(58 58 59);
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease;
}

.match-card__footer:hover {
  background: rgb(66 66 67);
}

.match-card__footer .match-card__odds,
.match-card__footer .match-card__note,
.match-card__footer .match-card__price-row {
  display: block;
}

.match-card__more {
  margin-top: 10px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgb(0 255 170);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.match-card__odds {
  color: rgb(255 255 255);
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.1;
}

.match-card__odds--highlight {
  color: rgb(255 255 255);
  font-size: 1.625rem;
}

.match-card__note {
  margin-top: 0.1875rem;
  color: rgb(225 225 226);
  font-size: 0.6875rem;
  line-height: 1.3;
}

.match-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.375rem;
}

.match-card__old {
  color: rgb(181 181 182);
  font-size: 0.9375rem;
  text-decoration: line-through;
}

.match-card__arrow {
  color: rgb(0 255 170);
  font-size: 1rem;
  font-weight: 800;
}

.match-card--special {
  background: rgb(63 63 64);
}

.sports-nav {
  width: 100%;
  border-bottom: 1px solid rgb(70 70 70);
  margin: 10px 0;
}

.sports-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.sports-nav__list::-webkit-scrollbar {
  display: none;
}

.sports-nav__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  border: none;
  background: transparent;
  color: rgb(210 210 210);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.sports-nav__btn:hover {
  color: rgb(255 255 255);
}

.sports-nav__btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: transparent;
}

.sports-nav__btn.is-active {
  color: rgb(255 255 255);
}

.sports-nav__btn.is-active::after {
  background: rgb(0 230 150);
}

.b365content {
  background: var(--bg-surface);
  padding: 1.5rem;
  border-radius: 9px;
  border: 1px solid var(--line-soft);
  margin: 20px 0;
}

.wp-block-heading {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.25;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 1rem;
}

.wp-block-columns {
  gap: 2.5rem;
}

.wp-block-image img {
  border-radius: 12px;
  border: 1px solid var(--line-soft);
	max-width: 780px;
  width: 100%;
  height: auto;
	margin-bottom: 20px;
}

.wp-block-column p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}

.wp-block-column p + .wp-block-list {
  margin-top: 1rem;
}

.wp-block-list {
  list-style: none;
  padding-left: 0;
  margin: 1.4rem 0;
  background: var(--bg-surface-2);
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}

.wp-block-list li {
  padding: 0.8rem 1rem 0.8rem 2.2rem;
  position: relative;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}

.wp-block-list li:last-child {
  border-bottom: none;
}

.wp-block-list li::before {
  content: "●";
  color: var(--brand-accent);
  font-size: 1rem;
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
}

ol.wp-block-list {
  list-style: none;
  padding-left: 0;
  margin: 1.4rem 0;
  background: var(--bg-surface-2);
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  counter-reset: list-num;
}

ol.wp-block-list li {
  counter-increment: list-num;
  padding: 0.8rem 1rem 0.8rem 2.6rem;
  position: relative;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}

ol.wp-block-list li:last-child {
  border-bottom: none;
}

ol.wp-block-list li::before {
  content: counter(list-num) ".";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-accent);
  font-weight: 600;
}

.wp-block-list + p {
  margin-top: 1.8rem;
}

.wp-block-table {
  margin: 2rem 0;
  background: var(--bg-surface);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.wp-block-table thead th {
  background: var(--bg-surface-2);
  color: var(--text-main);
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}

.wp-block-table thead th:first-child {
  border-top-left-radius: 12px;
}

.wp-block-table thead th:last-child {
  border-top-right-radius: 12px;
}

.wp-block-table tbody tr {
  border-bottom: 1px solid var(--line-soft);
}

.wp-block-table th {
  border: none !important;
}

.wp-block-table td {
  border: none !important;
}

.wp-block-table td {
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line-soft);
}

.wp-block-table tbody tr:last-child td {
  border-bottom: none;
}

.wp-block-table td:first-child {
  color: var(--text-main);
  font-weight: 500;
}

.schema-faq {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schema-faq-section {
  background: var(--bg-surface);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
}

.schema-faq-question {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.schema-faq-question::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--brand-accent);
  margin-top: 0.6rem;
}

.schema-faq-answer {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 0.7rem;
}

.support-contact {
  padding: 40px 0;
}

.support-contact__wrap {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.support-contact__intro,
.support-form-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgb(48 48 49), rgb(41 41 42));
  box-shadow: var(--shadow-card);
}

.support-contact__intro {
  padding: 28px;
}

.support-contact__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(48 242 186 / 0.12);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.support-contact__title {
  margin-bottom: 14px;
  color: rgb(255 255 255);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.support-contact__text {
  margin-bottom: 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.support-contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-info-card {
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 0.04);
}

.support-info-card__label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.support-info-card__value {
  display: block;
  color: rgb(255 255 255);
  font-size: 15px;
  font-weight: 700;
}

.support-form-card {
  padding: 28px;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.support-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-field--full {
  grid-column: 1 / -1;
}

.support-field__label {
  color: rgb(244 244 244);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.support-field__control {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgb(76 76 77);
  border-radius: var(--radius-sm);
  background: rgb(57 57 58);
  color: rgb(255 255 255);
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.support-field__control::placeholder {
  color: rgb(174 174 175);
}

.support-field__control:hover {
  border-color: rgb(96 96 98);
}

.support-field__control:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgb(48 242 186 / 0.14);
  background: rgb(60 60 61);
}

.support-field__control--textarea {
  min-height: 180px;
  resize: vertical;
}

.support-field__control--select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-accent) 50%),
    linear-gradient(135deg, var(--brand-accent) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.support-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 6px;
}

.support-check {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  max-width: 620px;
}

.support-check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.support-check__box {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1px solid rgb(98 98 99);
  border-radius: 5px;
  background: rgb(58 58 59);
  transition: all var(--transition);
}

.support-check__text {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.support-check__input:checked + .support-check__box {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
}

.support-check__input:checked + .support-check__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid rgb(0 0 0);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.support-form__submit {
  min-width: 190px;
  min-height: 52px;
  padding-inline: 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}



@media (max-width: 1200px) {
  .game-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

@media (max-width: 1140px) {
  .app-hero__body {
    padding: 20px 10px;
  }

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

  .match-banner > *:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(255 255 255 / 0.2);
  }

  .match-banner__card,
  .match-banner__time {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .featured-matches__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .footer-panel__top {
    grid-template-columns: 1fr;
  }

  .footer-panel__nav-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
	.support-contact__wrap {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
  .wp-block-group {
    padding: 0.8rem;
  }

  .wp-block-columns {
    flex-direction: column;
    gap: 1.8rem;
  }

  .wp-block-heading {
    font-size: 1.6rem;
  }

  .b365content {
    padding: 0.5rem;
  }

  .wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wp-block-table table {
    min-width: 760px;
  }

  .schema-faq-section {
    padding: 1rem 1.1rem;
  }

  .schema-faq-question {
    font-size: 1rem;
  }
}

@media (max-width: 860px) {
  .layout-header {
    position: relative;
  }

  .layout-header__inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .primary-nav {
    order: 3;
    flex-basis: 100%;
    width: 100%;
  }

  .primary-nav__list {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 15px 20px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .primary-nav__link {
    padding: 8px 0;
    font-size: 12px;
    white-space: nowrap;
  }

  .primary-nav__item:first-child .primary-nav__link::after {
    bottom: -4px;
    height: 3px;
  }

  .page-main {
    padding-top: 0;
  }

  .app-hero__grid {
    flex-direction: column;
  }

  .app-hero__visual, .app-hero__actions {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 15px;
  }

  .game-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .match-panel {
    padding: 20px 10px;
  }

  .match-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .match-panel__league-name {
    font-size: 20px;
  }

  .match-banner__teams,
  .match-banner__odds {
    justify-content: center;
  }

  .bonus-hero__banner {
    padding: 30px 20px;
  }

  .bonus-hero__title {
    font-size: 29px;
  }

  .bonus-hero__text {
    font-size: 14px;
  }
	
	.support-form__grid {
		grid-template-columns: 1fr;
  }

  .support-field--full {
    grid-column: auto;
  }

  .support-form__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .support-form__submit {
    width: 100%;
  }

  .support-contact__intro,
  .support-form-card {
    padding: 20px;
  }

  .support-contact__title {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .footer-panel {
    padding: 24px 0 18px;
  }

  .footer-panel__top {
    gap: 20px;
    padding-bottom: 20px;
  }

  .footer-panel__nav-wrap {
    grid-template-columns: 1fr;
  }

  .footer-nav-box {
    padding: 12px 14px 14px;
  }

  .footer-badge-row {
    gap: 10px;
  }

  .footer-badge {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }

  .footer-panel__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .featured-matches__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .layout-shell,
  .page-main {
    width: min(100% - 16px, var(--container));
  }

  .header-cta-group .ui-button--ghost {
    display: none;
  }

  .app-stats {
    flex-direction: column;
  }

  .app-stats__item,
  .app-stats__item--align-end {
    justify-content: space-between;
  }

  .casino-showcase__head {
    gap: 20px;
  }

  .casino-showcase__title {
    font-size: 16px;
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .ui-button__note {
    font-size: 13px;
  }

  .bonus-hero__title {
    font-size: 24px;
  }

  .ui-button--bonus,
  .ui-button--secondary {
    padding: 16px 20px;
    font-size: 14px;
  }
	
	  .support-contact {
    padding: 28px 0;
  }

  .support-contact__intro,
  .support-form-card {
    padding: 16px;
  }

  .support-field__control {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .support-field__control--textarea {
    min-height: 150px;
  }
}

@media (max-width: 360px) {
  .game-grid {
    padding: 8px;
    gap: 4px;
  }
}