﻿:root {
  --betlion-orange: #f45a00;
  --betlion-orange-deep: #d34800;
  --betlion-dark: #1d0f0a;
  --betlion-black: #140c08;
  --betlion-green: #25b463;
  --betlion-green-deep: #199451;
  --betlion-text: #231815;
  --betlion-muted: #6f6662;
  --betlion-bg: #f2f2f2;
  --betlion-card: #ffffff;
  --betlion-border: #ddd7d2;
  --betlion-shell: 1200px;
  --betlion-shadow: 0 18px 48px rgba(20, 12, 8, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--betlion-text);
  background: var(--betlion-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.betlion-shell {
  width: min(calc(100% - 32px), var(--betlion-shell));
  margin: 0 auto;
}

.betlion-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 245, 0.98);
  box-shadow: 0 8px 20px rgba(65, 21, 0, 0.08);
  border-bottom: 1px solid rgba(111, 102, 98, 0.18);
}

.betlion-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 80px;
}

.betlion-menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.betlion-menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 2px 0;
  background: #54291a;
}

.betlion-logo {
  display: inline-flex;
  align-items: center;
  color: #3a2218;
}

.betlion-logo__image {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
}

.betlion-logo__mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
}

.betlion-logo__mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.betlion-logo__text {
  font-size: 34px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-shadow: 2px 2px 0 rgba(20, 12, 8, 0.82);
}

.betlion-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.betlion-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(58, 34, 24, 0.88);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.betlion-nav a:first-child::after {
  content: none;
}

.betlion-nav__dropdown {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.betlion-nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.betlion-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border-bottom: 2px dashed rgba(212, 72, 0, 0.35);
}

.betlion-nav__dropdown-toggle::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.betlion-nav__dropdown:hover .betlion-nav__dropdown-toggle::after,
.betlion-nav__dropdown:focus-within .betlion-nav__dropdown-toggle::after {
  transform: translateY(0) rotate(225deg);
}

.betlion-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 25;
  display: grid;
  gap: 0;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(111, 102, 98, 0.2);
  border-radius: 10px;
  background: #fff8f2;
  box-shadow: 0 14px 30px rgba(40, 20, 10, 0.2);
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.betlion-nav__dropdown-menu a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13px;
}

.betlion-nav__dropdown-menu a:hover,
.betlion-nav__dropdown-menu a:focus-visible {
  background: rgba(212, 72, 0, 0.12);
}

.betlion-nav__dropdown:hover .betlion-nav__dropdown-menu,
.betlion-nav__dropdown:focus-within .betlion-nav__dropdown-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.betlion-nav a.is-current,
.betlion-nav a[aria-current="page"] {
  color: #d44800;
  pointer-events: none;
  cursor: default;
  border-bottom: 2px solid rgba(212, 72, 0, 0.55);
}

.betlion-play-button,
.betlion-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 800;
}

.betlion-play-button {
  min-height: 32px;
  padding: 0 14px;
  background: linear-gradient(180deg, #28ba69 0%, var(--betlion-green-deep) 100%);
  color: #f5fff8;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(25, 148, 81, 0.22);
}

.betlion-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 90;
  width: min(100vw, 414px);
  display: block;
}

.betlion-drawer[hidden],
.betlion-drawer-backdrop[hidden] {
  display: none;
}

.betlion-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: block;
  background: rgba(20, 12, 8, 0.28);
  backdrop-filter: blur(2px);
}

.betlion-drawer__panel {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f7f7f7;
  box-shadow: 0 2px 24px rgba(62, 62, 62, 0.5);
  transform: translateX(-104%);
  transition: transform 0.2s ease-in;
  overflow-y: auto;
}

body.betlion-menu-open .betlion-drawer__panel {
  transform: translateX(0);
}

.betlion-drawer__topbar {
  position: relative;
  padding: 14px 10px 12px;
  background: linear-gradient(90deg, #ff9834 0%, #ff5800 100%);
}

.betlion-drawer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff3e8;
}

.betlion-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 38px;
  background: #ffffff;
  border-radius: 8px;
  color: #b44500;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.betlion-drawer__section {
  display: grid;
  gap: 0;
  padding: 8px 0;
}

.betlion-drawer__section--primary {
  padding-top: 10px;
}

.betlion-drawer__group,
.betlion-drawer__section + .betlion-drawer__section {
  border-top: 1px solid #d7d1cc;
}

.betlion-drawer__heading {
  padding: 16px 12px 4px;
  color: #756d68;
  font-size: 12px;
  font-weight: 600;
}

.betlion-drawer__heading-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.betlion-drawer__heading-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 4px;
  transition: transform 0.16s ease;
}

.betlion-drawer__heading-toggle[aria-expanded="true"]::after {
  transform: rotate(225deg);
}

.betlion-drawer__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 12px;
  color: #2a201c;
  font-size: 18px;
  line-height: 1.2;
}

.betlion-drawer__item--active {
  color: #b44500;
  font-weight: 700;
}

.betlion-drawer__item.is-current,
.betlion-drawer__item[aria-current="page"] {
  color: #b44500;
  font-weight: 700;
  pointer-events: none;
  cursor: default;
  background: rgba(212, 72, 0, 0.08);
}

.betlion-drawer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: currentColor;
}

.betlion-drawer__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.betlion-drawer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 28px 14px 42px;
  color: #7a2200;
}

.betlion-drawer__brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
}

.betlion-drawer__brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.betlion-drawer__brand-text {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  text-shadow: 2px 2px 0 #fff4ea;
}

.betlion-hero {
  padding-bottom: 16px;
  background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
  border-bottom: 1px solid #dedad7;
}

.betlion-promo {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 24px;
  border-radius: 20px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.52) 100%), url("/assets/banners/betlion-main-banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.betlion-promo__content {
  width: min(100%, 920px);
  text-align: center;
  color: #ffffff;
}

.betlion-promo h1 {
  margin: 0;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0;
}

.betlion-promo p {
  margin: 18px auto 0;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.45;
}

.betlion-primary-cta {
  min-width: 380px;
  min-height: 48px;
  margin-top: 30px;
  background: linear-gradient(180deg, #28bb69 0%, #1ea759 100%);
  color: white;
  font-size: 16px;
}

.betlion-promo__terms {
  max-width: 940px;
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.betlion-categories {
  display: flex;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  list-style: none;
  max-width: 1200px;
  box-sizing: border-box;
}

.betlion-categories-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 16px auto;
  overflow: hidden;
}

.betlion-categories::-webkit-scrollbar {
  display: none;
}

.betlion-chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 51px;
  padding: 0 20px;
  background: #ffffff;
  border: 1px solid #d8d3cf;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  color: #111111;
}

.betlion-categories li {
  flex: 0 0 auto;
}

.betlion-chip svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  display: inline-block;
  padding-right: 4px;
  vertical-align: middle;
  overflow: hidden;
  fill: currentColor;
}

.betlion-category-nav {
  position: absolute;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 51px;
  width: 56px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.54);
  color: #ee4400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.betlion-category-nav[hidden] {
  display: none;
}

.betlion-category-nav--left {
  left: 0;
  justify-content: flex-start;
}

.betlion-category-nav--right {
  right: 0;
  justify-content: flex-end;
}

.betlion-category-nav svg {
  display: block;
  width: 24px;
  height: 24px;
}

@media (hover: hover) and (pointer: fine) {
  .betlion-categories-wrap:hover .betlion-category-nav:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .betlion-featured-games__wrap:hover .betlion-featured-games__nav:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .betlion-studios__wrap:hover .betlion-studios__nav:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .betlion-originals__wrap:hover .betlion-originals__nav:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }
}

.betlion-card-play-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 32px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.12s ease, opacity 0.12s ease;
  pointer-events: none;
}

.betlion-card-play-overlay svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #f45a00;
  fill: currentColor;
}

.betlion-featured-card:hover .betlion-card-play-overlay,
.betlion-featured-card:focus-visible .betlion-card-play-overlay,
.betlion-studio-card:hover .betlion-card-play-overlay,
.betlion-studio-card:focus-visible .betlion-card-play-overlay,
.betlion-popular-card:hover .betlion-card-play-overlay,
.betlion-popular-card:focus-visible .betlion-card-play-overlay,
.betlion-original-card:hover .betlion-card-play-overlay,
.betlion-original-card:focus-visible .betlion-card-play-overlay,
.betlion-news-card:hover .betlion-card-play-overlay,
.betlion-news-card:focus-visible .betlion-card-play-overlay,
.betlion-megaways-card:hover .betlion-card-play-overlay,
.betlion-megaways-card:focus-visible .betlion-card-play-overlay,
.betlion-slots-card:hover .betlion-card-play-overlay,
.betlion-slots-card:focus-visible .betlion-card-play-overlay,
.betlion-feature-buy-card:hover .betlion-card-play-overlay,
.betlion-feature-buy-card:focus-visible .betlion-card-play-overlay,
.betlion-jackpots-card:hover .betlion-card-play-overlay,
.betlion-jackpots-card:focus-visible .betlion-card-play-overlay,
.betlion-table-games-card:hover .betlion-card-play-overlay,
.betlion-table-games-card:focus-visible .betlion-card-play-overlay,
.betlion-classics-card:hover .betlion-card-play-overlay,
.betlion-classics-card:focus-visible .betlion-card-play-overlay {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.betlion-featured-games {
  padding: 23px 0 18px;
  background: #f7f7f7;
}

.betlion-featured-games__wrap {
  position: relative;
}

.betlion-featured-games__rail {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.betlion-featured-games__rail::-webkit-scrollbar {
  display: none;
}

.betlion-featured-games__nav {
  top: 0;
  height: 180px;
  width: 72px;
  background: rgba(255, 255, 255, 0.54);
}

.betlion-featured-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 340px;
  color: #111111;
}

.betlion-featured-card__media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-featured-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.betlion-featured-card__flag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 94px;
  height: 22px;
  padding: 0 14px;
  border-radius: 0 0 10px 0;
  background: #ff391c;
  color: #100a08;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  line-height: 22px;
  text-transform: uppercase;
}

.betlion-featured-card__flag--new {
  min-width: 62px;
}

.betlion-featured-card__jackpot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 20px;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.88);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.betlion-featured-card__jackpot img {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.betlion-featured-card__jackpot strong {
  color: #37b96f;
  font-weight: 700;
}

.betlion-featured-card__demo {
  position: absolute;
  right: 10px;
  bottom: 30px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.betlion-featured-card__title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.betlion-studios {
  padding: 0 0 30px;
  background: #f7f7f7;
}

.betlion-rail-head {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px 24px;
}

.betlion-rail-head__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: rgba(0, 0, 0, 0.87);
  text-shadow: 0 1px #ffffff;
  user-select: none;
}

.betlion-rail-head__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.betlion-rail-head__cta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.betlion-rail-head__cta strong {
  font-weight: 700;
}

.betlion-rail-head__cta svg {
  width: 20px;
  height: 20px;
  margin-top: -4px;
  fill: currentColor;
}

.betlion-studios__wrap {
  position: relative;
}

.betlion-studios__rail {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.betlion-studios__rail::-webkit-scrollbar {
  display: none;
}

.betlion-studios__nav {
  top: 0;
  height: 316px;
  width: 72px;
  background: rgba(255, 255, 255, 0.54);
}

.betlion-studio-card {
  flex: 0 0 235.8px;
  color: rgba(0, 0, 0, 0.87);
  text-shadow: 0 1px #ffffff;
}

.betlion-studio-card__media {
  position: relative;
  height: 316px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-studio-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.betlion-studio-card__flag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 94px;
  height: 22px;
  padding: 0 14px;
  border-radius: 0 0 10px 0;
  background: #ff391c;
  color: #100a08;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  line-height: 22px;
  text-transform: uppercase;
}

.betlion-studio-card__title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.betlion-rail-head--compact {
  padding-bottom: 16px;
}

.betlion-popular {
  padding: 0 0 48px;
  background: #f7f7f7;
}

.betlion-popular__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  padding: 0 24px;
}

.betlion-popular-card {
  color: rgba(0, 0, 0, 0.87);
  text-shadow: 0 1px #ffffff;
}

.betlion-popular-card__media {
  position: relative;
  height: 188px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-popular-card__media--short {
  height: 172px;
}

.betlion-popular-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.betlion-popular-card__demo {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

.betlion-popular-card__flag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 94px;
  height: 22px;
  padding: 0 14px;
  border-radius: 0 0 10px 0;
  background: #ff391c;
  color: #100a08;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  line-height: 22px;
  text-transform: uppercase;
}

.betlion-popular-card__flag--new {
  min-width: 62px;
}

.betlion-popular-card__title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.betlion-originals {
  padding: 0 0 30px;
  background: #f7f7f7;
}

.betlion-originals__wrap {
  position: relative;
}

.betlion-originals__rail {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.betlion-originals__rail::-webkit-scrollbar {
  display: none;
}

.betlion-originals__nav {
  top: 0;
  height: 316px;
  width: 72px;
  background: rgba(255, 255, 255, 0.54);
}

.betlion-original-card {
  flex: 0 0 235.8px;
  color: rgba(0, 0, 0, 0.87);
  text-shadow: 0 1px #ffffff;
}

.betlion-original-card__media {
  position: relative;
  height: 316px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-original-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.betlion-original-card__jackpot {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 20px;
  padding: 0 8px;
  background: rgba(0, 0, 0, 0.88);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.betlion-original-card__jackpot img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.betlion-original-card__jackpot strong {
  color: #37b96f;
}

.betlion-original-card__flag {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
  min-width: 94px;
  height: 22px;
  padding: 0 14px;
  border-radius: 0 0 10px 0;
  background: #ff391c;
  color: #100a08;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  line-height: 22px;
  text-transform: uppercase;
}

.betlion-original-card__title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.betlion-news {
  padding: 0 0 48px;
  background: #f7f7f7;
}

.betlion-news__grid {
  display: grid;
  grid-template-columns: repeat(6, 172px);
  gap: 24px;
  justify-content: center;
}

.betlion-news-card {
  color: rgba(0, 0, 0, 0.87);
  text-shadow: 0 1px #ffffff;
}

.betlion-news-card__media {
  position: relative;
  height: 188px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-news-card__media--short {
  height: 172px;
}

.betlion-news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.betlion-news-card__title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.betlion-weekly {
  padding: 0 0 48px;
  background: #f7f7f7;
}

.betlion-weekly__head {
  width: 100%;
  padding: 0 24px 0;
}

.betlion-weekly__title {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.betlion-weekly-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 484px;
  align-items: stretch;
  min-height: 360px;
  margin: 0 24px;
  overflow: hidden;
  background: #000000 url("assets/weekly/treasure-tumble-bg.jpg") center center / cover no-repeat;
  border-radius: 22px;
}

.betlion-weekly-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.82) 62%, rgba(0, 0, 0, 0.94) 100%);
}

.betlion-weekly-card__art,
.betlion-weekly-card__content {
  position: relative;
  z-index: 1;
}

.betlion-weekly-card__art {
  min-height: 360px;
}

.betlion-weekly-card__coin,
.betlion-weekly-card__logo {
  position: absolute;
  display: block;
  pointer-events: none;
}

.betlion-weekly-card__coin {
  left: 132px;
  bottom: 0;
  width: 360px;
  height: 360px;
  object-fit: contain;
}

.betlion-weekly-card__logo {
  left: 128px;
  bottom: 0;
  width: 363px;
  height: 360px;
  object-fit: contain;
}

.betlion-weekly-card__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 51px 0 52px;
}

.betlion-weekly-card__inner {
  width: 380px;
}

.betlion-weekly-card__title,
.betlion-weekly-card__subtitle {
  margin: 0;
  color: #ffffff;
}

.betlion-weekly-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.betlion-weekly-card__subtitle {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
}

.betlion-weekly-card__jackpot {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.betlion-weekly-card__jackpot-label {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.betlion-weekly-card__jackpot-label img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.betlion-weekly-card__jackpot-value {
  color: #ffffff;
}

.betlion-weekly-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  min-height: 48px;
  margin-top: 6px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f0b09;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.betlion-megaways {
  padding: 0 0 48px;
  background: #f7f7f7;
}

.betlion-megaways__grid {
  display: grid;
  grid-template-columns: repeat(6, 172px);
  gap: 24px;
  justify-content: center;
}

.betlion-megaways-card {
  color: rgba(0, 0, 0, 0.87);
  text-shadow: 0 1px #ffffff;
}

.betlion-megaways-card__media {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-megaways-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.betlion-megaways-card__demo {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

.betlion-megaways-card__title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.betlion-slots {
  padding: 0 0 48px;
  background: #f7f7f7;
}

.betlion-slots__grid {
  display: grid;
  grid-template-columns: repeat(6, 172px);
  gap: 24px;
  justify-content: center;
}

.betlion-slots-card {
  color: rgba(0, 0, 0, 0.87);
  text-shadow: 0 1px #ffffff;
}

.betlion-slots-card__media {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-slots-card__media--short {
  height: 172px;
}

.betlion-slots-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.betlion-slots-card__demo {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

.betlion-slots-card__flag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 62px;
  height: 22px;
  padding: 0 14px;
  border-radius: 0 0 10px 0;
  background: #ff391c;
  color: #100a08;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  line-height: 22px;
  text-transform: uppercase;
}

.betlion-slots-card__title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.betlion-feature-buy {
  padding: 0 0 48px;
  background: #f7f7f7;
}

.betlion-feature-buy__grid {
  display: grid;
  grid-template-columns: repeat(6, 172px);
  gap: 24px;
  justify-content: center;
}

.betlion-feature-buy-card {
  color: rgba(0, 0, 0, 0.87);
  text-shadow: 0 1px #ffffff;
}

.betlion-feature-buy-card__media {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-feature-buy-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.betlion-feature-buy-card__flag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 62px;
  height: 22px;
  padding: 0 14px;
  border-radius: 0 0 10px 0;
  background: #ff391c;
  color: #100a08;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  line-height: 22px;
  text-transform: uppercase;
}

.betlion-feature-buy-card__title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.betlion-jackpots {
  padding: 0 0 48px;
  background: #f7f7f7;
}

.betlion-jackpots__grid {
  display: grid;
  grid-template-columns: repeat(6, 172px);
  gap: 24px;
  justify-content: center;
}

.betlion-jackpots-card {
  color: rgba(0, 0, 0, 0.87);
  text-shadow: 0 1px #ffffff;
}

.betlion-jackpots-card__media {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-jackpots-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.betlion-jackpots-card__flag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 62px;
  height: 22px;
  padding: 0 14px;
  border-radius: 0 0 10px 0;
  background: #ff391c;
  color: #100a08;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  line-height: 22px;
  text-transform: uppercase;
}

.betlion-jackpots-card__title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.betlion-bingo {
  padding: 0 0 48px;
  background: #f7f7f7;
}

.betlion-bingo__banner {
  display: flex;
  justify-content: flex-end;
  min-height: 360px;
  margin: 0 24px;
  overflow: hidden;
  background: #ededed url("assets/bingo/bingo-banner.jpg") 0 50% / cover no-repeat;
  border-radius: 10px;
}

.betlion-bingo__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 483.84px;
  min-height: 360px;
  background: rgba(0, 0, 0, 0.8);
}

.betlion-bingo__content {
  width: 380px;
  color: #ffffff;
}

.betlion-bingo__content h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.betlion-bingo__balls {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.betlion-bingo__ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 999px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
}

.betlion-bingo__ball--violet {
  box-shadow: inset 0 0 0 3px #3c1dd7;
}

.betlion-bingo__ball--cyan {
  box-shadow: inset 0 0 0 3px #12afce;
}

.betlion-bingo__ball--green {
  box-shadow: inset 0 0 0 3px #3bd955;
}

.betlion-bingo__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  min-height: 48px;
  margin-top: 24px;
  background: #ee4400;
  color: #ffffff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.betlion-shelf {
  padding: 34px 0;
}

.betlion-shelf--dark {
  background: linear-gradient(180deg, #26120d 0%, #1a0f0a 100%);
  color: #fff2e6;
}

.betlion-shelf--muted {
  background: #ebe8e6;
}

.betlion-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.betlion-section-head--stacked {
  display: grid;
  justify-content: start;
}

.betlion-section-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.betlion-section-head p {
  margin: 6px 0 0;
  color: var(--betlion-muted);
  font-size: 18px;
}

.betlion-section-head a,
.betlion-text-link {
  color: var(--betlion-orange-deep);
  font-size: 18px;
  font-weight: 700;
}

.betlion-game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.betlion-game-grid--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.betlion-game-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.betlion-shelf:not(.betlion-shelf--dark) .betlion-game-card {
  background: white;
  border-color: #ded7d1;
  box-shadow: 0 12px 26px rgba(36, 16, 11, 0.06);
}

.betlion-game-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.betlion-game-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 12, 8, 0.88);
  color: #fff6ef;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.betlion-game-card__badge--new {
  background: #25b463;
}

.betlion-game-card h3,
.betlion-game-card p {
  margin: 0;
}

.betlion-game-card h3 {
  font-size: 20px;
  line-height: 1.1;
}

.betlion-game-card p {
  font-size: 15px;
  line-height: 1.35;
  color: var(--betlion-muted);
}

.betlion-feature-row {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
}

.betlion-feature-panel,
.betlion-highlight-card,
.betlion-info-card,
.betlion-terms__card,
.betlion-faq__list details {
  background: white;
  border: 1px solid #ddd5cf;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(36, 16, 11, 0.05);
}

.betlion-feature-panel {
  padding: 28px;
}

.betlion-feature-panel h3,
.betlion-highlight-card h3,
.betlion-terms__card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.betlion-feature-panel p,
.betlion-highlight-card p,
.betlion-safe-play__inner p,
.betlion-terms__card p,
.betlion-faq__list p {
  font-size: 18px;
  line-height: 1.6;
}

.betlion-feature-panel ul,
.betlion-safe-play__inner ul,
.betlion-info-card ul,
.betlion-terms__card ul {
  margin: 18px 0 0;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.6;
}

.betlion-highlight-card {
  padding: 28px;
  background: linear-gradient(135deg, #23110b 0%, #f45a00 100%);
  color: #fff8f3;
}

.betlion-highlight-card__eyebrow,
.betlion-safe-play__eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.betlion-info-grid {
  padding: 34px 0;
}

.betlion-info-grid .betlion-shell {
  display: grid;
  gap: 18px;
}

.betlion-info-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
}

.betlion-info-card__art {
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.betlion-info-card__art--orange {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.34) 0 16%, transparent 17%),
    linear-gradient(135deg, #ff8b37 0%, #ff5b00 100%);
}

.betlion-info-card__art--dark {
  background:
    radial-gradient(circle at 68% 38%, rgba(255, 184, 108, 0.34) 0 14%, transparent 15%),
    linear-gradient(135deg, #382019 0%, #130c09 100%);
}

.betlion-info-card__art--green {
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.25) 0 18%, transparent 19%),
    linear-gradient(135deg, #25b463 0%, #135d39 100%);
}

.betlion-info-card__art--violet {
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.24) 0 16%, transparent 17%),
    linear-gradient(135deg, #533c81 0%, #1f1638 100%);
}

.betlion-info-card__body {
  padding: 30px;
}

.betlion-info-card h2,
.betlion-safe-play__inner h2,
.betlion-footer h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.02;
}

.betlion-info-card p,
.betlion-footer p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.betlion-safe-play {
  padding: 34px 0;
}

.betlion-safe-play__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(180deg, #1e100b 0%, #140c08 100%);
  color: #fff5ed;
  border-radius: 26px;
  box-shadow: var(--betlion-shadow);
}

.betlion-faq {
  padding: 34px 0;
}

.betlion-faq__list {
  display: grid;
  gap: 14px;
}

.betlion-faq__list details {
  padding: 22px 24px;
}

.betlion-faq__list summary {
  position: relative;
  padding-right: 34px;
  list-style: none;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}

.betlion-faq__list summary::-webkit-details-marker {
  display: none;
}

.betlion-faq__list summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--betlion-orange);
  font-size: 28px;
  line-height: 1;
}

.betlion-faq__list details[open] summary::after {
  content: "–";
}

.betlion-faq__list p {
  margin: 12px 0 0;
}

.betlion-terms {
  padding: 34px 0 52px;
}

.betlion-terms__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px;
}

.betlion-footer {
  background: #140c08;
  color: #f4ebe6;
}

.betlion-footer__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  padding: 42px 0 28px;
}

.betlion-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.betlion-footer nav {
  display: grid;
  gap: 12px;
}

.betlion-footer nav a,
.betlion-footer nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(244, 235, 230, 0.82);
  font-size: 16px;
  text-align: left;
}

.betlion-footer__bottom {
  padding: 0 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.betlion-cookie {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 12, 8, 0.52);
}

.betlion-cookie[hidden] {
  display: none;
}

.betlion-cookie__dialog {
  width: min(100%, 480px);
  padding: 30px 26px;
  background: white;
  border-radius: 22px;
  text-align: center;
  box-shadow: var(--betlion-shadow);
}

.betlion-cookie__dialog h2 {
  margin: 0;
  font-size: 26px;
}

.betlion-cookie__dialog p {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

.betlion-cookie__accept,
.betlion-cookie__settings {
  width: 100%;
  min-height: 58px;
  margin-top: 18px;
  border: 0;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 800;
}

.betlion-cookie__accept {
  background: var(--betlion-green);
  color: white;
}

.betlion-cookie__settings {
  background: transparent;
  color: var(--betlion-orange-deep);
}

body.betlion-menu-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .betlion-logo__text {
    font-size: 30px;
  }

  .betlion-nav {
    gap: 14px;
  }

  .betlion-nav a {
    font-size: 13px;
  }

  .betlion-nav__dropdown-menu a {
    font-size: 12px;
  }

  .betlion-promo h1 {
    font-size: 32px;
  }

  .betlion-primary-cta {
    min-width: 380px;
  }

  .betlion-categories {
    gap: 16px;
    padding: 0 16px;
  }

  .betlion-category-nav {
    height: 51px;
  }

  .betlion-featured-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .betlion-featured-games__nav {
    height: 180px;
  }

  .betlion-studio-card {
    flex-basis: calc((100% - 48px) / 3);
  }

  .betlion-studios__nav {
    height: 316px;
  }

  .betlion-original-card {
    flex-basis: calc((100% - 48px) / 3);
  }

  .betlion-originals__nav {
    height: 316px;
  }

  .betlion-popular__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .betlion-news__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .betlion-weekly-card {
    grid-template-columns: 1fr 420px;
  }

  .betlion-weekly-card__coin {
    left: 64px;
  }

  .betlion-weekly-card__logo {
    left: 60px;
  }

  .betlion-megaways__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .betlion-slots__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .betlion-feature-buy__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .betlion-jackpots__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .betlion-bingo__banner {
    margin: 0;
  }

  .betlion-bingo__panel {
    width: 420px;
  }

  .betlion-game-grid--six {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .betlion-header__bar {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
  }

  .betlion-menu-toggle {
    display: inline-grid;
  }

  .betlion-logo__text {
    font-size: 28px;
  }

  .betlion-nav {
    display: none;
  }

  .betlion-section-head,
  .betlion-footer__top,
  .betlion-safe-play__inner,
  .betlion-terms__card,
  .betlion-info-card,
  .betlion-feature-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .betlion-promo {
    min-height: 440px;
  }

  .betlion-promo h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .betlion-promo p,
  .betlion-feature-panel p,
  .betlion-highlight-card p,
  .betlion-info-card p,
  .betlion-faq__list p,
  .betlion-safe-play__inner p,
  .betlion-terms__card p,
  .betlion-feature-panel ul,
  .betlion-safe-play__inner ul,
  .betlion-info-card ul,
  .betlion-terms__card ul {
    font-size: 17px;
  }

  .betlion-game-grid,
  .betlion-game-grid--six,
  .betlion-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .betlion-featured-card {
    flex-basis: 82%;
    min-width: 280px;
  }

  .betlion-studio-card {
    flex-basis: 260px;
  }

  .betlion-original-card {
    flex-basis: 260px;
  }

  .betlion-popular__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .betlion-news__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .betlion-weekly__head {
    padding: 0 0 8px;
  }

  .betlion-weekly-card {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 0;
  }

  .betlion-weekly-card::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.78) 64%, rgba(0, 0, 0, 0.92) 100%);
  }

  .betlion-weekly-card__art {
    min-height: 280px;
  }

  .betlion-weekly-card__coin {
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translateX(-50%);
  }

  .betlion-weekly-card__logo {
    left: 50%;
    width: 283px;
    height: 280px;
    transform: translateX(-50%);
  }

  .betlion-weekly-card__content {
    justify-content: flex-start;
    padding: 0 28px 28px;
  }

  .betlion-weekly-card__inner,
  .betlion-weekly-card__button {
    width: 100%;
  }

  .betlion-megaways__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .betlion-slots__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .betlion-feature-buy__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .betlion-jackpots__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .betlion-bingo__banner {
    align-items: flex-end;
    min-height: 420px;
  }

  .betlion-bingo__panel {
    width: 100%;
    min-height: 210px;
  }

  .betlion-bingo__content,
  .betlion-bingo__button {
    width: 100%;
  }

  .betlion-featured-games__nav {
    display: none;
  }

  .betlion-studios__nav {
    display: none;
  }

  .betlion-originals__nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .betlion-shell {
    width: min(calc(100% - 20px), var(--betlion-shell));
  }

  .betlion-header__bar {
    gap: 12px;
    min-height: 72px;
  }

  .betlion-logo {
    gap: 8px;
  }

  .betlion-logo__mark {
    width: 34px;
    height: 34px;
  }

  .betlion-logo__text {
    font-size: 24px;
  }

  .betlion-play-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }

  .betlion-drawer {
    width: 100vw;
  }

  .betlion-drawer__brand-text {
    font-size: 30px;
  }

  .betlion-promo {
    min-height: 430px;
    padding: 30px 0 20px;
  }

  .betlion-promo h1 {
    font-size: 34px;
    line-height: 1.08;
    color: #ffe7b8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  }

  .betlion-promo p {
    font-size: 16px;
    color: #fff3d1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  }

  .betlion-primary-cta {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 18px;
  }

  .betlion-promo__terms {
    font-size: 14px;
    color: #ffdca8;
  }

  .betlion-game-grid,
  .betlion-game-grid--six,
  .betlion-footer__columns {
    grid-template-columns: 1fr;
  }

  .betlion-chip {
    min-height: 54px;
    padding: 0 18px;
  }

  .betlion-section-head h2,
  .betlion-info-card h2,
  .betlion-safe-play__inner h2,
  .betlion-footer h2,
  .betlion-feature-panel h3,
  .betlion-highlight-card h3,
  .betlion-terms__card h3,
  .betlion-faq__list summary {
    font-size: 26px;
  }

  .betlion-feature-panel,
  .betlion-highlight-card,
  .betlion-info-card__body,
  .betlion-safe-play__inner,
  .betlion-terms__card,
  .betlion-faq__list details,
  .betlion-cookie__dialog {
    padding: 20px;
  }

  .betlion-info-card__art {
    min-height: 180px;
  }

  .betlion-featured-card {
    min-width: 250px;
  }

  .betlion-studio-card {
    flex-basis: 220px;
  }

  .betlion-original-card {
    flex-basis: 220px;
  }

  .betlion-popular__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
  }

  .betlion-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .betlion-weekly__title {
    min-height: 44px;
    font-size: 26px;
  }

  .betlion-weekly-card {
    border-radius: 16px;
  }

  .betlion-weekly-card__art {
    min-height: 236px;
  }

  .betlion-weekly-card__coin {
    width: 220px;
    height: 220px;
  }

  .betlion-weekly-card__logo {
    width: 223px;
    height: 220px;
  }

  .betlion-weekly-card__content {
    padding: 0 20px 20px;
  }

  .betlion-weekly-card__title {
    font-size: 22px;
  }

  .betlion-weekly-card__subtitle,
  .betlion-weekly-card__jackpot {
    font-size: 16px;
  }

  .betlion-megaways__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .betlion-slots__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .betlion-feature-buy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .betlion-jackpots__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .betlion-megaways-card__media {
    border-radius: 14px;
  }

  .betlion-slots-card__media,
  .betlion-slots-card__media--short {
    border-radius: 14px;
  }

  .betlion-feature-buy-card__media {
    border-radius: 14px;
  }

  .betlion-jackpots-card__media {
    border-radius: 14px;
  }

  .betlion-bingo__banner {
    min-height: 360px;
    border-radius: 14px;
  }

  .betlion-bingo__panel {
    min-height: 196px;
  }

  .betlion-bingo__content h2 {
    font-size: 26px;
  }

  .betlion-bingo__balls {
    margin-top: 18px;
  }

  .betlion-bingo__button {
    min-height: 52px;
    margin-top: 18px;
  }

  .betlion-weekly-card__button {
    min-height: 52px;
    font-size: 18px;
  }

  .betlion-featured-card__media {
    height: 156px;
    border-radius: 14px;
  }

  .betlion-studio-card__media {
    height: 292px;
    border-radius: 14px;
  }

  .betlion-original-card__media {
    height: 292px;
    border-radius: 14px;
  }

  .betlion-featured-games__nav {
    display: none;
  }

  .betlion-studios__nav {
    display: none;
  }

  .betlion-originals__nav {
    display: none;
  }

  .betlion-rail-head {
    padding: 0 0 20px;
  }

  .betlion-rail-head__title {
    font-size: 26px;
  }

  .betlion-popular-card__media {
    height: 176px;
    border-radius: 14px;
  }

  .betlion-popular-card__media--short {
    height: 160px;
  }

  .betlion-news-card__media {
    height: 176px;
    border-radius: 14px;
  }

  .betlion-news-card__media--short {
    height: 160px;
  }

  .betlion-cookie__accept,
  .betlion-cookie__settings {
    font-size: 18px;
    min-height: 52px;
  }
}

.betlion-table-games,
.betlion-classics {
  padding: 0;
  background: #f7f7f7;
}

.betlion-editorial {
  padding: 48px 0 56px;
  background: #f7f7f7;
}

.betlion-editorial__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: 24px;
  align-items: start;
}

.betlion-editorial__layout > * {
  min-width: 0;
}

.betlion-editorial__article,
.betlion-editorial__aside-card {
  border-radius: 22px;
  background: #ededed;
  box-shadow: 0 18px 40px rgba(20, 12, 8, 0.08);
}

.betlion-editorial__article {
  padding: 28px 32px 32px;
}

.betlion-editorial__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(238, 68, 0, 0.12);
  color: #b23a06;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.betlion-editorial__article h2,
.betlion-editorial__article h3,
.betlion-editorial__aside-card h2,
.betlion-editorial__aside-card h3 {
  margin: 0;
  color: #231815;
}

.betlion-editorial__article h2 {
  margin-top: 16px;
  font-size: 40px;
  line-height: 1.05;
}

.betlion-editorial__article h2.betlion-editorial__section-title {
  margin-top: 28px;
  font-size: 26px;
  line-height: 1.2;
}

.betlion-editorial__content {
  margin-top: 24px;
  color: rgba(35, 24, 21, 0.9);
  min-width: 0;
}

.betlion-editorial__content p,
.betlion-editorial__content li,
.betlion-editorial__aside-card dt,
.betlion-editorial__aside-card dd {
  font-size: 18px;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.betlion-editorial__content p {
  margin: 0;
}

.betlion-editorial__content p + p,
.betlion-editorial__content p + .betlion-editorial__note,
.betlion-editorial__content .betlion-editorial__note + h2,
.betlion-editorial__content h2 + ul,
.betlion-editorial__content ul + h2,
.betlion-editorial__content ol + h2,
.betlion-editorial__content .betlion-editorial__table-wrap + p {
  margin-top: 20px;
}

.betlion-editorial__content h3,
.betlion-editorial__content h2.betlion-editorial__section-title {
  margin-top: 28px;
  font-size: 26px;
  line-height: 1.2;
}

.betlion-editorial__content a {
  color: #1d43bf;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* When game rails are embedded into editorial text, use compact card layout */
.betlion-editorial__content .betlion-megaways {
  margin-top: 22px;
  padding: 0;
  background: transparent;
}

.betlion-editorial__content .betlion-megaways .betlion-rail-head {
  max-width: none;
  padding: 0 0 14px;
}

.betlion-editorial__content .betlion-megaways .betlion-rail-head__link,
.betlion-editorial__content .betlion-megaways .betlion-rail-head__link:hover,
.betlion-editorial__content .betlion-megaways .betlion-rail-head__link:focus-visible,
.betlion-editorial__content .betlion-megaways a {
  color: #231815;
  text-decoration: none;
}

.betlion-editorial__content .betlion-megaways__grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  justify-content: stretch;
}

.betlion-editorial__content .betlion-megaways-card {
  display: block;
  color: #231815;
  text-shadow: none;
}

.betlion-editorial__content .betlion-megaways-card__media {
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}

.betlion-editorial__content .betlion-megaways-card__title {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.3;
  color: #231815;
}

.betlion-editorial__content .betlion-slots {
  margin-top: 22px;
  padding: 0;
  background: transparent;
}

.betlion-editorial__content .betlion-slots .betlion-rail-head {
  max-width: none;
  padding: 0 0 14px;
}

.betlion-editorial__content .betlion-slots .betlion-rail-head__link,
.betlion-editorial__content .betlion-slots .betlion-rail-head__link:hover,
.betlion-editorial__content .betlion-slots .betlion-rail-head__link:focus-visible,
.betlion-editorial__content .betlion-slots a {
  color: #231815;
  text-decoration: none;
}

.betlion-editorial__content .betlion-slots__grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  justify-content: stretch;
}

.betlion-editorial__content .betlion-slots-card {
  display: block;
  color: #231815;
  text-shadow: none;
}

.betlion-editorial__content .betlion-slots-card__media,
.betlion-editorial__content .betlion-slots-card__media--short {
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}

.betlion-editorial__content .betlion-slots-card__title {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.3;
  color: #231815;
}

.betlion-editorial__content ul,
.betlion-editorial__content ol {
  margin: 0;
  padding: 0;
}

.betlion-editorial__content ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.betlion-editorial__content ul li {
  position: relative;
  padding-left: 28px;
}

.betlion-editorial__content ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ee4400;
  box-shadow: 0 0 0 5px rgba(238, 68, 0, 0.12);
}

.betlion-editorial__content ol {
  display: grid;
  gap: 14px;
  padding-left: 24px;
}

.betlion-editorial__note {
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(238, 68, 0, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.betlion-editorial__note h3,
.betlion-editorial__note h2.betlion-editorial__section-title {
  font-size: 22px;
}

.betlion-editorial__note p {
  margin-top: 10px;
}

.betlion-editorial__table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  max-width: 100%;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(35, 24, 21, 0.08);
}

.betlion-editorial__table-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.betlion-editorial__table-wrap thead {
  background: #231815;
  color: #ffffff;
}

.betlion-editorial__table-wrap th,
.betlion-editorial__table-wrap td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.betlion-editorial__table-wrap th {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.betlion-editorial__table-wrap td {
  border-top: 1px solid rgba(35, 24, 21, 0.08);
  color: rgba(35, 24, 21, 0.92);
  font-size: 16px;
  line-height: 1.5;
}

.betlion-editorial__table-wrap tbody tr:nth-child(even) {
  background: rgba(242, 242, 242, 0.7);
}

.betlion-editorial__aside-card {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.betlion-editorial__aside-card h2,
.betlion-editorial__aside-card h3 {
  font-size: 24px;
  line-height: 1.15;
}

.betlion-editorial__aside-card dl {
  display: grid;
  gap: 18px;
  margin: 18px 0 0;
}

.betlion-editorial__aside-card dl div {
  padding-top: 16px;
  border-top: 1px solid rgba(35, 24, 21, 0.1);
}

.betlion-editorial__aside-card dl div:first-child {
  padding-top: 0;
  border-top: 0;
}

.betlion-editorial__aside-card dt {
  margin: 0;
  color: rgba(35, 24, 21, 0.58);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.betlion-editorial__aside-card dd {
  margin: 8px 0 0;
  color: #231815;
  font-size: 16px;
  line-height: 1.55;
}

.betlion-table-games {
  padding: 0 0 48px;
}

.betlion-table-games__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 0 24px;
}

.betlion-table-games-card,
.betlion-classics-card {
  color: rgba(0, 0, 0, 0.87);
  text-shadow: 0 1px #ffffff;
}

.betlion-table-games-card__media {
  position: relative;
  height: 211px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-table-games-card__media img,
.betlion-classics-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.betlion-table-games-card__badges {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.betlion-table-games-card__pill,
.betlion-classics-card__demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f0b09;
  font-size: 14px;
  line-height: 1;
}

.betlion-table-games-card__pill--dark {
  background: rgba(0, 0, 0, 0.78);
  color: #ffffff;
}

.betlion-table-games-card__flag,
.betlion-classics-card__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ff391c;
  color: #100a08;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.betlion-table-games-card__flag--muted {
  background: rgba(255, 255, 255, 0.9);
  color: #100a08;
}

.betlion-table-games-card__title,
.betlion-classics-card__title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.betlion-classics__grid {
  display: grid;
  grid-template-columns: repeat(6, 172px);
  gap: 24px;
  justify-content: center;
}

.betlion-classics-card__media {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
}

.betlion-classics-card__demo,
.betlion-classics-card__flag {
  position: absolute;
}

.betlion-classics-card__demo {
  right: 8px;
  bottom: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
}

.betlion-classics-card__flag {
  top: 0;
  left: 0;
  border-radius: 0 0 10px 0;
  height: 22px;
}

.betlion-footer {
  background: #3e3e3e;
  color: #f8f8f8;
}

.betlion-footer > .betlion-shell.betlion-footer__top {
  display: block;
  padding: 58px 0 26px;
}

.betlion-footer__menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.betlion-footer__column-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.betlion-footer .betlion-footer__quicklinks {
  display: grid;
  gap: 10px;
  width: 100%;
}

.betlion-footer__quicklinks--full a {
  font-size: 14px;
  line-height: 1.3;
}

.betlion-footer__quicklinks a {
  display: inline-block;
  width: fit-content;
}

.betlion-footer__quicklinks a,
.betlion-footer__body a {
  color: #f8f8f8;
}

.betlion-footer__body {
  padding: 32px 0 40px;
  background: rgba(0, 0, 0, 0.38);
}

.betlion-footer__social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.betlion-footer__blog {
  font-weight: 700;
}

.betlion-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(248, 248, 248, 0.9);
}

.betlion-footer__social-icons {
  display: flex;
  gap: 8px;
}

.betlion-footer__social-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.betlion-footer__trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
  font-weight: 700;
}

.betlion-footer .betlion-footer__markets {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 32px;
}

.betlion-footer__markets a {
  color: rgba(248, 248, 248, 0.92);
}

.betlion-footer__badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.betlion-footer__age,
.betlion-footer__toplink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.betlion-footer__age {
  background: rgba(255, 255, 255, 0.08);
}

.betlion-footer__toplink {
  border: 0;
  background: #ee4400;
  color: #ffffff;
}

.betlion-footer__legal {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.betlion-footer__legal p {
  margin: 0;
  color: rgba(248, 248, 248, 0.92);
  font-size: 15px;
  line-height: 1.65;
}

.betlion-footer__license {
  display: flex;
  align-items: center;
  gap: 12px;
}

.betlion-footer__license img {
  width: auto;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.betlion-footer__license p {
  margin: 0;
  color: rgba(248, 248, 248, 0.96);
  font-size: 15px;
  line-height: 1.5;
}
.betlion-floating-cta {
  position: fixed;
  right: 8px;
  bottom: 16px;
  left: 8px;
  z-index: 24;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.betlion-floating-cta[hidden] {
  display: none;
}

.betlion-floating-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 1184px);
  min-height: 80px;
  margin: 0 auto;
  padding: 16px 72px 16px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.betlion-floating-cta__content {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.betlion-floating-cta__icon {
  display: inline-flex;
  flex: 0 0 auto;
}

.betlion-floating-cta__icon svg {
  display: block;
  width: 42px;
  height: 42px;
}

.betlion-floating-cta__content p {
  margin: 0;
  color: rgba(0, 0, 0, 0.87);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.betlion-floating-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 138px;
  min-height: 62px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #28ba69 0%, #22a95e 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.betlion-floating-cta__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.34);
}

.betlion-floating-cta__close:hover {
  color: rgba(0, 0, 0, 0.52);
}

.betlion-back-to-top {
  position: fixed;
  right: 14px;
  bottom: 92px;
  z-index: 23;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7a2c 0%, #df4b00 100%);
  color: #fff7ef;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(40, 12, 0, 0.34);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.betlion-back-to-top:hover,
.betlion-back-to-top:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(40, 12, 0, 0.4);
}

@media (max-width: 1200px) {
  .betlion-editorial__layout {
    grid-template-columns: 1fr;
  }

  .betlion-editorial__aside-card {
    position: static;
  }

  .betlion-table-games__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .betlion-classics__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .betlion-editorial {
    padding: 36px 0 44px;
  }

  .betlion-editorial__article {
    padding: 24px;
  }

  .betlion-editorial__article h2 {
    font-size: 32px;
  }

  .betlion-table-games__grid,
  .betlion-classics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .betlion-footer__social-row,
  .betlion-footer__badge-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .betlion-footer__trust-badge {
    font-size: 18px;
  }

  .betlion-footer > .betlion-shell.betlion-footer__top {
    padding: 40px 0 22px;
  }

  .betlion-footer__menus {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .betlion-footer__column:last-child {
    grid-column: span 2;
  }
  .betlion-floating-cta__inner {
    padding-right: 56px;
  }

  .betlion-floating-cta__content p {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .betlion-editorial__article,
  .betlion-editorial__aside-card {
    padding: 20px;
    border-radius: 16px;
  }

  .betlion-editorial__article h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .betlion-editorial__content p,
  .betlion-editorial__content li,
  .betlion-editorial__aside-card dt,
  .betlion-editorial__aside-card dd {
    font-size: 16px;
  }

  .betlion-editorial__content h3,
  .betlion-editorial__aside-card h3 {
    font-size: 22px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .betlion-editorial__content ul li {
    padding-left: 22px;
  }

  .betlion-editorial__content ol {
    padding-left: 20px;
  }

  .betlion-editorial__table-wrap table {
    min-width: 640px;
  }

  .betlion-editorial__table-wrap th,
  .betlion-editorial__table-wrap td {
    padding: 14px 14px;
  }

  .betlion-table-games__grid,
  .betlion-classics__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .betlion-table-games-card__media,
  .betlion-classics-card__media {
    border-radius: 14px;
  }

  .betlion-footer > .betlion-shell.betlion-footer__top {
    padding: 32px 0 20px;
  }

  .betlion-footer__menus {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .betlion-footer__column:last-child {
    grid-column: auto;
  }

  .betlion-footer__body {
    padding: 24px 0 32px;
  }

  .betlion-footer__trust-badge {
    min-height: 42px;
    padding: 0 16px;
    font-size: 16px;
  }

  .betlion-footer__legal p {
    font-size: 14px;
  }

  .betlion-footer__license {
    align-items: flex-start;
  }

  .betlion-footer__license img {
    height: 24px;
  }
  .betlion-floating-cta {
    bottom: 12px;
  }

  .betlion-back-to-top {
    right: 10px;
    bottom: 84px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .betlion-floating-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 16px 18px;
  }

  .betlion-floating-cta__content {
    align-items: flex-start;
    gap: 14px;
    padding-right: 28px;
  }

  .betlion-floating-cta__icon svg {
    width: 34px;
    height: 34px;
  }

  .betlion-floating-cta__content p {
    font-size: 15px;
    line-height: 1.35;
  }

  .betlion-floating-cta__button {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
  }

  .betlion-floating-cta__close {
    top: 10px;
    right: 10px;
  }
}

.betlion-info-page .betlion-nav a:first-child::after {
  display: none;
}

.betlion-info-page .betlion-nav a:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 3px;
  background: rgba(255, 255, 255, 0.55);
}

.betlion-info-hero {
  position: relative;
  padding: 36px 0 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 197, 115, 0.26), transparent 34%),
    linear-gradient(135deg, #f45a00 0%, #f07a1c 42%, #ffb247 100%);
}

.betlion-info-hero::before,
.betlion-info-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.24;
  pointer-events: none;
}

.betlion-info-hero::before {
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.28);
}

.betlion-info-hero::after {
  bottom: -130px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: rgba(127, 38, 0, 0.22);
}

.betlion-info-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.betlion-info-hero__content,
.betlion-info-hero__panel {
  min-width: 0;
  border-radius: 26px;
  box-shadow: var(--betlion-shadow);
}

.betlion-info-hero__media {
  min-width: 0;
  height: 320px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--betlion-shadow);
  background: #8e120d;
}

.betlion-info-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.betlion-info-hero__content {
  padding: 32px 34px 34px;
  background: linear-gradient(180deg, rgba(36, 17, 10, 0.18) 0%, rgba(36, 17, 10, 0.3) 100%);
  color: #f7eadf;
}

.betlion-info-hero__eyebrow,
.betlion-info-hero__panel-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 246, 238, 0.16);
  color: #fff4ea;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.betlion-info-hero__content h1 {
  margin: 16px 0 12px;
  color: #f5e7da;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.betlion-info-hero__content p {
  max-width: 660px;
  margin: 0;
  color: rgba(247, 234, 223, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

.betlion-info-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.betlion-primary-cta {
  min-height: 48px;
  padding: 0 22px;
}

.betlion-info-hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 246, 238, 0.3);
  border-radius: 8px;
  color: #fff8f2;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.betlion-info-hero__panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px;
  background: #fff9f4;
  color: var(--betlion-text);
}

.betlion-info-hero__panel strong {
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.betlion-info-hero__steps {
  margin: 0;
  padding-left: 20px;
  color: var(--betlion-muted);
}

.betlion-info-hero__steps li + li {
  margin-top: 10px;
}

.betlion-info-games {
  padding-top: 30px;
}

.betlion-toc {
  padding: 18px 0 6px;
  background: #f7f7f7;
}

.betlion-toc__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding: 18px 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 12, 8, 0.08);
}

.betlion-toc__title {
  margin: 0;
  color: #7b3a14;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.betlion-toc__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.betlion-toc__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(244, 90, 0, 0.08);
  color: #8d2d00;
  font-size: 14px;
  font-weight: 700;
}

.betlion-toc__nav a:hover,
.betlion-toc__nav a:focus-visible {
  background: rgba(244, 90, 0, 0.14);
}

.betlion-info-games__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .betlion-info-hero__inner {
    grid-template-columns: 1fr;
  }

  .betlion-toc__box {
    align-items: flex-start;
  }

  .betlion-info-hero__media {
    height: 280px;
  }

  .betlion-info-games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .betlion-info-hero {
    padding: 20px 0 16px;
  }

  .betlion-info-hero__content,
  .betlion-info-hero__panel {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .betlion-toc {
    padding-top: 14px;
  }

  .betlion-toc__box {
    padding: 16px 18px;
    border-radius: 16px;
  }

  .betlion-toc__nav {
    width: 100%;
  }

  .betlion-toc__nav a {
    min-height: 34px;
    font-size: 13px;
  }

  .betlion-logo__image {
    height: 44px;
  }

  .betlion-info-hero__media {
    height: 220px;
    border-radius: 20px;
  }

  .betlion-info-hero__content p {
    font-size: 16px;
  }

  .betlion-info-games__grid {
    grid-template-columns: 1fr;
  }
}
