/* Leon home layout (preview) */

@font-face {
  font-family: "Klapt Cyrillic Bold";
  src: url("./fonts/klapt-cyrillic-bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

:root {
  --le-surface-dark: #1c1c1c;
  --le-surface-middle: #262626;
  --le-surface-light: #333333;
  --le-surface-input: #2a2a2a;
  --le-grey-500: #9ca3af;
  --le-orange: #ff6633;
  --le-orange-hover: #ff8555;
  --le-green: #00ff85;
  --le-violet: #c4b5fd;
  --le-header-h: 56px;
  --le-radius-xs: 4px;
  --le-radius-sm: 8px;
  --le-radius-md: 12px;
  --le-radius-lg: 16px;
  --le-radius-pill: 999px;
  --le-radius-round: 50%;
}

/* Header */
.le-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: var(--le-card, #22262a);
}

.le-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  width: 100%;
  min-height: var(--le-header-h);
  padding: 0 16px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.le-header-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.le-header-bar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.le-header-bar__menu {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: var(--le-radius-sm);
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

.le-header-bar__menu.le-burger {
  display: inline-flex;
}

.le-header-bar__menu:hover {
  background: var(--le-surface-light);
}

.le-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}

.le-logo img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 107px;
}

.le-nav {
  display: none;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.le-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

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

@media (min-width: 900px) {
  .le-nav {
    display: block;
  }
}

@media (min-width: 1200px) {
  .le-header-bar__menu,
  .le-header-bar__menu.le-burger {
    display: none;
  }
}

.le-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--le-radius-sm);
  transition: background 0.15s, color 0.15s;
}

.le-nav__item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.le-nav__item--active {
  color: var(--le-accent, #1fad66);
}

.le-nav__item--icon .le-nav__icon {
  flex-shrink: 0;
  display: block;
}

.le-header-bar__tools {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 900px) {
  .le-header-bar__tools {
    display: flex;
  }
}

.le-header-bar__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: var(--le-radius-round);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.15s;
}

.le-header-bar__search:hover {
  background: rgba(255, 255, 255, 0.08);
}

.le-theme-switch {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.le-theme-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.le-theme-switch__track {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: var(--le-radius-pill);
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.15s;
}

.le-theme-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.15s;
}

.le-theme-switch input:checked + .le-theme-switch__track .le-theme-switch__thumb,
.le-theme-switch input:checked ~ .le-theme-switch__thumb {
  transform: translateX(20px);
}

.le-theme-switch__track {
  position: relative;
}

.le-theme-switch input:checked + .le-theme-switch__track {
  background: var(--le-accent, #1fad66);
}

.le-theme-switch input + .le-theme-switch__track .le-theme-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
}

.le-theme-switch input:checked + .le-theme-switch__track .le-theme-switch__thumb {
  transform: translateX(20px);
}

.le-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
}

.le-lang-select {
  flex-shrink: 0;
}

.le-lang-select__field {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border: none;
  border-radius: var(--le-radius-sm);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.le-lang-select__field:hover {
  background: var(--le-surface-light);
}

.le-lang-select__flag {
  display: inline-flex;
  line-height: 0;
}

.le-lang-select__flag img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.le-lang-select__code {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: lowercase;
}

.le-lang-select__arrow {
  flex-shrink: 0;
  opacity: 0.7;
}

.le-auth__login {
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--le-radius-sm);
  text-transform: uppercase;
  transition: background 0.15s;
}

.le-auth__login:hover {
  background: var(--le-surface-light);
  color: #fff;
}

.le-auth__register {
  padding: 8px 16px;
  background: var(--le-accent, #1fad66);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--le-radius-sm);
  text-transform: uppercase;
  transition: background 0.15s;
}

.le-auth__register:hover {
  background: var(--le-accent-hover, #169c59);
  color: #fff;
}

@media (max-width: 899px) {
  .le-header-bar {
    gap: 8px;
    padding: 0 10px;
  }

  .le-logo img {
    height: 20px;
    max-width: 90px;
  }

  .le-header-bar__tools {
    display: none;
  }

  .le-auth__login {
    display: none;
  }

  .le-auth {
    gap: 0;
  }

  .le-auth__register {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .le-broadcast__link {
    gap: 10px;
    padding: 0 10px;
  }

  .le-broadcast__text {
    font-size: 14px;
  }

  .le-broadcast__btn {
    font-size: 11px;
    height: 26px;
  }
}

@media (max-width: 360px) {
  .le-header-nav {
    gap: 6px;
    padding: 0 8px;
  }

  .le-logo img {
    height: 24px;
    max-width: 62px;
  }

  .le-auth__register {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* Sections */
.le-section {
  padding: 16px 8px;
  max-width: var(--le-max);
  margin: 0 auto;
}

.le-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 8px;
}

.le-section-head__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.le-section-head__link {
  padding: 4px 12px;
  background: var(--le-surface-input);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--le-radius-md);
  transition: background 0.15s;
}

.le-section-head__link:hover {
  background: var(--le-surface-light);
  color: #fff;
}

/* Main banners (Leon headline-bn) */
.le-carousel-wrap {
  padding: 0;
  max-width: none;
  width: calc(100% + 32px);
  margin-inline: -16px;
}

.le-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(156px, 42vw, 200px);
  background: var(--le-base-alt, #171a1c);
  border-radius: 0;
  --le-carousel-visible: 1.15;
  --le-carousel-gap: 12px;
  --le-carousel-pad: 8px;
}

.le-carousel__track {
  position: relative;
  display: flex;
  gap: var(--le-carousel-gap);
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
  scroll-padding-inline: var(--le-carousel-pad);
  padding-inline: var(--le-carousel-pad);
  box-sizing: border-box;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  --le-carousel-gap-count: calc(var(--le-carousel-visible) - 1);
  --le-carousel-slide: calc(
    (100% - var(--le-carousel-pad) * 2 - var(--le-carousel-gap) * var(--le-carousel-gap-count))
    / var(--le-carousel-visible)
  );
}

.le-carousel__track::-webkit-scrollbar {
  display: none;
}

.le-carousel__slide {
  flex: 0 0 var(--le-carousel-slide);
  min-width: var(--le-carousel-slide);
  max-width: var(--le-carousel-slide);
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.le-headline-bn {
  position: relative;
  display: block;
  height: 100%;
  border-radius: var(--le-radius-md);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.le-headline-bn__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.le-headline-bn__content {
  position: relative;
  z-index: 1;
  max-width: 62%;
  padding: 16px 16px 44px;
}

.le-headline-bn__heading {
  margin: 0 0 8px;
  font-family: "Klapt Cyrillic Bold", sans-serif;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
}

.le-headline-bn__subheading {
  display: block;
  font-size: 0.85em;
}

.le-headline-bn__text {
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.le-headline-bn__btn {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--le-accent, #1fad66);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--le-radius-xs);
}

.le-headline-bn__btn:hover {
  background: var(--le-accent-hover, #169c59);
  color: #fff;
}

.le-headline-bn--sport .le-headline-bn__bg {
  object-position: top left;
}

.le-headline-bn--sport .le-headline-bn__sport {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 16px 12px 20px;
  pointer-events: none;
}

.le-headline-bn__sport-wrap {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  justify-content: space-between;
  width: min(180px, 100%);
  min-height: 0;
  pointer-events: auto;
}

.le-headline-bn__teams {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.le-headline-bn__team {
  display: block;
  padding: 2px 8px;
  font-size: clamp(11px, 2.2vw, 14px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.le-headline-bn__middle {
  display: grid;
  gap: 2px;
  place-items: center;
  width: 100%;
}

.le-headline-bn__bottom {
  width: 100%;
}

.le-headline-bn__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  line-height: 1;
}

.le-headline-bn__score-item {
  display: grid;
  place-items: center;
  width: clamp(28px, 7vw, 36px);
  height: clamp(28px, 7vw, 36px);
  font-size: clamp(16px, 3.6vw, 23px);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.3) 100%),
    #000;
  border-radius: 8px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -1px rgba(0, 0, 0, 0.3),
    0 1px #000;
}

.le-headline-bn__score-divider {
  position: relative;
  flex-shrink: 0;
  width: 4px;
  height: clamp(28px, 7vw, 36px);
}

.le-headline-bn__score-divider::before,
.le-headline-bn__score-divider::after {
  position: absolute;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  content: "";
  background: #fff;
  border-radius: 1px;
  transform: translateY(-50%);
}

.le-headline-bn__score-divider::before {
  top: calc(50% - 4px);
}

.le-headline-bn__score-divider::after {
  top: calc(50% + 4px);
}

.le-headline-bn__stage {
  display: inline-flex;
  gap: 4px;
  margin: 0;
  padding: 2px 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 2px;
}

.le-headline-bn__stage > span:first-child {
  font-weight: 600;
}

.le-headline-bn__market {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
}

.le-headline-bn__odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.le-headline-bn__odd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  min-width: 0;
  padding: 6px 8px;
  border: none;
  border-radius: var(--le-radius-xs);
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.le-headline-bn__odd span {
  opacity: 0.72;
  font-size: 11px;
  font-weight: 600;
}

.le-headline-bn__odd strong {
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .le-headline-bn--sport .le-headline-bn__sport {
    padding: 20px 16px 24px;
  }

  .le-headline-bn__team {
    font-size: 14px;
  }

  .le-headline-bn__market {
    font-size: 11px;
  }
}

.le-carousel__nav {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: none;
}

.le-carousel__nav-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: var(--le-radius-xs);
  background: rgba(11, 13, 14, 0.72);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.le-carousel__nav-btn:hover {
  background: rgba(11, 13, 14, 0.9);
}

@media (min-width: 576px) {
  .le-carousel {
    --le-carousel-visible: 1.6;
    --le-carousel-gap: 8px;
    --le-carousel-pad: 10px;
    height: clamp(180px, 34vw, 220px);
  }
}

@media (min-width: 768px) {
  .le-carousel {
    --le-carousel-visible: 2;
    height: clamp(200px, 30vw, 240px);
    border-radius: var(--le-radius-md);
  }

  .le-headline-bn__content {
    padding: 20px 24px 48px;
  }

  .le-headline-bn__btn {
    left: 24px;
    bottom: 20px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .le-carousel__nav {
    right: 16px;
    bottom: 16px;
  }
}

@media (min-width: 1024px) {
  .le-carousel-wrap {
    width: 100%;
    margin-inline: 0;
  }

  .le-carousel {
    --le-carousel-visible: 2.5;
    --le-carousel-gap: 12px;
    --le-carousel-pad: 12px;
    height: 240px;
  }
}

@media (min-width: 1400px) {
  .le-carousel {
    height: clamp(240px, 18vw, 280px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .le-carousel__track {
    scroll-behavior: auto;
  }
}

/* Showcase categories */
.le-showcase-nav-wrap {
  padding: 8px 0 12px;
}

.le-showcase-nav {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 88px;
}

.le-showcase-nav__track {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 8px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 48px), transparent 100%);
}

.le-showcase-nav__track::-webkit-scrollbar {
  display: none;
}

.le-showcase-nav__item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 88px;
  min-height: 72px;
  padding: 8px 6px 10px;
  border-radius: var(--le-radius-sm, 8px);
  background: #22262a;
  color: #fff;
  text-decoration: none;
  scroll-snap-align: start;
  transition: background 0.15s ease, transform 0.15s ease;
}

.le-showcase-nav__item:hover {
  background: #2a2f35;
  transform: translateY(-1px);
}

.le-showcase-nav__icon {
  display: block;
  width: 36px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
}

.le-showcase-nav__item--plain .le-showcase-nav__icon {
  margin: 6px 0 0;
}

.le-showcase-nav__label {
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

/* .le-showcase-nav__item--live {
  background: linear-gradient(180deg, rgba(198, 40, 40, 0.22) 0%, #22262a 100%);
}

.le-showcase-nav__item--highest-odds {
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.18) 0%, #22262a 100%);
}

.le-showcase-nav__item--cybersport {
  background: linear-gradient(180deg, rgba(123, 63, 228, 0.22) 0%, #22262a 100%);
}

.le-showcase-nav__item--cherry {
  background: linear-gradient(180deg, rgba(233, 64, 87, 0.2) 0%, #22262a 100%);
}

.le-showcase-nav__item--roulette {
  background: linear-gradient(180deg, rgba(9, 134, 71, 0.22) 0%, #22262a 100%);
}

.le-showcase-nav__item--tv {
  background: linear-gradient(180deg, rgba(46, 89, 131, 0.22) 0%, #22262a 100%);
}

.le-showcase-nav__item--fastgames {
  background: linear-gradient(180deg, rgba(255, 152, 0, 0.2) 0%, #22262a 100%);
}

.le-showcase-nav__item--actions {
  background: linear-gradient(180deg, rgba(9, 134, 71, 0.18) 0%, #22262a 100%);
} */

.le-showcase-nav__next {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(34, 38, 42, 0.95);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: -8px 0 16px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.le-showcase-nav__next:hover {
  background: #2a2f35;
  color: #fff;
}

.le-showcase-nav__next[hidden] {
  display: none;
}

@media (min-width: 640px) {
  .le-showcase-nav-wrap {
    padding: 12px 0 16px;
  }

  .le-showcase-nav__track {
    gap: 10px;
    padding-inline: 12px;
  }

  .le-showcase-nav__item {
    width: 96px;
    min-height: 76px;
  }

  .le-showcase-nav__label {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .le-showcase-nav__track {
    mask-image: none;
    flex-wrap: wrap;
    overflow: visible;
    scroll-snap-type: none;
  }

  .le-showcase-nav__next {
    display: none;
  }
}

/* Games scroll */
.le-games-scroll,
.le-providers-scroll,
.le-promo-scroll,
.le-matches-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 8px 8px;
  scrollbar-width: none;
}

.le-games-scroll::-webkit-scrollbar,
.le-providers-scroll::-webkit-scrollbar,
.le-promo-scroll::-webkit-scrollbar,
.le-matches-scroll::-webkit-scrollbar {
  display: none;
}

.le-game-card {
  flex-shrink: 0;
  width: 160px;
}

.le-game-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--le-radius-sm);
  background: var(--le-surface-middle);
}

.le-game-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.le-game-card:hover .le-game-card__img-wrap img {
  transform: scale(1.05);
}

.le-game-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.le-game-card:hover .le-game-card__overlay {
  opacity: 1;
}

.le-game-card__play {
  width: 100%;
  padding: 8px;
  background: var(--le-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  border-radius: var(--le-radius-sm);
}

.le-game-card__demo {
  width: 100%;
  padding: 8px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--le-radius-sm);
}

.le-game-card__title {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.le-game-card__provider {
  font-size: 12px;
  color: var(--le-grey-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Providers */
.le-provider {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 44px;
  padding: 4px 8px;
  background: var(--le-surface-light);
  border-radius: var(--le-radius-sm);
  transition: background 0.15s;
}

.le-provider:hover {
  background: var(--le-surface-input);
}

.le-provider img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Match cards */
.le-match-card {
  flex-shrink: 0;
  width: min(400px, 85vw);
  background: var(--le-surface-middle);
  border-radius: var(--le-radius-sm);
  overflow: hidden;
}

.le-match-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.le-match-card__link:hover {
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
}

.le-match-card__tournament {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--le-surface-middle);
  border-bottom: 1px solid var(--le-surface-dark);
  font-size: 14px;
  color: #fff;
}

.le-match-card__tournament img {
  border-radius: var(--le-radius-xs);
}

.le-match-card__body {
  padding: 16px 16px 0;
}

.le-match-card__odds {
  display: flex;
  gap: 4px;
  padding: 16px;
}

.le-match-card__status {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--le-grey-500);
}

.le-match-card__live {
  color: var(--le-green);
  font-weight: 600;
}

.le-match-card__teams {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.le-match-card__teams--center {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.le-match-card__team,
.le-match-card__team-col {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

.le-match-card__team-col {
  flex-direction: column;
  text-align: center;
  flex: 1;
}

.le-match-card__team-col img,
.le-match-card__team img {
  width: 32px;
  height: 32px;
  border-radius: var(--le-radius-round);
  object-fit: contain;
  background: var(--le-surface-light);
}

.le-match-card__team-col img {
  width: 40px;
  height: 40px;
}

.le-match-card__vs {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.le-odd {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 8px;
  background: var(--le-surface-light);
  border: none;
  border-radius: var(--le-radius-sm);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.le-odd:hover {
  background: var(--le-surface-dark);
}

.le-odd span {
  font-size: 12px;
  color: #fff;
}

.le-odd strong {
  font-size: 14px;
  color: var(--le-violet);
  font-weight: 600;
}

/* Promo */
.le-tabs {
  display: flex;
  gap: 4px;
}

.le-tabs__item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: var(--le-surface-input);
  border: none;
  border-radius: var(--le-radius-lg);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.le-tabs__item--active {
  background: rgba(255, 102, 51, 0.1);
  color: var(--le-orange);
}

.le-tabs__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--le-surface-light);
  font-size: 11px;
  border-radius: var(--le-radius-round);
}

.le-tabs__item--active span {
  background: var(--le-orange);
  color: #fff;
}

/* Home promotions */
.le-home-promotions {
  padding-top: 8px;
}

.le-home-promotions__head {
  padding: 0 8px 12px;
}

.le-home-promotions__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.le-home-promotions__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.le-home-promotions__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.le-home-promotions__heading:hover .le-home-promotions__all {
  background: rgba(255, 255, 255, 0.12);
}

.le-home-promotions__slider {
  position: relative;
}

.le-home-promotions__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 8px 8px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 48px), transparent 100%);
}

.le-home-promotions__track::-webkit-scrollbar {
  display: none;
}

.le-home-promotions__slide {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: min(320px, 78vw);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
}

.le-home-promotions__slide:hover {
  transform: translateY(-2px);
}

.le-home-promotions__image-wrap {
  margin: 0;
  overflow: hidden;
  border-radius: var(--le-radius-sm, 8px);
  background: #22262a;
  aspect-ratio: 1125 / 469;
}

.le-home-promotions__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.le-home-promotions__slide-title {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.le-home-promotions__slide-desc {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.le-home-promotions__next {
  position: absolute;
  top: 38%;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(34, 38, 42, 0.95);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: -8px 0 16px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.le-home-promotions__next:hover {
  background: #2a2f35;
  color: #fff;
}

.le-home-promotions__next[hidden] {
  display: none;
}

@media (min-width: 640px) {
  .le-home-promotions__head {
    padding-inline: 12px;
  }

  .le-home-promotions__track {
    gap: 16px;
    padding-inline: 12px;
  }

  .le-home-promotions__slide {
    width: 340px;
  }
}

@media (min-width: 1200px) {
  .le-home-promotions__track {
    mask-image: none;
  }

  .le-home-promotions__next {
    display: none;
  }
}

.le-promo-card {
  flex-shrink: 0;
  width: 308px;
  padding: 16px;
  border-radius: var(--le-radius-md);
  background: var(--le-surface-middle);
}

.le-promo-card--signup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.le-promo-card__motivation {
  display: block;
  width: 160px;
  height: 80px;
  margin: 12px auto 8px;
  object-fit: cover;
}

.le-promo-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.le-promo-card__title strong {
  color: var(--le-orange);
}

.le-promo-card--tournament {
  background: linear-gradient(180deg, #4a2c22 0%, #1f1f1e 70%);
  border: 1px solid var(--le-orange);
}

.le-promo-card__timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border-radius: var(--le-radius-lg);
}

.le-promo-card__name {
  margin: 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.le-promo-card__img {
  width: 100%;
  height: 48px;
  object-fit: cover;
  border-radius: var(--le-radius-xs);
  margin-bottom: 8px;
}

.le-promo-card__prize {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--le-orange);
}

.le-promo-card__prize strong {
  display: block;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}

.le-promo-card__cta {
  display: block;
  padding: 8px 16px;
  background: var(--le-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--le-radius-sm);
  transition: background 0.15s;
}

.le-promo-card__cta:hover {
  background: var(--le-orange-hover);
  color: #fff;
}

.le-promo-card__secondary {
  display: block;
  padding: 8px 16px;
  background: var(--le-surface-light);
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--le-radius-sm);
}

/* League promo (removed from layout; keep modifiers for legacy assets) */
.le-league-block--promo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
  background: var(--le-surface-middle);
  border-radius: var(--le-radius-md);
}

.le-league-block__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.le-league-block__intro,
.le-league-features {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .le-league-block--promo {
    flex-direction: row;
  }
}

.le-league-block__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .le-league-block__intro {
    flex-direction: row;
    text-align: left;
    max-width: 35%;
  }
}

.le-league-block__intro h3 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #fff;
}

.le-league-block__intro p {
  margin: 0;
  font-size: 14px;
  color: var(--le-grey-500);
}

.le-league-block__cta {
  display: inline-block;
  margin-top: 12px;
  width: auto;
}

.le-league-features {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

@media (min-width: 768px) {
  .le-league-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.le-league-features li {
  padding: 12px;
  background: rgba(42, 42, 42, 0.6);
  border: 1px solid var(--le-surface-light);
  border-radius: var(--le-radius-sm);
}

.le-league-features strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #fff;
}

.le-league-features span {
  display: none;
  font-size: 12px;
  color: var(--le-grey-500);
}

@media (min-width: 768px) {
  .le-league-features span {
    display: block;
  }
}

/* App banner */
.le-app-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  border-radius: var(--le-radius-md);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.le-app-banner__title {
  margin: 0;
  font-family: "Klapt Cyrillic Bold", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.le-app-banner__title span {
  color: var(--le-orange);
}

.le-app-banner__phones {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.le-app-banner__phones img {
  max-height: 120px;
  width: auto;
}

.le-app-banner__stores {
  display: flex;
  gap: 12px;
}

.le-app-banner__stores img {
  height: 40px;
  width: auto;
}

/* Footer */
.le-footer-wrap {
  background: #0a0a0a;
}

body:has(.le-header) .le-main > .le-footer-wrap {
  margin-inline: -16px;
  margin-bottom: -16px;
  width: calc(100% + 32px);
}

.le-footer {
  margin: 0 auto;
  padding: 24px 16px 48px;
  font-family: "Roboto", var(--le-font);
  color: #fff;
}

.le-footer__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.le-footer__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.le-footer__lang,
.le-footer__up,
.le-footer__control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: none;
  border-radius: var(--le-radius-sm);
  background: var(--le-surface-middle);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

.le-footer__lang:hover,
.le-footer__up:hover,
.le-footer__control:hover {
  background: var(--le-surface-light);
}

.le-footer__lang-flag {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: var(--le-radius-round);
  overflow: hidden;
}

.le-footer__lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.le-footer__lang-code {
  text-transform: lowercase;
}

.le-footer__up {
  margin-left: auto;
  padding: 8px;
}

.le-footer__line {
  flex: 1;
  height: 1px;
  background: var(--le-surface-middle);
}

.le-footer__top .le-footer__line {
  display: none;
}

@media (min-width: 768px) {
  .le-footer__top .le-footer__line {
    display: block;
  }
}

.le-footer__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .le-footer__info {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .le-footer__info {
    grid-template-columns: 1fr 380px;
  }
}

.le-footer__menu-title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.le-footer__menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 480px) {
  .le-footer__menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .le-footer__menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
}

.le-footer__menu-list a {
  display: block;
  padding: 6px 8px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--le-radius-xs);
  transition: background 0.15s;
}

.le-footer__menu-list a:hover {
  background: var(--le-surface-middle);
}

.le-footer__app {
  position: relative;
  overflow: hidden;
  border-radius: var(--le-radius-md);
  background: linear-gradient(135deg, #1a1a1a 0%, #262626 50%, #1a1a1a 100%);
  min-height: 120px;
}

.le-footer__app::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 51, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.le-footer__app-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
}

.le-footer__app-label {
  margin: 0;
  max-width: 200px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.le-footer__app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 20px;
  border-radius: var(--le-radius-pill);
  background: var(--le-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s;
}

.le-footer__app-btn:hover {
  background: var(--le-orange-hover);
  color: #fff;
}

.le-footer__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .le-footer__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.le-footer__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.le-footer__control--odds span {
  font-size: 14px;
}

.le-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.le-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--le-radius-sm);
  background: var(--le-surface-middle);
  transition: background 0.15s;
}

.le-footer__social-link:hover {
  background: var(--le-surface-light);
}

.le-footer__social-link img {
  display: block;
  width: 24px;
  height: 24px;
}

.le-footer__license {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.le-footer__license-item {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.le-footer__license-item:hover {
  opacity: 1;
}

.le-footer__license-item img {
  display: block;
  width: auto;
  max-width: 120px;
  height: auto;
}

.le-footer__license-item--anj img {
  max-height: 48px;
}

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

.le-footer__year {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.le-footer__legal {
  font-size: 12px;
  line-height: 1.55;
  color: var(--le-grey-500);
}

.le-footer > .le-footer__line,
.le-footer__body > .le-footer__line:last-of-type {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--le-surface-middle);
}

/* Hide old header when le-header present */
.le-header ~ .le-legacy-header {
  display: none;
}

body:has(.le-header) {
  --le-header-h: 56px;
}

body:has(.le-header) .le-shell {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr) 336px;
  gap: 0;
  align-items: start;
  max-width: none;
  padding-top: 0;
  min-height: calc(100vh - var(--le-header-h));
  background: var(--le-base, #0b0d0e);
}

body:has(.le-header) .le-main {
  background: var(--le-base-alt, #171a1c);
  padding: 16px;
  min-width: 0;
}

.le-sidebar {
  display: none;
  position: sticky;
  top: var(--le-header-h);
  height: calc(100vh - var(--le-header-h));
  background: var(--le-card, #22262a);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.le-sidebar--right {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 1200px) {
  .le-sidebar {
    display: block;
  }
}

.le-sidebar__inner {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.le-sidebar-block + .le-sidebar-block {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.le-sidebar-caption {
  padding: 12px 12px 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.le-sidebar-tabs {
  display: flex;
  gap: 4px;
  padding: 0 8px 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.le-sidebar-tabs::-webkit-scrollbar {
  display: none;
}

.le-sidebar-tabs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: none;
  border-radius: var(--le-radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.le-sidebar-tabs__btn:hover,
.le-sidebar-tabs__btn--active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--le-accent, #1fad66);
}
.le-league-list {
  padding: 0 8px 8px;
  background: #0b0d0e;
}

.le-league-list__item {
  display: block;
  padding: 8px;
  border-radius: var(--le-radius-sm);
  text-decoration: none;
  transition: background 0.15s;
}

.le-league-list__item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.le-league-list__region {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.3;
}

.le-league-list__title {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.le-sidebar-all-leagues {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 8px 12px;
  padding: 10px 8px;
  border-radius: var(--le-radius-sm);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
}

.le-sidebar-all-leagues:hover {
  background: rgba(255, 255, 255, 0.08);
}

.le-sidebar-all-leagues__meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.55);
}

.le-sidebar-all-leagues__count {
  font-size: 12px;
}

.le-sport-menu {
  padding: 0 8px 12px;
  background: #0b0d0e;
}

.le-sport-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 8px;
  border-radius: var(--le-radius-sm);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}

.le-sport-menu__item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.le-sport-menu__item svg {
  opacity: 0.45;
  flex-shrink: 0;
}

.le-slip {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.le-slip__tabs {
  padding: 12px 12px 0;
}

.le-slip__tab {
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.le-slip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  margin-left: 4px;
  padding: 0 5px;
  border-radius: var(--le-radius-pill);
  background: var(--le-accent, #1fad66);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.le-slip__empty {
  padding: 16px 12px;
}

.le-slip__caption {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.le-slip__hint {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.45;
}

.le-slip-form__field {
  display: block;
  margin-bottom: 12px;
}

.le-slip-form__label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.le-slip-form__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: var(--le-radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.le-slip-form__input-wrap input {
  flex: 1;
  min-width: 0;
  padding: 10px 0;
  border: none;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
}

.le-slip-form__input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.le-slip-form__info {
  display: inline-flex;
  padding: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.le-slip-form__submit {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: none;
  border-radius: var(--le-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: not-allowed;
}

.le-slip-form__submit[aria-disabled="true"] {
  pointer-events: none;
}

.le-slip-banners {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px 12px;
}

.le-slip-banner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--le-radius-md);
  text-decoration: none;
}

.le-slip-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.le-slip-banner__btn {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: var(--le-radius-xs);
  background: var(--le-accent, #1fad66);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.le-slip__help {
  margin: auto 12px 12px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--le-radius-pill);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.le-slip__help:hover {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1199px) {
  body:has(.le-header) .le-shell {
    grid-template-columns: 1fr;
  }

  .le-mobile-menu__panel {
    width: min(400px, 100vw);
  }

  .le-mobile-menu__body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .le-mobile-menu__sidebar {
    margin-top: 4px;
    background: var(--le-card, #22262a);
  }

  .le-mobile-menu__sidebar .le-sidebar__inner {
    height: auto;
    overflow: visible;
  }
}

@media (min-width: 1200px) {
  .le-mobile-menu__sidebar {
    display: none;
  }
}

body:has(.le-header) .le-section .le-content,
body:has(.le-header) .le-section .le-faq,
body:has(.le-header) .le-section .le-reviews {
  color: #fff;
}

body:has(.le-header) .le-section .le-content h1,
body:has(.le-header) .le-section .le-content h2,
body:has(.le-header) .le-section .le-content p,
body:has(.le-header) .le-section .le-content li {
  color: inherit;
}

/* Sport events line */
.le-sport-events-wrap {
  padding-top: 0;
}

/* Sport events — league row */
.le-sport-group__content .le-league-block {
  --le-market-w: min(188px, 40vw);
  display: block;
  overflow: hidden;
  background: var(--le-surface-high, #22262f);
  border-radius: var(--le-radius-sm, 8px);
}

.le-sport-group__content .le-league-block:has(.le-event__market--2) {
  --le-market-w: min(132px, 30vw);
}

.le-sport-group__content .le-league-block > .le-event {
  display: block;
  width: 100%;
}

.le-sport-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.le-sport-group {
  background: var(--le-surface-middle, #1a1d24);
  border-radius: var(--le-radius-sm, 8px);
  overflow: hidden;
}

.le-sport-headline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  background: var(--le-surface-high, #22262f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.le-sport-headline__icon {
  display: flex;
  color: var(--le-sport-color, var(--le-accent));
}

.le-sport-headline__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.le-sport-headline__chevron {
  color: var(--le-sport-color, var(--le-accent));
  flex-shrink: 0;
}

.le-sport-headline__market {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  cursor: pointer;
}

.le-sport-group__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 8px;
}

.le-league-block + .le-league-block {
  margin-top: 0;
}

.le-league-headline {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) var(--le-market-w);
  align-items: center;
  gap: 0;
  min-height: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.le-league-headline__fav-slot {
  display: block;
  width: 28px;
}

.le-league-headline__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  padding: 0 8px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.le-league-headline__label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  content: "";
  background: linear-gradient(270deg, var(--le-surface-high, #22262f) 0%, transparent 100%);
  pointer-events: none;
}

.le-league-headline__region {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.72);
}

.le-league-headline__region::after {
  content: none;
}

.le-league-headline__name {
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.le-league-headline__markets {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 36px;
  gap: 4px;
  align-items: center;
  width: var(--le-market-w);
  min-height: 40px;
  padding: 0 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.le-league-block:has(.le-event__market--2) .le-league-headline__markets {
  grid-template-columns: repeat(2, 1fr) 36px;
}

.le-league-headline__markets span:not(.le-league-headline__spacer) {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.le-league-headline__spacer {
  visibility: hidden;
}

.le-event {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.le-event--live {
  background: rgba(9, 134, 71, 0.06);
}

.le-event__inner {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0;
  min-height: 64px;
}

.le-event__fav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.le-event__fav:hover {
  color: rgba(255, 255, 255, 0.7);
}

.le-event__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 8px 8px 8px 0;
  color: inherit;
  text-decoration: none;
}

.le-event__info:hover {
  color: inherit;
}

.le-event__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.le-event__left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.le-event__logos {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.le-event__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.le-event__logo img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.le-event__teams {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  font-size: 13px;
  line-height: 1.25;
}

.le-event__teams span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.le-event__score-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.le-event__score-col--active {
  color: var(--le-accent, #098647);
}

.le-event__main:has(.le-event__score-col:nth-child(2)) {
  gap: 6px;
}

.le-event__main .le-event__score-col + .le-event__score-col {
  margin-left: 2px;
}

.le-event__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.le-event__badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 5px;
  border-radius: 3px;
  background: #c62828;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.le-event__clock,
.le-event__game {
  font-variant-numeric: tabular-nums;
}

.le-event__stage,
.le-event__details {
  white-space: nowrap;
}

.le-event__kickoff {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.le-event__time {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.le-event__stream-wrap {
  display: flex;
  color: var(--le-accent, #098647);
}

.le-event__market {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  min-width: 0;
}

.le-event__market--3 {
  width: var(--le-market-w, min(188px, 40vw));
}

.le-event__market--2 {
  width: var(--le-market-w, min(132px, 30vw));
}

.le-event__runners {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 4px;
  align-items: center;
  padding: 8px;
}

.le-event__market--2 .le-event__runners {
  grid-template-columns: repeat(2, 1fr) auto;
}

.le-event__runner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 36px;
  padding: 4px 6px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.le-event__runner:hover:not([aria-disabled="true"]) {
  background: rgba(9, 134, 71, 0.25);
}

.le-event__runner--locked {
  opacity: 0.55;
  cursor: not-allowed;
}

.le-event__runner .le-event__lock {
  flex-shrink: 0;
}

.le-event__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 36px;
  min-height: 36px;
  padding: 0 4px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.le-event__more:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.le-event__market--locked {
  display: flex;
  align-items: center;
  justify-content: center;
}

.le-event__market-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.35);
}

.le-event__market--with-badge {
  position: relative;
}

.le-event__highest-odds {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 2px 8px 6px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

@media (min-width: 768px) {
  .le-sport-group__content .le-league-block {
    --le-market-w: 252px;
  }

  .le-sport-group__content .le-league-block:has(.le-event__market--2) {
    --le-market-w: 180px;
  }

  .le-league-headline__label {
    padding: 0 16px;
    font-size: 13px;
  }

  .le-league-headline__name {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .le-league-headline {
    display: none;
  }

  .le-event__inner {
    grid-template-columns: 24px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .le-event__market {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    width: 100% !important;
  }

  .le-event__score-col {
    display: none;
  }

  .le-event--live .le-event__score-col--active {
    display: flex;
  }
}

a.le-header-bar__search,
a.le-lang-select__field,
a.le-footer__lang,
a.le-footer__up,
a.le-footer__control,
a.le-slip__tab,
a.le-slip__help,
a.le-slip-form__info,
a.le-headline-bn__odd,
a.le-sport-headline__toggle,
a.le-sport-headline__market,
a.le-event__fav,
a.le-carousel__nav-btn,
a.le-showcase-nav__next,
a.le-home-promotions__next {
  text-decoration: none;
  color: inherit;
}

a.le-header-bar__search {
  background: #32383F;
  border-radius: 100%;
  width: 36px;
  height: 36px;
}