@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/asset-005.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/asset-008.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'BeaufortforLol';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/asset-010.ttf") format('truetype');
}

@font-face {
  font-family: 'BeaufortforLol';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/asset-011.ttf") format('truetype');
}

@font-face {
  font-family: 'BeaufortforLol';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/asset-012.ttf") format('truetype');
}

:root {
  --color-bg-primary: #1a1225;
  --color-bg-secondary: #231a2e;
  --color-bg-card: #2d2240;
  --color-bg-header: #292230;
  --color-bg-sidebar: #1e1529;
  --color-bg-footer: #15101d;
  --color-text-primary: #ffffff;
  --color-text-secondary: #b8b0c5;
  --color-text-muted: #7a7189;
  --color-accent: #d6a53e;
  --color-accent-hover: #e8b94e;
  --color-brand: #7c5cbf;
  --color-brand-hover: #9370db;
  --color-cta: #4caf50;
  --color-cta-hover: #5cbf60;
  --color-link-seo: #e8b94e;
  --color-border: #3a2d50;
  --color-overlay: rgba(0, 0, 0, 0.6);
  --header-height: 62px;
  --sidebar-width: 240px;
  --font-primary: 'Jost', sans-serif;
  --font-heading: 'BeaufortforLol', 'Jost', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 200ms ease;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--color-bg-header);
  border-bottom: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

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

.header__logo img {
  width: 82px;
  height: 44px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.burger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
}

.burger-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.btn--primary {
  background: var(--color-cta);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-cta-hover);
}

.btn--secondary {
  background: var(--color-bg-card);
  color: var(--color-text-primary);
}

.btn--secondary:hover {
  background: var(--color-brand);
}

.btn--accent {
  background: var(--color-accent);
  color: #1a1225;
}

.btn--accent:hover {
  background: var(--color-accent-hover);
}

.btn--l {
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
}

.sidebar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--color-bg-sidebar);
  overflow-y: auto;
  z-index: 90;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar__promo {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--color-border);
}

.sidebar__promo-img {
  width: 80px;
  height: 83px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.sidebar__promo-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.sidebar__nav {
  padding: 8px 0;
}

.sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition), background var(--transition);
}

.sidebar__link:hover,
.sidebar__link--active {
  color: var(--color-text-primary);
  background: rgba(124, 92, 191, 0.1);
}

.sidebar__link img {
  width: 20px;
  height: 20px;
}

.sidebar__divider {
  height: 1px;
  background: var(--color-border);
  margin: 4px 16px;
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  z-index: 89;
}

.sidebar-backdrop.active {
  display: block;
}

.sub-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: var(--color-bg-secondary);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sub-menu::-webkit-scrollbar {
  display: none;
}

.sub-menu__link {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  background: var(--color-bg-card);
  transition: background var(--transition), color var(--transition);
}

.sub-menu__link:hover,
.sub-menu__link--active {
  background: var(--color-brand);
  color: var(--color-text-primary);
}

.main-wrapper {
  padding-top: var(--header-height);
}

.main-content {
  padding: 0 16px 40px;
}

.hero-slider {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hero-slider__track::-webkit-scrollbar {
  display: none;
}

.hero-slider__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 21 / 9;
  min-height: 200px;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, transparent 70%);
}

.hero-slider__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 50%;
  margin-bottom: 8px;
}

.hero-slider__subtitle {
  font-size: 13px;
  color: var(--color-text-secondary);
  max-width: 50%;
  margin-bottom: 16px;
}

.hero-slider__arrows {
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.hero-slider__arrow {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: background var(--transition);
}

.hero-slider__arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.game-section {
  margin-bottom: 24px;
}

.game-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.game-section__title {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-section__title a {
  color: var(--color-text-primary);
}

.game-section__title a:hover {
  color: var(--color-accent);
}

.game-section__badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--color-cta);
  color: #fff;
}

.game-section__see-all {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-brand);
  display: flex;
  align-items: center;
  gap: 4px;
}

.game-section__see-all:hover {
  color: var(--color-brand-hover);
}

.game-section__see-all svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.game-slider {
  position: relative;
}

.game-slider__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.game-slider__track::-webkit-scrollbar {
  display: none;
}

.game-card {
  flex: 0 0 calc(33.333% - 7px);
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--color-bg-card);
  aspect-ratio: 2 / 3;
  transition: transform var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.game-card__name {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.game-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  z-index: 2;
  transition: background var(--transition);
}

.game-slider__arrow:hover {
  background: rgba(0, 0, 0, 0.9);
}

.game-slider__arrow--prev {
  left: -6px;
}

.game-slider__arrow--next {
  right: -6px;
}

.promo-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16 / 5;
}

.promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.promo-banner__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.promo-banner__highlight {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.provider-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  transition: background var(--transition);
}

.provider-card:hover {
  background: var(--color-border);
}

.provider-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.seo-block {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.seo-block h1 {
  font-size: 22px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.seo-block h2 {
  font-size: 18px;
  color: var(--color-text-primary);
  margin-top: 24px;
  margin-bottom: 10px;
}

.seo-block h3 {
  font-size: 16px;
  color: var(--color-text-primary);
  margin-top: 20px;
  margin-bottom: 8px;
}

.seo-block p {
  margin-bottom: 12px;
}

.seo-block a {
  color: var(--color-link-seo);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-block a:hover {
  color: var(--color-accent-hover);
}

.seo-block ol,
.seo-block ul {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 12px;
}

.seo-block ul {
  list-style: disc;
}

.seo-block li {
  margin-bottom: 6px;
}

.seo-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.seo-block table td {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  font-size: 13px;
}

.seo-block table tr:first-child td {
  background: var(--color-bg-card);
  font-weight: 700;
  color: var(--color-text-primary);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.breadcrumbs a {
  color: var(--color-text-secondary);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs__sep {
  color: var(--color-text-muted);
}

.footer {
  background: var(--color-bg-footer);
  padding: 32px 16px;
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.footer__col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.footer__link {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 3px 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--color-text-primary);
}

.footer__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
}

.footer__icon {
  height: 28px;
  width: auto;
}

.footer__disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.footer__copyright {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  padding-top: 16px;
}

@media (min-width: 768px) {
  .game-card {
    flex: 0 0 calc(20% - 8px);
  }

  .hero-slider__title {
    font-size: 28px;
  }

  .hero-slider__subtitle {
    font-size: 15px;
  }

  .seo-block {
    padding: 32px;
  }

  .seo-block h1 {
    font-size: 26px;
  }

  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 0 24px;
  }

  .sidebar {
    transform: translateX(0);
  }

  .sidebar-backdrop {
    display: none !important;
  }

  .main-wrapper {
    padding-left: var(--sidebar-width);
  }

  .burger-btn {
    display: none;
  }

  .main-content {
    padding: 0 24px 40px;
  }

  .game-card {
    flex: 0 0 calc(16.666% - 9px);
  }

  .hero-slider__slide {
    aspect-ratio: 21 / 7;
  }

  .hero-slider__title {
    font-size: 32px;
  }

  .footer {
    padding: 40px 24px;
  }

  .footer__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1280px) {
  .game-card {
    flex: 0 0 calc(14.285% - 9px);
  }

  .header__logo img {
    width: 100px;
    height: 54px;
  }
}

.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;
}