:root {
  --bg: #02131d;
  --bg-soft: #061a25;
  --line: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --accent: #d8f600;
  --btn-light: #f2f2f2;
  --dark-btn: #08141d;
  --card-border: rgba(255, 255, 255, 0.18);
  --radius: 14px;
  --container: 1920px;
  --header-top-h: 112px;
  --header-bottom-h: 84px;
  --header-total-h: calc(var(--header-top-h) + var(--header-bottom-h));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #031520 0%, #04111a 100%);
  color: var(--text);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(2, 19, 29, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top {
  min-height: var(--header-top-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-dazn,
.logo-bet {
  display: grid;
  place-items: center;
  min-height: 50px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.logo-dazn {
  width: 44px;
  background: #121820;
  border: 2px solid #ffffff;
  color: #ffffff;
  line-height: 0.9;
  font-size: 0.88rem;
}

.logo-bet {
  width: 58px;
  background: var(--accent);
  color: #000000;
  font-size: 1.5rem;
  font-style: italic;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 44px);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 112px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.btn {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.25s ease;
}

.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: transparent;
}

.btn-light {
  color: #101010;
  background: var(--btn-light);
}

.btn:hover,
.subnav-item:hover,
.search-btn:hover {
  transform: translateY(-1px);
}

.header-bottom {
  border-top: 1px solid var(--line);
}

.subnav-wrap {
  min-height: var(--header-bottom-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.subnav-scroll {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
}

.subnav-scroll::-webkit-scrollbar {
  display: none;
}

.subnav-item {
  min-width: 144px;
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.01);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.25s ease;
}

.subnav-item.large {
  min-width: 240px;
}

.subnav-item.active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
}

.icon {
  font-size: 1.4rem;
  line-height: 1;
}

.search-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: 0.25s ease;
}

.search-btn svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.burger {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.burger span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.25s ease;
}

.mobile-menu {
  display: none;
  padding: 0 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 12px 0;
}

.mobile-nav a {
  min-height: auto;
  padding: 16px 0;
}

.mobile-nav a.active::after {
  bottom: 8px;
}

.mobile-actions {
  display: grid;
  gap: 12px;
}

.page-content {
  padding-top: calc(var(--header-total-h) + 40px);
}

.hero-placeholder {
  min-height: 120vh;
  padding: 40px 0;
}

.hero-placeholder h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero-placeholder p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 1199px) {
  :root {
    --header-top-h: 88px;
    --header-bottom-h: 76px;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header-left {
    gap: 16px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-top-h: 78px;
    --header-bottom-h: 72px;
  }

  .container {
    width: min(100% - 20px, var(--container));
  }

  .logo-dazn {
    width: 38px;
    min-height: 44px;
    font-size: 0.8rem;
  }

  .logo-bet {
    width: 50px;
    min-height: 44px;
    font-size: 1.25rem;
  }

  .subnav-item {
    min-width: auto;
    padding: 0 18px;
    min-height: 52px;
    font-size: 0.95rem;
  }

  .subnav-item.large {
    min-width: 190px;
  }

  .search-btn {
    width: 48px;
    height: 48px;
  }

  .btn {
    min-height: 52px;
    width: 100%;
  }
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.promo-slider {
  position: relative;
  margin-top: 120px;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.promo-slider__track {
  position: relative;
  min-height: clamp(320px, 42vw, 610px);
}

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.promo-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-slide img {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 610px); 
  object-position: center;
}

.promo-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(6, 17, 25, 0.45);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.promo-slider__arrow svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.promo-slider__arrow:hover {
  background: rgba(6, 17, 25, 0.75);
}

.promo-slider__arrow--prev {
  left: 34px;
}

.promo-slider__arrow--next {
  right: 34px;
}

.promo-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.25s ease;
}

.promo-slider__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--accent);
}

.page-content {
  padding-top: 40px;
}

@media (max-width: 767px) {
  .promo-slider {
    margin-top: var(--header-total-h);
  }

  .promo-slide img {
    height: 360px;
    object-position: center;
  }

  .promo-slider__arrow {
    width: 38px;
    height: 38px;
  }

  .promo-slider__arrow--prev {
    left: 12px;
  }

  .promo-slider__arrow--next {
    right: 12px;
  }

  .promo-slider__dots {
    bottom: 12px;
  }
}
 
.games-strip {
  padding: 28px 0 36px;
  background: linear-gradient(90deg, #031822 0%, #02141d 100%);
}

.games-strip__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.games-strip__title {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #f4f4f4;
}

.games-strip__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.games-strip__all {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.games-strip__all:hover {
  background: rgba(255, 255, 255, 0.22);
}

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

.games-strip__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.games-strip__arrow svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.65);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.games-strip__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.games-strip__viewport {
  overflow: hidden;
}

.games-strip__track {
  display: flex;
  gap: 36px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.game-card {
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  border-radius: 12px;
  overflow: hidden;
  background: #101820;
  transition: transform 0.25s ease;
}

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

.game-card img {
  display: block;
  width: 100%;
  aspect-ratio: 210 / 280;
  object-fit: cover;
}

.game-card__info {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  background: rgba(0, 0, 0, 0.16);
}

@media (max-width: 991px) {
  .games-strip__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .games-strip__controls {
    width: 100%;
    justify-content: space-between;
  }

  .games-strip__track {
    gap: 20px;
  }

  .game-card {
    flex-basis: 180px;
    width: 180px;
  }
}

@media (max-width: 767px) {
  .games-strip {
    padding: 22px 0 28px;
  }

  .games-strip__title {
    font-size: 1.2rem;
  }

  .games-strip__controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .games-strip__all {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .games-strip__arrow {
    width: 44px;
    height: 44px;
  }

  .game-card {
    flex-basis: 150px;
    width: 150px;
  }

  .games-strip__track {
    gap: 14px;
  }
}  
.news-games {
  padding: 28px 0 42px;
  background: linear-gradient(90deg, #021822 0%, #03131c 100%);
}

.news-games__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.news-games__title {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #f4f4f4;
}

.news-games__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.news-games__all {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.news-games__all:hover {
  background: rgba(255, 255, 255, 0.22);
}

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

.news-games__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.news-games__arrow svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.65);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-games__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.news-games__viewport {
  overflow: hidden;
}

.news-games__track {
  display: flex;
  gap: 36px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.news-card {
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #e5f700;
  background: #101820;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 210 / 280;
  object-fit: cover;
}

.news-card__info {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  background: rgba(0, 0, 0, 0.18);
}

.news-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 0 0 12px 0;
  background: rgba(86, 92, 97, 0.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .news-games__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-games__controls {
    width: 100%;
    justify-content: space-between;
  }

  .news-games__track {
    gap: 20px;
  }

  .news-card {
    flex-basis: 180px;
    width: 180px;
  }

  .news-card__badge {
    min-height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .news-games {
    padding: 22px 0 28px;
  }

  .news-games__title {
    font-size: 1.2rem;
  }

  .news-games__controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .news-games__all {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .news-games__arrow {
    width: 44px;
    height: 44px;
  }

  .news-card {
    flex-basis: 150px;
    width: 150px;
  }

  .news-games__track {
    gap: 14px;
  }

  .news-card__badge {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
} 
  
.missions-games {
  padding: 28px 0 44px;
  background: linear-gradient(90deg, #031822 0%, #02141d 100%);
}

.missions-games__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.missions-games__title {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #f4f4f4;
}

.missions-games__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.missions-games__all {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.missions-games__all:hover {
  background: rgba(255, 255, 255, 0.22);
}

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

.missions-games__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.missions-games__arrow svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.65);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.missions-games__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.missions-games__viewport {
  overflow: hidden;
}

.missions-games__track {
  display: flex;
  gap: 36px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.mission-card {
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  border-radius: 12px;
  overflow: hidden;
  background: #101820;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.mission-card img {
  display: block;
  width: 100%;
  aspect-ratio: 210 / 280;
  object-fit: cover;
}

.mission-card__info {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 991px) {
  .missions-games__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .missions-games__controls {
    width: 100%;
    justify-content: space-between;
  }

  .missions-games__track {
    gap: 20px;
  }

  .mission-card {
    flex-basis: 180px;
    width: 180px;
  }
}

@media (max-width: 767px) {
  .missions-games {
    padding: 22px 0 28px;
  }

  .missions-games__title {
    font-size: 1.2rem;
  }

  .missions-games__controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .missions-games__all {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .missions-games__arrow {
    width: 44px;
    height: 44px;
  }

  .mission-card {
    flex-basis: 150px;
    width: 150px;
  }

  .missions-games__track {
    gap: 14px;
  }
}
 
 
.top-games {
  padding: 28px 0 44px;
  background: linear-gradient(90deg, #031822 0%, #02141d 100%);
}

.top-games__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.top-games__title {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #f4f4f4;
}

.top-games__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.top-games__all {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.top-games__all:hover {
  background: rgba(255, 255, 255, 0.22);
}

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

.top-games__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.top-games__arrow svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.65);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-games__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.top-games__viewport {
  overflow: hidden;
}

.top-games__track {
  display: flex;
  gap: 36px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.top-game-card {
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  border-radius: 12px;
  overflow: hidden;
  background: #101820;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.top-game-card img {
  display: block;
  width: 100%;
  aspect-ratio: 210 / 280;
  object-fit: cover;
}

.top-game-card__info {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  background: rgba(0, 0, 0, 0.18);
}

.top-game-card__badge {
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 2;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 0 999px 999px 0;
  background: rgba(98, 106, 118, 0.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  font-weight: 700;
}

.top-game-card__corner {
  position: absolute;
  top: 12px;
  right: -34px;
  z-index: 2;
  min-width: 132px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e93d2f;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transform: rotate(45deg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}

@media (max-width: 991px) {
  .top-games__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-games__controls {
    width: 100%;
    justify-content: space-between;
  }

  .top-games__track {
    gap: 20px;
  }

  .top-game-card {
    flex-basis: 180px;
    width: 180px;
  }

  .top-game-card__badge {
    min-height: 40px;
    font-size: 0.9rem;
  }

  .top-game-card__corner {
    min-width: 116px;
    height: 30px;
    right: -30px;
    font-size: 0.72rem;
  }
}

@media (max-width: 767px) {
  .top-games {
    padding: 22px 0 28px;
  }

  .top-games__title {
    font-size: 1.2rem;
  }

  .top-games__controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .top-games__all {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .top-games__arrow {
    width: 44px;
    height: 44px;
  }

  .top-game-card {
    flex-basis: 150px;
    width: 150px;
  }

  .top-games__track {
    gap: 14px;
  }

  .top-game-card__badge {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .top-game-card__corner {
    min-width: 104px;
    height: 28px;
    right: -28px;
    top: 10px;
    font-size: 0.66rem;
  }
}
 
 
 
.bar-slots {
  padding: 28px 0 44px;
  background: linear-gradient(90deg, #031822 0%, #02141d 100%);
}

.bar-slots__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.bar-slots__title {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #f4f4f4;
}

.bar-slots__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.bar-slots__all {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.bar-slots__all:hover {
  background: rgba(255, 255, 255, 0.22);
}

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

.bar-slots__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.bar-slots__arrow svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.65);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bar-slots__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.bar-slots__viewport {
  overflow: hidden;
}

.bar-slots__track {
  display: flex;
  gap: 36px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.bar-slot-card {
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  border-radius: 12px;
  overflow: hidden;
  background: #101820;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bar-slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.bar-slot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 210 / 280;
  object-fit: cover;
}

.bar-slot-card__info {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 991px) {
  .bar-slots__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .bar-slots__controls {
    width: 100%;
    justify-content: space-between;
  }

  .bar-slots__track {
    gap: 20px;
  }

  .bar-slot-card {
    flex-basis: 180px;
    width: 180px;
  }
}

@media (max-width: 767px) {
  .bar-slots {
    padding: 22px 0 28px;
  }

  .bar-slots__title {
    font-size: 1.2rem;
  }

  .bar-slots__controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .bar-slots__all {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .bar-slots__arrow {
    width: 44px;
    height: 44px;
  }

  .bar-slot-card {
    flex-basis: 150px;
    width: 150px;
  }

  .bar-slots__track {
    gap: 14px;
  }
}
 

 
.age-gods {
  padding: 28px 0 44px;
  background: linear-gradient(90deg, #031822 0%, #02141d 100%);
}

.age-gods__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.age-gods__title {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #f4f4f4;
}

.age-gods__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.age-gods__all {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.age-gods__all:hover {
  background: rgba(255, 255, 255, 0.22);
}

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

.age-gods__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.age-gods__arrow svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.65);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.age-gods__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.age-gods__viewport {
  overflow: hidden;
}

.age-gods__track {
  display: flex;
  gap: 36px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.age-gods-card {
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  border-radius: 12px;
  overflow: hidden;
  background: #101820;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.age-gods-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.age-gods-card img {
  display: block;
  width: 100%;
  aspect-ratio: 210 / 280;
  object-fit: cover;
}

.age-gods-card__info {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  background: rgba(0, 0, 0, 0.18);
}

.age-gods-card--jackpot {
  overflow: visible;
}

.age-gods-card--jackpot img {
  border-radius: 12px 12px 0 0;
}

.age-gods-card__jackpot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 0 12px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, rgba(60, 67, 75, 0.96) 0%, rgba(42, 48, 55, 0.96) 100%);
  color: #f5f5f5;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
      margin-top: -60px;
    z-index: 10;
    position: absolute;
}

@media (max-width: 991px) {
  .age-gods__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .age-gods__controls {
    width: 100%;
    justify-content: space-between;
  }

  .age-gods__track {
    gap: 20px;
  }

  .age-gods-card {
    flex-basis: 180px;
    width: 180px;
  }

  .age-gods-card__jackpot {
    min-height: 52px;
    font-size: 0.92rem;
  }
}

@media (max-width: 767px) {
  .age-gods {
    padding: 22px 0 28px;
  }

  .age-gods__title {
    font-size: 1.2rem;
  }

  .age-gods__controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .age-gods__all {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .age-gods__arrow {
    width: 44px;
    height: 44px;
  }

  .age-gods-card {
    flex-basis: 150px;
    width: 150px;
  }

  .age-gods__track {
    gap: 14px;
  }

  .age-gods-card__jackpot {
    min-height: 46px;
    font-size: 0.82rem;
    padding: 0 8px;
  }
}
 
 

.site-footer {
  margin-top: 18px;
  padding: 28px 0 22px;
  background: linear-gradient(90deg, #02141d 0%, #031822 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .container {
  width: min(100% - 36px, 1920px);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.15fr 1.2fr 0.8fr;
  gap: 48px;
  padding: 28px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__heading,
.site-footer__subheading {
  margin: 0 0 26px;
  color: #f3f3f3;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.98rem;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.site-footer__list a:hover {
  color: #ffffff;
}

.site-footer__apps {
  margin-top: 14px;
}

.site-footer__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 50px;
}

.store-badge img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.site-footer__legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 46px 22px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__legal p {
  margin: 0;
  max-width: 1000px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer__certs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer__certs img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-left {
  display: grid;
  gap: 22px;
}

.site-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.96rem;
  line-height: 1.5;
}

.site-footer__partners {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}

.footer-logo--text img {
  height: 22px;
}

.site-footer__socials-wrap {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.site-footer__socials-title {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.76);
}

.social-link svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:hover {
  color: #ffffff;
}

@media (max-width: 1399px) {
  .site-footer__top {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 34px 28px;
  }

  .site-footer__legal {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .site-footer {
    padding-top: 20px;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .site-footer__legal,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__certs,
  .site-footer__socials-wrap {
    justify-content: flex-start;
    justify-items: start;
  }
}

@media (max-width: 767px) {
  .site-footer .container {
    width: min(100% - 20px, 1920px);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px 0;
  }

  .site-footer__heading,
  .site-footer__subheading {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .site-footer__list {
    gap: 14px;
  }

  .site-footer__list a,
  .site-footer__copyright,
  .site-footer__legal p,
  .site-footer__socials-title {
    font-size: 0.92rem;
  }

  .site-footer__stores {
    gap: 12px;
  }

  .store-badge img {
    height: 46px;
  }

  .site-footer__legal {
    padding: 28px 0 24px;
    gap: 18px;
  }

  .site-footer__certs img {
    height: 28px;
  }

  .site-footer__bottom {
    padding-top: 22px;
  }

  .site-footer__partners {
    gap: 18px;
  }

  .footer-logo img {
    height: 28px;
  }

  .footer-logo--text img {
    height: 18px;
  }
}
 
body.modal-open,
body.age-check-open {
  overflow: hidden;
}

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

.auth-modal,
.age-check {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 2200;
}

.auth-modal.is-open,
.age-check.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.auth-modal__backdrop,
.age-check__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 15, 0.78);
  backdrop-filter: blur(8px);
}

.auth-modal__dialog,
.age-check__panel {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #06141f 0%, #02111a 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.auth-modal__content,
.age-check__panel {
  padding: 34px;
}

.auth-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.auth-modal__close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 20px;
  height: 2px;
  background: #fff;
}

.auth-modal__close span:first-child { transform: rotate(45deg); }
.auth-modal__close span:last-child { transform: rotate(-45deg); }

.auth-modal__content h2,
.age-check__panel h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.auth-modal__subtitle,
.age-check__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.auth-modal__subtitle a {
  color: #72c7ff;
}

.auth-form {
  margin-top: 26px;
}

.auth-form__field {
  display: block;
}

.auth-form__field + .auth-form__field {
  margin-top: 16px;
}

.auth-form__field input {
  width: 100%;
  height: 64px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  outline: none;
  font-size: 1rem;
}

.auth-form__field input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.auth-form__field input:focus {
  border-color: rgba(114, 199, 255, 0.85);
}

.auth-form__field--password {
  position: relative;
}

.auth-form__field--password input {
  padding-right: 54px;
}

.auth-form__toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.auth-form__forgot {
  display: inline-block;
  margin-top: 16px;
  color: #72c7ff;
}

.auth-form__submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
  background: #d8d8d8;
  color: #808080;
}

.auth-form__submit:disabled {
  cursor: not-allowed;
}

.age-check__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  margin-bottom: 18px;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #000;
  background: var(--accent);
}

.age-check__actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.age-check__actions .btn {
  flex: 1;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(4, 18, 27, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  z-index: 2100;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.cookie-banner__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .auth-modal,
  .age-check {
    padding: 16px;
  }

  .auth-modal__content,
  .age-check__panel {
    padding: 24px;
  }

  .auth-form__field input {
    height: 58px;
  }

  .age-check__actions,
  .cookie-banner,
  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    align-items: stretch;
  }

  .cookie-banner__actions .btn,
  .age-check__actions .btn {
    width: 100%;
  }
}
