/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #ff7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
  z-index: 9999;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px !important;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05),
    6px 4px 19px rgb(115 103 240 / 20%);
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.footer-payment-strip {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.footer-payment-strip img {
  display: block;
  width: min(100%, 520px);
  max-height: 40px;
  object-fit: contain;
}

@media (min-width: 576px) {
  .footer-payment-strip {
    justify-content: flex-end;
  }
}

.hero-slider-shell {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid hsl(var(--base) / 0.18);
  background: hsl(var(--dark-600));
  box-shadow: 0 10px 26px hsl(var(--black) / 0.08);
}

.hero-slider-shell .banner-slider {
  border-radius: inherit;
}

.hero-slider-shell .banner_image {
  object-fit: contain;
  background: hsl(var(--dark-600));
}

.hero-slider__arrow,
.hero-slider__toggle {
  display: inline-grid;
  place-items: center;
  border: 1px solid hsl(var(--white) / 0.18);
  background: hsl(var(--black) / 0.42);
  color: hsl(var(--white));
  backdrop-filter: blur(8px);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 34px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.hero-slider__prev {
  left: 10px;
  border-radius: 999px 8px 8px 999px;
}

.hero-slider__next {
  right: 10px;
  border-radius: 8px 999px 999px 8px;
}

.hero-slider__arrow:hover,
.hero-slider__toggle:hover {
  border-color: hsl(var(--base) / 0.72);
  background: hsl(var(--base) / 0.88);
  color: hsl(var(--white));
}

.hero-slider__prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.hero-slider__next:hover {
  transform: translateY(-50%) translateX(2px);
}

.hero-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 24px);
  padding: 7px 8px;
  border: 1px solid hsl(var(--white) / 0.14);
  border-radius: 999px;
  background: hsl(var(--black) / 0.38);
  box-shadow: 0 10px 22px hsl(var(--black) / 0.18);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-slider__dot {
  display: block;
}

.hero-slider__dot a {
  display: block;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: hsl(var(--white) / 0.45);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-slider__dot a:hover {
  background: hsl(var(--white) / 0.82);
}

.hero-slider__dot.is-active a {
  width: 34px;
  background: hsl(var(--base));
}

.hero-slider__toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.85rem;
}

@media (max-width: 575px) {
  .hero-slider__arrow {
    width: 28px;
    height: 38px;
    font-size: 0.9rem;
  }

  .hero-slider__prev {
    left: 6px;
  }

  .hero-slider__next {
    right: 6px;
  }

  .hero-slider__controls {
    bottom: 6px;
    gap: 7px;
    padding: 5px 6px;
  }

  .hero-slider__dot a {
    width: 12px;
    height: 5px;
  }

  .hero-slider__dot.is-active a {
    width: 24px;
  }

  .hero-slider__toggle {
    width: 23px;
    height: 23px;
    font-size: 0.75rem;
  }
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: 0.3s;
}

.select2-container--default .select2-selection--single {
  border-color: #d9d9d9 !important;
  border-width: 1px !important;
  border-radius: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
  height: 100% !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 31px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 8px !important;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default
  .select2-search--dropdown
  .select2-search__field:focus {
  border-color: hsl(var(--base)) !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}
.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: 0.375rem !important;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: hsl(var(--base));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: hsl(var(--base));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;
}

.payment-system-list.is-scrollable {
  max-height: min(340px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--dark) / 0.07);
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width));
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--base));
  display: inline-block;
  border-radius: 100%;
}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}

.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }
}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.amount-recommendations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.amount-recommendations:empty {
  display: none;
}

.amount-recommendation {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid hsl(var(--base) / 0.22);
  border-radius: 999px;
  background: hsl(var(--base) / 0.07);
  color: hsl(var(--base));
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.amount-recommendation:hover,
.amount-recommendation:focus-visible {
  border-color: hsl(var(--base));
  background: hsl(var(--base));
  color: hsl(var(--white));
  outline: 0;
}

.betslip__list-ratio .amount-recommendations {
  margin-top: 8px;
}

.betslip__list-ratio .amount-recommendation {
  min-height: 27px;
  padding: 5px 8px;
  font-size: 0.68rem;
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover + .payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}

.mobile-code {
  cursor: pointer;
  padding-right: 5px;
  font-size: 0.875rem;
  font-weight: 500;
}

.text--extra-small {
  font-size: 0.625rem !important;
}

.text--small {
  font-size: 0.75rem !important;
}

.social-login-btn {
  border: 1px solid #cbc4c4;
}

.register-page .login-page__img {
  display: block;
  max-height: 560px;
  width: 100%;
  object-fit: contain;
}

.register-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 14px;
}

.register-flow__step {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(var(--base) / 0.18);
  border-radius: 999px;
  background: hsl(var(--base) / 0.06);
  color: hsl(var(--accent) / 0.7);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.register-flow__step.is-active {
  border-color: hsl(var(--base));
  background: hsl(var(--base));
  color: hsl(var(--white));
}

.register-flow__step.is-complete {
  border-color: hsl(140 70% 42% / 0.28);
  background: hsl(140 70% 42% / 0.1);
  color: hsl(140 70% 32%);
}

.register-flow__panel {
  display: none;
}

.register-flow__panel.is-active {
  display: block;
  animation: registerStepIn 0.22s ease;
}

.register-flow__actions {
  display: grid;
  grid-template-columns: minmax(96px, 0.36fr) 1fr;
  gap: 8px;
  margin-top: 14px;
}

.register-country-select {
  cursor: pointer;
}

.register-ticket-slider {
  width: min(100%, 520px);
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid hsl(var(--base) / 0.22);
  border-radius: 10px;
  background:
    linear-gradient(135deg, hsl(var(--base) / 0.18), transparent 52%),
    hsl(var(--dark-600));
  box-shadow: 0 18px 42px hsl(var(--black) / 0.18);
}

.register-ticket-slider__track {
  display: flex;
  width: max-content;
  animation: registerTicketSlide 26s linear infinite;
}

.register-ticket-slider:hover .register-ticket-slider__track {
  animation-play-state: paused;
}

.register-ticket {
  width: 210px;
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  border-right: 1px solid hsl(var(--white) / 0.1);
  color: hsl(var(--white));
}

.register-ticket__badge {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: hsl(140 76% 44% / 0.16);
  color: hsl(140 76% 62%);
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.register-ticket strong {
  color: hsl(var(--white));
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.15;
}

.register-ticket span:not(.register-ticket__badge),
.register-ticket small {
  color: hsl(var(--white) / 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
}

@keyframes registerStepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes registerTicketSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .register-page .login-page__img {
    display: none;
  }

  .register-ticket-slider {
    margin-bottom: 14px;
  }
}

@media (max-width: 575px) {
  .register-flow__step {
    min-height: 30px;
    font-size: 0.66rem;
  }

  .register-flow__actions {
    grid-template-columns: 1fr;
  }

  .register-ticket {
    width: 180px;
    min-height: 104px;
    padding: 13px;
  }
}

.register-disable {
  padding-block: 80px;
  width: 100%;
  background-color: #fff;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-disable-image img {
  width: 100%;
}

.register-disable-title {
  color: rgb(0 0 0 / 80%);
  font-size: 42px;
  margin-bottom: 18px;
}

.register-disable-icon {
  font-size: 16px;
  background: rgb(255, 15, 15, 0.07);
  color: rgb(255, 15, 15, 0.8);
  border-radius: 3px;
  padding: 6px;
  margin-right: 4px;
}

.register-disable-desc {
  color: rgb(0 0 0 / 50%);
  font-size: 18px;
  max-width: 565px;
  width: 100%;
  margin-bottom: ;
  :32px ;
}

.register-disable-footer-link {
  color: #fff;
  background-color: #5b28ff;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.register-disable-footer-link:hover {
  background-color: #440ef4;
  color: #fff;
}

@media (max-width: 1199px) {
  .payment-item {
    padding: 10px 6px;
  }
  .payment-item__name {
    font-size: 0.875rem;
  }
}


.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .ranges li.active {
  background-color: hsl(var(--base)) !important;
}

.winner-ticker {
  overflow: hidden;
  border: 1px solid hsl(var(--base) / 0.14);
  border-radius: 8px;
  background: hsl(var(--white));
  box-shadow: 0 6px 18px hsl(var(--black) / 0.04);
}

.winner-ticker__track {
  display: flex;
  width: max-content;
  animation: winnerTicker 42s linear infinite;
}

.winner-ticker:hover .winner-ticker__track {
  animation-play-state: paused;
}

.winner-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  padding: 6px 18px;
  color: hsl(var(--dark));
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.winner-ticker__item:not(:last-child) {
  border-right: 1px solid hsl(var(--base) / 0.08);
}

.winner-ticker__icon {
  font-size: 0.9rem;
  line-height: 1;
}

.winner-ticker__phone {
  color: hsl(var(--info));
  font-weight: 900;
}

.winner-ticker__item strong {
  color: hsl(var(--accent));
  font-weight: 900;
}

.top-leagues-widget {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid hsl(var(--base) / 0.14);
  border-radius: 12px;
  background:
    linear-gradient(135deg, hsl(var(--base) / 0.08), transparent 38%),
    hsl(var(--white));
  box-shadow: 0 8px 24px hsl(var(--black) / 0.05);
}

.top-leagues-widget__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.top-leagues-widget__head h3 {
  margin: 0;
  color: hsl(var(--dark));
  font-family: var(--heading-font);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.1;
}

.top-leagues-widget__head span {
  color: hsl(var(--base));
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.top-leagues-widget__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.top-league-card {
  position: relative;
  min-height: 110px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  padding: 16px;
  border-radius: 10px;
  color: hsl(var(--white));
  isolation: isolate;
  box-shadow: 0 12px 22px hsl(var(--black) / 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.top-league-card:hover {
  color: hsl(var(--white));
  transform: translateY(-2px);
  box-shadow: 0 18px 30px hsl(var(--black) / 0.16);
}

.top-league-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, var(--league-start), var(--league-end));
}

.top-league-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -58px;
  z-index: -1;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: hsl(var(--white) / 0.12);
}

.top-league-card--purple {
  --league-start: #8f00ff;
  --league-end: #47128f;
}

.top-league-card--red {
  --league-start: #e22b2b;
  --league-end: #961515;
}

.top-league-card--green {
  --league-start: #079b5b;
  --league-end: #075b36;
}

.top-league-card--blue {
  --league-start: #2567df;
  --league-end: #173b9c;
}

.top-league-card__logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: hsl(var(--white));
  box-shadow: 0 8px 18px hsl(var(--black) / 0.12);
}

.top-league-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}

.top-league-card__star {
  position: absolute;
  top: 28px;
  right: 16px;
  color: #ffd83d;
  font-size: 1.35rem;
  line-height: 1;
  text-shadow: 0 4px 12px hsl(var(--black) / 0.18);
}

.top-league-card__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.top-league-card__body strong {
  color: hsl(var(--white));
  font-size: clamp(0.82rem, 1.08vw, 1rem);
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.top-league-card__body small {
  color: hsl(var(--white) / 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 1199px) and (min-width: 576px) {
  .top-leagues-widget__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@keyframes winnerTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .winner-ticker__item {
    min-height: 30px;
    padding-inline: 12px;
    font-size: 0.7rem;
  }

  .top-leagues-widget {
    padding: 12px;
    border-radius: 10px;
  }

  .top-leagues-widget__head h3 {
    font-size: 1.1rem;
  }

  .top-leagues-widget__head span {
    display: none;
  }

  .top-leagues-widget__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .top-league-card {
    min-height: 104px;
    padding: 12px;
    border-radius: 14px;
  }

  .top-league-card__logo {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .top-league-card__logo img {
    padding: 7px;
  }

  .top-league-card__star {
    top: 12px;
    right: 12px;
    font-size: 1.32rem;
  }

  .top-league-card__body strong {
    font-size: 0.92rem;
  }

  .top-league-card__body small {
    font-size: 0.66rem;
  }
}

.booking-code-box {
  padding: 10px 12px;
  border-bottom: 1px solid hsl(var(--black) / 0.08);
}

.booking-code-box label {
  display: block;
  margin-bottom: 6px;
  color: hsl(var(--dark));
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.booking-code-box__row {
  display: flex;
  gap: 6px;
}

.booking-code-box__row .form--control {
  height: 34px;
  min-width: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.booking-code-box__row .btn {
  min-width: 58px;
  height: 34px;
  padding: 0 10px;
  font-size: 0.72rem;
}

.booking-code-box__generate {
  display: block;
  width: 100%;
  margin-top: 7px;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid hsl(var(--base) / 0.22);
  border-radius: 7px;
  background: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.booking-code-box__generate:hover {
  background: hsl(var(--base-dark));
  color: hsl(var(--white));
}

.booking-code-box.is-empty .booking-code-box__generate,
.booking-code-box.has-selections label,
.booking-code-box.has-selections .booking-code-box__load {
  display: none;
}

.booking-code-box.has-selections .booking-code-box__generate {
  margin-top: 0;
}

.booking-code-box__result {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  background: hsl(var(--base) / 0.08);
  color: hsl(var(--dark));
  font-size: 0.76rem;
  line-height: 1;
}

.booking-code-box__result strong {
  color: hsl(var(--base));
  letter-spacing: 0;
}

.bet-return {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.total-odds-amount {
  color: hsl(var(--base));
  font-weight: 700;
}

.header-search-item {
  position: relative;
}

.header-primary {
  z-index: 10020;
}

.header-primary .dropdown-menu,
.user-profile-dropdown .dropdown-menu {
  z-index: 10030;
}

.header-balance-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid hsl(var(--base) / 0.32);
  border-radius: 999px;
  background: hsl(var(--base) / 0.14);
  color: hsl(var(--white));
  line-height: 1;
  white-space: nowrap;
}

.header-balance-pill:hover {
  color: hsl(var(--white));
  background: hsl(var(--base) / 0.24);
}

.header-balance-pill span {
  color: hsl(var(--white) / 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-balance-pill i {
  color: hsl(var(--base));
  font-size: 1rem;
  line-height: 1;
}

.header-balance-pill strong {
  color: hsl(var(--white));
  font-size: 0.82rem;
  font-weight: 900;
}

.header-search {
  width: min(32vw, 360px);
  height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: 9px;
  border: 1px solid hsl(var(--base) / 0.26);
  background: hsl(var(--white) / 0.08);
  color: hsl(var(--white));
  box-shadow: inset 0 0 0 1px hsl(var(--white) / 0.04);
}

.header-search i {
  color: hsl(var(--base));
  font-size: 20px;
}

.header-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: hsl(var(--white));
  font-size: 13px;
  font-weight: 700;
}

.header-search input::placeholder {
  color: hsl(var(--white) / 0.7);
  font-weight: 500;
}

.header-search a,
.header-search-toggle,
.header-search-panel__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-search a {
  color: hsl(var(--white) / 0.72);
}

.header-search-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid hsl(var(--base) / 0.32);
  border-radius: 9px;
  color: hsl(var(--white));
  background: hsl(var(--white) / 0.08);
  font-size: 22px;
}

.header-search-toggle.active {
  color: hsl(var(--white));
  background: hsl(var(--base));
}

.header-search-panel {
  display: none;
  padding-top: 12px;
}

.header-search-panel.active {
  display: block;
}

.header-search-panel__form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid hsl(var(--base) / 0.22);
  background: hsl(var(--dark-700, var(--dark-600)));
  box-shadow: 0 16px 32px hsl(var(--black) / 0.22);
}

.header-search-panel__input {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid hsl(var(--base) / 0.18);
  background: hsl(var(--white) / 0.08);
}

.header-search-panel__input i {
  color: hsl(var(--base));
  font-size: 21px;
}

.header-search-panel__input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: hsl(var(--white));
  font-weight: 700;
}

.header-search-panel__input input::placeholder {
  color: hsl(var(--white) / 0.7);
  font-weight: 500;
}

.header-search-panel__clear {
  min-height: 42px;
  width: 42px;
  border-radius: 8px;
  color: hsl(var(--white));
  background: hsl(var(--white) / 0.08);
  border: 1px solid hsl(var(--base) / 0.18);
}

.match-search-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1px solid hsl(var(--base) / 0.16);
  background: hsl(var(--white));
  color: hsl(var(--body-color));
  font-size: 13px;
}

.match-search-meta strong,
.match-search-meta a {
  color: hsl(var(--base));
  font-weight: 800;
}

.floating-betslip-button {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 10002;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, hsl(var(--base)), hsl(var(--base-dark)));
  color: hsl(var(--white));
  box-shadow: 0 14px 34px hsl(var(--base) / 0.38), 0 8px 18px hsl(var(--black) / 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.floating-betslip-button i {
  font-size: 1.55rem;
  line-height: 1;
}

.floating-betslip-button:hover,
.floating-betslip-button:focus-visible {
  color: hsl(var(--white));
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px hsl(var(--base) / 0.46), 0 10px 22px hsl(var(--black) / 0.24);
  outline: 0;
}

.floating-betslip-button.has-update {
  animation: betSlipPulse 0.42s ease;
}

body.open-betslip .floating-betslip-button {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.floating-betslip__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  border: 2px solid hsl(var(--white));
  border-radius: 999px;
  background: hsl(var(--danger));
  color: hsl(var(--white));
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

@keyframes betSlipPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.14); }
  100% { transform: scale(1); }
}

.betslip-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  background: hsl(var(--black) / 0.42);
  backdrop-filter: blur(2px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.betslip-backdrop.active {
  visibility: visible;
  opacity: 1;
}

.betslip {
  z-index: 10001 !important;
  border-left: 1px solid hsl(var(--base) / 0.16);
  background: hsl(var(--white)) !important;
  box-shadow: -18px 0 42px hsl(var(--black) / 0.18) !important;
  transition: transform 0.26s ease, opacity 0.22s ease, visibility 0.22s ease !important;
}

.betslip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid hsl(var(--base) / 0.12);
  background: hsl(var(--white));
}

.betslip-header .bet-type {
  flex: 1;
}

.betslip-close {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid hsl(var(--base) / 0.18);
  border-radius: 8px;
  background: hsl(var(--base) / 0.08);
  color: hsl(var(--dark));
  font-size: 1.05rem;
}

.betslip-close:hover {
  color: hsl(var(--white));
  background: hsl(var(--base));
}

.empty-slip-message {
  gap: 4px;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .sports-body {
    width: calc(100% - (var(--right-side) + var(--left-side))) !important;
  }

  .floating-betslip-button,
  .betslip-backdrop,
  .betslip-close {
    display: none !important;
  }

  .betslip {
    position: fixed !important;
    top: var(--header-h) !important;
    right: 0 !important;
    width: var(--right-side) !important;
    height: calc(100vh - var(--header-h)) !important;
    padding: 0 !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-left: 1px solid hsl(var(--black) / 0.1);
    background: hsl(var(--white)) !important;
    box-shadow: none !important;
  }

  .betslip-header {
    padding: 14px 14px 0;
    border-bottom: 0;
    background: hsl(var(--white));
  }

  .betslip-header .bet-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid hsl(var(--black) / 0.08);
  }

  .betslip-header .bet-type__btn {
    min-height: 42px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent !important;
    color: hsl(var(--accent) / 0.76);
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
  }

  .betslip-header .bet-type__btn::before {
    font-family: "Line Awesome Free";
    font-weight: 900;
    color: hsl(var(--base));
    font-size: 1rem;
  }

  .betslip-header .bet-type__btn:first-child::before {
    content: "\f46c";
  }

  .betslip-header .bet-type__btn:last-child::before {
    content: "\f2f1";
  }

  .betslip-header .bet-type__btn:has(input:checked) {
    border-bottom-color: hsl(var(--base));
    background: transparent !important;
    color: hsl(var(--base)) !important;
  }

  .betslip-header .bet-type__btn:has(input:checked)::before,
  .betslip-header .bet-type__btn:has(input:checked) span {
    color: hsl(var(--base)) !important;
  }

  .betslip-header .bet-type__btn:hover {
    background: hsl(var(--base) / 0.06) !important;
    color: hsl(var(--base)) !important;
    border-color: transparent;
    border-bottom-color: hsl(var(--base));
  }

  .betslip-header .bet-type__btn:hover span,
  .betslip-header .bet-type__btn:hover::before {
    color: hsl(var(--base)) !important;
  }

  .betslip-header .bet-type__btn input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .betslip-inner {
    flex: 0 0 auto;
    min-height: 0;
  }

  .bet-slip-container.betslip-inner {
    max-height: calc(100vh - var(--header-h) - 300px);
    overflow-y: auto;
  }

  .betslip.is-empty .betslip-righ,
  .betslip.is-empty .betslip__footer-bottom {
    display: none !important;
  }

  .betslip:has(#mybets-btn:checked) .mybet-container.betslip-inner {
    max-height: calc(100vh - var(--header-h) - 130px);
    overflow-y: auto;
  }

  .empty-slip-message {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 14px 20px;
    color: hsl(var(--accent) / 0.58);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
  }

  .empty-slip-message::after {
    content: "Click odds to add selections";
    color: hsl(var(--accent) / 0.46);
    font-size: 0.8rem;
  }

  .empty-slip-message .browseEventsBtn {
    display: none;
  }

  .empty-slip-message img {
    width: 38px;
    margin-bottom: 8px;
    opacity: 0.52;
  }
}

.betslip-winners {
  margin-top: auto;
  padding: 14px 16px 18px;
  border-top: 1px solid hsl(var(--black) / 0.1);
  background: hsl(var(--white));
}

.betslip-winners__title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 13px;
  color: hsl(var(--dark));
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.betslip-winners__title i {
  color: hsl(var(--warning));
  font-size: 0.98rem;
}

.betslip-winners__list {
  display: grid;
  gap: 8px;
}

.betslip-winners__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: hsl(var(--accent) / 0.78);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

.betslip-winners__item strong {
  color: hsl(140 92% 33%);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .betslip-winners {
    display: none;
  }

  .floating-betslip-button {
    right: 16px;
    bottom: calc(var(--nav-h) + 18px);
    width: 54px;
    height: 54px;
  }

  .betslip {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: min(86dvh, 720px) !important;
    max-height: min(86dvh, 720px) !important;
    padding: 0 !important;
    border-radius: 18px 18px 0 0;
    border-left: 0;
    transform: translateY(105%) !important;
    opacity: 0;
    visibility: hidden;
  }

  body.open-betslip .betslip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
  }

  .bet-slip-container.betslip-inner {
    min-height: 0;
    overflow: hidden;
  }

  .betslip__body {
    min-height: 0;
    overflow-y: auto;
    padding-bottom: 10px;
  }

  .betslip__footer {
    position: sticky;
    bottom: 0;
    z-index: 3;
    padding-bottom: max(12px, env(safe-area-inset-bottom)) !important;
    border-radius: 10px 10px 0 0 !important;
    box-shadow: 0 -8px 18px hsl(var(--black) / 0.1);
  }

  .betslip__footer-bottom {
    margin-top: 8px !important;
    padding: 10px 10px 0 !important;
  }

  .betslip__footer-btn {
    min-height: 42px;
  }

  .header-search-panel__form {
    grid-template-columns: 1fr auto;
  }

  .header-search-panel__clear {
    width: 100%;
    grid-column: 1 / -1;
  }

  .header-balance-pill {
    min-height: 36px;
    padding: 5px 9px;
    gap: 6px;
  }

  .header-balance-pill span {
    font-size: 0;
  }

  .header-balance-pill span::after {
    content: "Bal";
    font-size: 0.62rem;
  }

  .header-balance-pill strong {
    font-size: 0.78rem;
  }
}

@media screen and (max-width: 575px) {
  .header-search-panel__form {
    grid-template-columns: 1fr;
  }

  .header-search-panel__form .btn,
  .header-search-panel__clear {
    width: 100%;
    min-height: 42px;
  }
}

.match-markets {
  background: hsl(var(--base) / 0.06);
  border: 1px solid hsl(var(--base) / 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.match-markets__top {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  min-height: 42px;
  padding: 4px 12px;
  background: hsl(var(--white));
  border-bottom: 1px solid hsl(var(--base) / 0.18);
}

.match-markets__back {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid hsl(var(--base) / 0.32);
  border-radius: 8px;
  color: hsl(var(--accent));
  font-size: 1.1rem;
}

.match-markets__back:hover {
  color: hsl(var(--base));
}

.match-markets__league {
  color: hsl(var(--accent));
  font-family: var(--heading-font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.match-markets__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 16px;
  padding: 24px 22px 18px;
  background: linear-gradient(90deg, hsl(var(--white)), hsl(var(--base) / 0.08), hsl(var(--white)));
}

.match-markets__team {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
  color: hsl(var(--dark));
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.match-markets__team span {
  width: 100%;
  overflow-wrap: anywhere;
}

.match-markets__logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border: 1px solid hsl(var(--base) / 0.22);
  border-radius: 18px;
  padding: 7px;
  background: hsl(var(--white) / 0.72);
}

.match-markets__score {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 112px;
}

.match-markets__score strong {
  color: hsl(var(--info));
  font-family: var(--heading-font);
  font-size: 2.35rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.match-markets__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 6px 12px;
  border: 1px solid hsl(var(--base) / 0.26);
  border-radius: 999px;
  background: hsl(var(--white));
  color: hsl(var(--accent));
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.match-markets__status.is-live {
  border-color: hsl(var(--danger) / 0.38);
  background: hsl(var(--danger) / 0.1);
  color: hsl(var(--danger));
}

.match-markets__tabs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 8px 12px;
  border-top: 1px solid hsl(var(--base) / 0.14);
  border-bottom: 1px solid hsl(var(--base) / 0.18);
  background: hsl(var(--base) / 0.08);
}

.match-markets__tabs::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.match-markets__tab {
  min-height: 28px;
  padding: 7px 15px;
  border: 1px solid hsl(var(--base) / 0.24);
  border-radius: 999px;
  background: hsl(var(--white) / 0.72);
  color: hsl(var(--accent) / 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.match-markets__tab.active {
  border-color: hsl(var(--info));
  background: hsl(var(--info));
  color: hsl(var(--white));
}

.match-markets__list {
  display: grid;
  gap: 9px;
  padding: 10px 12px 16px;
}

.market-panel {
  overflow: hidden;
  border: 1px solid hsl(var(--base) / 0.2);
  border-radius: 8px;
  background: hsl(var(--white));
}

.market-panel__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  padding: 11px 13px;
  border: 0;
  background: hsl(var(--white));
  color: hsl(var(--dark));
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.market-panel__heading i {
  color: hsl(var(--accent) / 0.72);
  font-size: 1rem;
}

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

.market-odd {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 64px;
  padding: 10px 8px;
  border: 1px solid hsl(var(--base) / 0.22);
  border-radius: 7px;
  background: hsl(var(--base) / 0.07);
  color: hsl(var(--dark));
  line-height: 1.15;
  text-align: center;
}

.market-odd__name {
  display: grid;
  gap: 3px;
  color: hsl(var(--accent));
  font-size: 0.75rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.market-odd__name small {
  color: hsl(var(--accent) / 0.72);
  font-size: 0.68rem;
  font-weight: 800;
}

.market-odd strong {
  color: hsl(140 86% 43%);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.market-odd.active {
  border-color: hsl(var(--base));
  background: hsl(var(--base) / 0.16);
}

@media (min-width: 1400px) {
  .market-panel__odds {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .match-markets__hero {
    gap: 10px;
    padding: 20px 12px 16px;
  }

  .match-markets__logo {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .match-markets__team {
    font-size: 0.65rem;
  }

  .match-markets__score {
    min-width: 78px;
  }

  .match-markets__score strong {
    font-size: 1.9rem;
  }

  .market-panel__odds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.match-card {
  position: relative;
  background: hsl(var(--white));
  border: 1px solid hsl(var(--base) / 0.22);
  border-radius: 8px;
  padding: 14px 16px 12px;
  box-shadow: 0 6px 18px hsl(var(--black) / 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.match-card:hover {
  border-color: hsl(var(--base) / 0.42);
  box-shadow: 0 10px 24px hsl(var(--black) / 0.07);
  transform: translateY(-1px);
}

.match-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}

.match-card__league,
.match-card__odds,
.match-card__odd,
.match-card__odd .option-odd-list__item,
.match-card__odd .btn {
  position: relative;
  z-index: 2;
}

.match-card__league {
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid hsl(var(--base) / 0.2);
  color: hsl(var(--accent));
  font-family: var(--heading-font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.match-card__league:hover {
  color: hsl(var(--base));
}

.match-card__teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 12px;
  padding: 12px 0 10px;
}

.match-card__team {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  color: hsl(var(--dark));
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.match-card__team span {
  width: 100%;
  overflow-wrap: anywhere;
}

.match-card__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid hsl(var(--base) / 0.18);
  background: hsl(var(--light));
  padding: 4px;
}

.match-card__center {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 76px;
}

.match-card__center strong {
  color: hsl(var(--info));
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-style: italic;
  line-height: 1;
}

.match-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 5px 10px;
  border-radius: 999px;
  background: hsl(var(--base) / 0.1);
  color: hsl(var(--accent));
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.match-card__status.is-live {
  background: hsl(var(--danger) / 0.12);
  color: hsl(var(--danger));
}

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

.match-card__odd {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 48px;
  padding: 7px 8px;
  border: 1px solid hsl(var(--base) / 0.24);
  border-radius: 8px;
  background: hsl(var(--base) / 0.06);
  text-align: center;
}

.match-card__odd > span {
  color: hsl(var(--accent) / 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.match-card__odd .option-odd-list__item {
  width: 100%;
}

.match-card__odd .btn {
  width: 100%;
  min-height: 22px;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  color: hsl(var(--dark)) !important;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.match-card__odd .btn.active {
  color: hsl(var(--base)) !important;
}

.winoddz-info {
  padding: 0;
  color: hsl(var(--dark));
  background: transparent;
}

.winoddz-info__inner {
  display: grid;
  gap: 18px;
}

.winoddz-info__title {
  margin: 0 0 14px;
  color: hsl(var(--dark));
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.winoddz-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid hsl(var(--base) / 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, hsl(var(--base) / 0.1), transparent 38%),
    hsl(var(--white));
  box-shadow: 0 8px 24px hsl(var(--black) / 0.045);
}

.winoddz-benefits::before {
  content: "Why play with WinOddz?";
  grid-column: 1 / -1;
  color: hsl(var(--dark));
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
}

.winoddz-benefit {
  min-height: 190px;
  padding: 18px;
  border: 1px solid hsl(var(--base) / 0.16);
  border-radius: 8px;
  background: hsl(var(--base) / 0.045);
}

.winoddz-benefit__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: hsl(var(--base) / 0.18);
  color: hsl(var(--base));
  font-size: 1.45rem;
}

.winoddz-benefit h4 {
  margin: 0 0 10px;
  color: hsl(var(--dark));
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.winoddz-benefit p {
  margin: 0 0 14px;
  color: hsl(var(--dark) / 0.74);
  font-size: 0.88rem;
  line-height: 1.55;
}

.winoddz-benefit strong {
  color: hsl(var(--base));
  font-size: 0.82rem;
  font-weight: 900;
}

.winoddz-faq {
  display: grid;
  gap: 0;
  padding: 20px;
  border: 1px solid hsl(var(--base) / 0.16);
  border-radius: 8px;
  background: hsl(var(--white));
  box-shadow: 0 8px 24px hsl(var(--black) / 0.045);
}

.winoddz-faq .winoddz-info__title {
  margin-bottom: 14px;
}

.winoddz-faq__item {
  border: 1px solid hsl(var(--base) / 0.14);
  border-bottom: 0;
  background: hsl(var(--base) / 0.035);
}

.winoddz-faq__item:first-of-type {
  border-radius: 8px 8px 0 0;
}

.winoddz-faq__item:last-of-type {
  border-bottom: 1px solid hsl(var(--base) / 0.14);
  border-radius: 0 0 8px 8px;
}

.winoddz-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 15px 18px;
  color: hsl(var(--dark));
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.3;
  list-style: none;
}

.winoddz-faq__item summary::-webkit-details-marker {
  display: none;
}

.winoddz-faq__item summary i {
  color: hsl(var(--base));
  transition: transform 0.18s ease;
}

.winoddz-faq__item[open] summary {
  color: hsl(var(--base));
}

.winoddz-faq__item[open] summary i {
  transform: rotate(180deg);
}

.winoddz-faq__item p {
  margin: 0;
  padding: 0 18px 16px;
  color: hsl(var(--dark) / 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .winoddz-benefits {
    grid-template-columns: 1fr;
  }

  .winoddz-benefit {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .winoddz-info {
    padding: 0;
  }

  .winoddz-info__title {
    font-size: 1.1rem;
  }

  .winoddz-benefit {
    padding: 16px;
  }

  .winoddz-benefits,
  .winoddz-faq {
    padding: 14px;
  }

  .winoddz-faq__item summary {
    min-height: 54px;
    padding: 13px 14px;
    font-size: 0.86rem;
  }

  .winoddz-faq__item p {
    padding: 0 14px 14px;
    font-size: 0.82rem;
  }
}

.sports-category__section {
  margin: 10px 5px 14px;
  padding-top: 8px;
  border-top: 1px solid hsl(var(--white) / 0.12);
}

.sports-category__heading {
  margin: 0 4px 8px;
  color: hsl(var(--white) / 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.league-group {
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 8px;
  background: hsl(var(--black) / 0.12);
  overflow: hidden;
}

.league-group + .league-group {
  margin-top: 8px;
}

.league-group__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 7px 7px;
  color: hsl(var(--white) / 0.86);
  cursor: pointer;
  list-style: none;
}

.league-group__summary::-webkit-details-marker {
  display: none;
}

.league-group__summary:hover {
  background: hsl(var(--white) / 0.06);
}

.league-group__name {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.7rem;
  font-weight: 800;
}

.league-group__count {
  min-width: 20px;
  padding: 3px 5px;
  border-radius: 999px;
  background: hsl(var(--base) / 0.18);
  color: hsl(var(--base));
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.league-group__summary i {
  color: hsl(var(--white) / 0.55);
  font-size: 0.8rem;
  transition: transform 0.18s ease;
}

.league-group[open] .league-group__summary i {
  transform: rotate(180deg);
}

.league-group__list {
  display: grid;
  gap: 2px;
  padding: 0 4px 6px;
}

.league-group__link {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 6px 5px;
  border-radius: 7px;
  color: hsl(var(--white) / 0.78);
}

.league-group__link:hover,
.league-group__link.active {
  background: hsl(var(--base) / 0.14);
  color: hsl(var(--white));
}

.league-group__logo {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid hsl(var(--white) / 0.12);
  border-radius: 7px;
  background: hsl(var(--white) / 0.08);
  overflow: hidden;
}

.league-group__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.league-group__text {
  display: block;
  min-width: 0;
  line-height: 1.15;
}

.league-group__text span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.66rem;
  font-weight: 800;
}

@media (max-width: 575px) {
  .match-card {
    padding: 12px 10px 10px;
  }

  .match-card__teams {
    gap: 8px;
  }

  .match-card__logo {
    width: 42px;
    height: 42px;
  }

  .match-card__center {
    min-width: 64px;
  }

  .match-card__center strong {
    font-size: 1.45rem;
  }

  .match-card__team {
    font-size: 0.68rem;
  }

  .match-card__status {
    max-width: 86px;
    white-space: normal;
  }
}
