* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #ffffff;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.top-header {
  background: #000000;
}

.header-inner {
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  position: absolute;
  left: 0%;
  color: #ffffff;
  text-decoration: none;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.logo img {
  height: 30px;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-login,
.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 40px;
  padding: 0 17px;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-login {
  color: #ffffff;
  border: 1px solid #ffffff;
  background: transparent;
}

.btn-login:hover {
  background: #ffffff;
  color: #000000;
}

.btn-register {
  color: #ffffff;
  background: #18d36f;
  border: 1px solid #18d36f;
}

.btn-register:hover {
  background: #12b95f;
  border-color: #12b95f;
}

.main-nav {
  background: #050d14;
}

.nav-list {
  height: 59px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-list a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.3px;
  transition: 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: #18d36f;
}

.burger {
  display: none;
  width: 34px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  margin: 6px 0;
  transition: 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.page-content {
  padding-top: 128px;
  min-height: 100vh;
  background: #ffffff;
  color: #000000;
}


@media (max-width: 768px) {
  .header-inner {
    height: 64px;
  }

  .logo {
    position: static;
    transform: none;
    font-size: 22px;
  }

  .header-actions {
    display: none;
  }

  .burger {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #050d14;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 15px 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 17px;
  }

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

.hero-slider-section {
  padding: 16px 0;
  background: linear-gradient(90deg, #031321 0%, #08233a 50%, #031321 100%);
}

.hero-slider {
  position: relative;
}

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

.slider-card {
  height: 235px;
  border-radius: 14px;
  overflow: hidden;
  background: #071421;
}

.slider-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slider-arrow {
  width: 48px;
  opacity: 1;
}

.slider-arrow-prev {
  left: -18px;
}

.slider-arrow-next {
  right: -18px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 34px;
  height: 34px;
  background-size: 100% 100%;
  filter: brightness(0) invert(1);
}

.hero-slider-section {
  margin-top: 128px;
}

.page-content {
  padding-top: 0;
}


@media (max-width: 992px) {
  .slider-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-card {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .hero-slider-section {
    margin-top: 64px;
  }

  .slider-grid {
    grid-template-columns: 1fr;
  }

  .slider-card {
    height: 210px;
  }

  .slider-arrow-prev {
    left: 0;
  }

  .slider-arrow-next {
    right: 0;
  }
}

@media (max-width: 480px) {
  .slider-card {
    height: 170px;
    border-radius: 10px;
  }
}

.games-section {
  padding: 14px 0 20px;
  background: linear-gradient(90deg, #031321 0%, #08233a 50%, #031321 100%);
  color: #ffffff;
  overflow: hidden;
}

.games-tabs-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.games-search {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border: 1px solid #0c6da8;
  border-radius: 7px;
  background: #061a2d;
  position: relative;
  cursor: pointer;
}

.games-search::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  top: 10px;
  left: 10px;
}

.games-search::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background: #ffffff;
  transform: rotate(45deg);
  top: 24px;
  left: 23px;
  border-radius: 2px;
}

.games-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.games-tabs::-webkit-scrollbar {
  display: none;
}

.games-tab {
  height: 38px;
  padding: 0 18px;
  border: 1px solid #0c6da8;
  border-radius: 7px;
  background: #061a2d;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s ease;
}

.games-tab.active,
.games-tab:hover {
  background: #0d4774;
  border-color: #0d4774;
}

.games-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.games-heading-row h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

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

.games-link {
  color: #19d67a;
  font-size: 15px;
  text-decoration: underline;
  margin-right: 38px;
}

.games-arrow {
  width: 35px;
  height: 25px;
  border: 1px solid #0c6da8;
  border-radius: 5px;
  background: #061a2d;
  color: #19d67a;
  font-size: 28px;
  line-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.games-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.games-slider-wrap {
  width: 100%;
  overflow: visible;
}

.games-slider {
  display: flex;
  gap: 55px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-left: 46px;
  padding-bottom: 2px;
}

.games-slider::-webkit-scrollbar {
  display: none;
}

.game-card {
  position: relative;
  min-width: 220px;
  width: 220px;
  height: 220px;
  border-radius: 11px;
  overflow: visible;
  flex: 0 0 auto;
}

.game-card img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  border-radius: 11px;
}

.game-number {
  position: absolute;
  left: -44px;
  bottom: 0;
  z-index: 2;
  font-size: 144px;
  line-height: 0.75;
  font-weight: 900;
  color: rgba(6, 27, 45, 0.82);
  -webkit-text-stroke: 3px rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.game-info {
  position: absolute;
  left: 14px;
  right: 10px;
  bottom: 7px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.players-icon {
  font-size: 14px;
}


@media (max-width: 992px) {
  .games-heading-row h2 {
    font-size: 20px;
  }

  .games-slider {
    gap: 48px;
    padding-left: 42px;
  }

  .game-card {
    min-width: 200px;
    width: 200px;
    height: 200px;
  }

  .game-card img {
    height: 200px;
  }

  .game-number {
    font-size: 125px;
    left: -38px;
  }
}

@media (max-width: 768px) {
  .games-tabs-wrap {
    align-items: flex-start;
  }

  .games-heading-row {
    align-items: flex-start;
    gap: 14px;
  }

  .games-controls {
    flex-shrink: 0;
  }

  .games-link {
    display: none;
  }

  .games-slider {
    gap: 38px;
    padding-left: 36px;
  }

  .game-card {
    min-width: 180px;
    width: 180px;
    height: 180px;
  }

  .game-card img {
    height: 180px;
  }

  .game-number {
    font-size: 105px;
    left: -34px;
    bottom: -16px;
  }
}

@media (max-width: 480px) {
  .games-section {
    padding-top: 12px;
  }

  .games-tab {
    height: 36px;
    padding: 0 14px;
    font-size: 14px;
  }

  .games-heading-row h2 {
    font-size: 18px;
  }

  .games-slider {
    gap: 32px;
    padding-left: 30px;
  }

  .game-card {
    min-width: 150px;
    width: 150px;
    height: 150px;
  }

  .game-card img {
    height: 150px;
    border-radius: 9px;
  }

  .game-number {
    font-size: 88px;
    left: -28px;
    bottom: -13px;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
  }

  .game-info {
    font-size: 13px;
  }
}

.casino-games-section {
  padding: 18px 0 28px;
  background: linear-gradient(90deg, #031321 0%, #08233a 50%, #031321 100%);
  color: #ffffff;
  overflow: hidden;
}

.casino-row {
  margin-bottom: 32px;
}

.casino-row:last-child {
  margin-bottom: 0;
}

.casino-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.casino-row-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.casino-row-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.casino-games-count {
  color: #19d67a;
  font-size: 15px;
  text-decoration: underline;
  margin-right: 32px;
}

.casino-row-arrow {
  width: 35px;
  height: 25px;
  border: 1px solid #0c6da8;
  border-radius: 5px;
  background: #061a2d;
  color: #19d67a;
  font-size: 28px;
  line-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.casino-row-arrow:hover {
  border-color: #19d67a;
}

.casino-slider {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.casino-slider::-webkit-scrollbar {
  display: none;
}

.casino-card {
  position: relative;
  flex: 0 0 auto;
  width: 232px;
  height: 309px;
  border-radius: 11px;
  overflow: hidden;
  background: #061a2d;
  cursor: pointer;
}

.live-card {
  height: 307px;
}

.casino-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.casino-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 45%,
      rgba(0, 0, 0, 0.82) 100%);
  opacity: 1;
  pointer-events: none;
}

.casino-card-bottom {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

.casino-hover {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(6, 18, 28, 0.45);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.casino-hover h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.play-btn {
  min-width: 138px;
  height: 48px;
  padding: 0 28px;
  border-radius: 5px;
  background: #18d36f;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.play-btn:hover {
  background: #12b95f;
  color: #ffffff;
}

.casino-card:hover .casino-hover {
  opacity: 1;
  visibility: visible;
}

.casino-card:hover img {
  transform: scale(1.04);
}

.casino-card:hover .casino-card-bottom {
  opacity: 0;
}


@media (max-width: 1200px) {
  .casino-card {
    width: 215px;
    height: 286px;
  }

  .live-card {
    height: 286px;
  }
}

@media (max-width: 992px) {
  .casino-row-header h2 {
    font-size: 20px;
  }

  .casino-card {
    width: 200px;
    height: 265px;
  }

  .live-card {
    height: 265px;
  }
}

@media (max-width: 768px) {
  .casino-games-count {
    display: none;
  }

  .casino-card {
    width: 180px;
    height: 240px;
  }

  .live-card {
    height: 240px;
  }

  .casino-card-bottom {
    font-size: 15px;
  }

  .play-btn {
    min-width: 120px;
    height: 42px;
    font-size: 19px;
  }

  .casino-hover h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .casino-row-header h2 {
    font-size: 18px;
  }

  .casino-slider {
    gap: 7px;
  }

  .casino-card {
    width: 150px;
    height: 200px;
    border-radius: 9px;
  }

  .live-card {
    height: 200px;
  }

  .casino-card img {
    border-radius: 9px;
  }

  .casino-card-bottom {
    font-size: 13px;
  }

  .casino-hover {
    gap: 14px;
  }

  .play-btn {
    min-width: 105px;
    height: 38px;
    font-size: 17px;
  }
}

.game-hover {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(6, 18, 28, 0.45);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.game-hover h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.game-card:hover .game-hover {
  opacity: 1;
  visibility: visible;
}

.spotlight-section {
  padding: 22px 0 28px;
  background: linear-gradient(90deg, #031321 0%, #08233a 50%, #031321 100%);
  color: #ffffff;
  overflow: hidden;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 8px;
}

.spotlight-card {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  background: #061a2d;
  cursor: pointer;
}

.spotlight-card-large {
  grid-row: span 2;
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.spotlight-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 4;
  height: 22px;
  padding: 0 9px;
  border-radius: 3px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 22px;
  text-transform: uppercase;
}

.spotlight-badge.blue {
  background: #1c78a8;
}

.spotlight-badge.green {
  background: #12c96b;
}

.spotlight-badge.dark {
  background: #13203a;
  color: #ffffff;
}

.spotlight-badge.dark::first-letter {
  color: #ffffff;
}

.spotlight-hover {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(6, 18, 28, 0.48);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.spotlight-hover h3 {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}

.spotlight-card:hover .spotlight-hover {
  opacity: 1;
  visibility: visible;
}

.spotlight-card:hover img {
  transform: scale(1.04);
}

.spotlight-card:hover .spotlight-badge {
  opacity: 0;
  visibility: hidden;
}


.play-btn {
  min-width: 138px;
  height: 48px;
  padding: 0 28px;
  border-radius: 5px;
  background: #18d36f;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.play-btn:hover {
  background: #12b95f;
  color: #ffffff;
}

.light-wonder-section {
  padding: 22px 0 36px;
  background: linear-gradient(90deg, #031321 0%, #08233a 50%, #031321 100%);
  color: #ffffff;
  overflow: hidden;
}

.mini-games-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 34px;
}

.mini-game-card {
  position: relative;
  height: 220px;
  border-radius: 11px;
  overflow: hidden;
  background: #061a2d;
  cursor: pointer;
}

.mini-game-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.mini-game-price {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  min-height: 29px;
  padding: 5px 10px 6px;
  background: linear-gradient(90deg,
      rgba(6, 45, 78, 0.9) 0%,
      rgba(20, 31, 40, 0.9) 100%);
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.mini-game-card:hover img {
  transform: scale(1.04);
}

.mini-game-card:hover .mini-game-price,
.mini-game-card:hover .spotlight-badge {
  opacity: 0;
  visibility: hidden;
}

.mini-game-card:hover .game-hover {
  opacity: 1;
  visibility: visible;
}

.light-wonder-title {
  margin-bottom: 14px;
}

.light-wonder-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.wonder-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #05364d 0%, #031421 100%);
}

.wonder-promo-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.wonder-promo-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(3, 13, 22, 0.6) 0%,
      transparent 35%);
  pointer-events: none;
}

.wonder-promo-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.wonder-promo-content {
  padding: 36px 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #073f59 0%, #031421 100%);
}

.wonder-promo-content span {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.wonder-promo-content h3 {
  max-width: 620px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
}

.wonder-promo-content p {
  max-width: 700px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.promo-play-btn {
  width: 250px;
  height: 52px;
  border-radius: 5px;
  background: #18d36f;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.promo-play-btn:hover {
  background: #12b95f;
  color: #ffffff;
}


.game-hover {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(6, 18, 28, 0.48);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.game-hover h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.play-btn {
  min-width: 138px;
  height: 48px;
  padding: 0 28px;
  border-radius: 5px;
  background: #18d36f;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.play-btn:hover {
  background: #12b95f;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .mini-game-card {
    height: 200px;
  }

  .wonder-promo-content h3 {
    font-size: 34px;
  }

  .wonder-promo-content p {
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .mini-games-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .mini-game-card {
    height: 210px;
  }

  .wonder-promo {
    grid-template-columns: 1fr;
  }

  .wonder-promo-image {
    min-height: 330px;
  }

  .wonder-promo-content {
    padding: 28px;
  }

  .wonder-promo-content h3 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .mini-games-row {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 28px;
  }

  .mini-game-card {
    height: 190px;
  }

  .light-wonder-title h2 {
    font-size: 19px;
  }

  .wonder-promo-image {
    min-height: 260px;
  }

  .wonder-promo-content span {
    font-size: 14px;
    letter-spacing: 4px;
  }

  .wonder-promo-content h3 {
    font-size: 26px;
  }

  .wonder-promo-content p {
    font-size: 16px;
  }

  .promo-play-btn {
    width: 210px;
    height: 48px;
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .mini-games-row {
    gap: 7px;
  }

  .mini-game-card {
    height: 160px;
    border-radius: 9px;
  }

  .mini-game-price {
    min-height: 26px;
    font-size: 15px;
  }

  .game-hover {
    gap: 13px;
    padding: 12px;
  }

  .game-hover h3 {
    font-size: 15px;
  }

  .play-btn {
    min-width: 105px;
    height: 38px;
    font-size: 17px;
  }

  .wonder-promo-image {
    min-height: 220px;
  }

  .wonder-promo-content {
    padding: 22px 18px;
  }

  .wonder-promo-content h3 {
    font-size: 23px;
  }

  .wonder-promo-content p {
    font-size: 15px;
  }

  .promo-play-btn {
    width: 100%;
    height: 46px;
    font-size: 20px;
  }
}

.all-games-section {
  padding: 22px 0 34px;
  background: linear-gradient(90deg, #031321 0%, #08233a 50%, #031321 100%);
  color: #ffffff;
  overflow: hidden;
}

.all-games-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.all-games-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.all-games-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.all-games-count {
  color: #19d67a;
  font-size: 15px;
  text-decoration: underline;
  margin-right: 38px;
}

.all-games-arrow {
  width: 35px;
  height: 25px;
  border: 1px solid #0c6da8;
  border-radius: 5px;
  background: #061a2d;
  color: #19d67a;
  font-size: 28px;
  line-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.all-games-arrow:hover {
  border-color: #19d67a;
}

.all-games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.all-game-card {
  position: relative;
  height: 235px;
  border-radius: 11px;
  overflow: hidden;
  background: #061a2d;
  cursor: pointer;
}

.all-game-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.all-game-card:hover img {
  transform: scale(1.04);
}

.all-game-card:hover .game-hover {
  opacity: 1;
  visibility: visible;
}

.all-game-card:hover .spotlight-badge {
  opacity: 0;
  visibility: hidden;
}


.game-hover {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(6, 18, 28, 0.48);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.game-hover h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.play-btn {
  min-width: 138px;
  height: 48px;
  padding: 0 28px;
  border-radius: 5px;
  background: #18d36f;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.play-btn:hover {
  background: #12b95f;
  color: #ffffff;
}


.spotlight-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 4;
  height: 22px;
  padding: 0 9px;
  border-radius: 3px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 22px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.spotlight-badge.green {
  background: #12c96b;
}

.spotlight-badge.dark {
  background: #13203a;
}

@media (max-width: 1200px) {
  .all-game-card {
    height: 210px;
  }
}

@media (max-width: 992px) {
  .all-games-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .all-game-card {
    height: 205px;
  }
}

@media (max-width: 768px) {
  .all-games-header h2 {
    font-size: 19px;
  }

  .all-games-count {
    display: none;
  }

  .all-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .all-game-card {
    height: 180px;
  }

  .game-hover h3 {
    font-size: 16px;
  }

  .play-btn {
    min-width: 120px;
    height: 42px;
    font-size: 19px;
  }
}

@media (max-width: 576px) {
  .all-games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .all-game-card {
    height: 160px;
    border-radius: 9px;
  }

  .spotlight-badge {
    height: 20px;
    padding: 0 7px;
    font-size: 11px;
    line-height: 20px;
  }
}

@media (max-width: 380px) {
  .all-game-card {
    height: 140px;
  }

  .game-hover {
    gap: 13px;
    padding: 12px;
  }

  .game-hover h3 {
    font-size: 14px;
  }

  .play-btn {
    min-width: 100px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .spotlight-grid {
    grid-template-rows: repeat(2, 210px);
  }
}

@media (max-width: 992px) {
  .spotlight-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
  }

  .spotlight-card {
    height: 210px;
  }

  .spotlight-card-large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
    min-height: 428px;
  }
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-card,
  .spotlight-card-large {
    grid-column: auto;
    grid-row: auto;
    height: 210px;
    min-height: unset;
  }

  .spotlight-card-large {
    grid-column: span 2;
    height: 320px;
  }

  .spotlight-hover h3 {
    font-size: 16px;
  }

  .play-btn {
    min-width: 120px;
    height: 42px;
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .spotlight-grid {
    gap: 7px;
  }

  .spotlight-card {
    height: 170px;
    border-radius: 9px;
  }

  .spotlight-card-large {
    height: 260px;
  }

  .spotlight-badge {
    height: 20px;
    padding: 0 7px;
    font-size: 11px;
    line-height: 20px;
  }

  .spotlight-hover {
    gap: 14px;
    padding: 14px;
  }

  .spotlight-hover h3 {
    font-size: 15px;
  }

  .play-btn {
    min-width: 105px;
    height: 38px;
    font-size: 17px;
  }
}

.seo-section {
  padding: 34px 0 52px;
  background: #00111b;
  color: #ffffff;
}

.seo-content {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-content h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}

.seo-content h3 {
  margin: 24px 0 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.seo-content h4 {
  margin: 18px 0 6px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.seo-content p {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.seo-content a {
  color: #1bd87a;
  text-decoration: underline;
}

.seo-content ul {
  margin: 8px 0 18px 24px;
  padding: 0;
}

.seo-content li {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.site-footer {
  padding: 18px 0 28px;
  background: #00111b;
  color: #ffffff;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 24px;
}

.footer-payments img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  background: #ffffff;
  border-radius: 3px;
}

.footer-bottom {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.footer-bottom p {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.35;
}

.footer-bottom a {
  color: #18d36f;
  font-weight: 700;
  text-decoration: underline;
}

.age-badge {
  position: absolute;
  right: 0;
  top: -8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.age-badge span {
  width: 34px;
  height: 34px;
  border: 2px solid #ff2450;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-badge strong {
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}


@media (max-width: 768px) {
  .seo-section {
    padding: 28px 0 42px;
  }

  .seo-content h2 {
    font-size: 24px;
  }

  .seo-content h3 {
    font-size: 18px;
  }

  .seo-content h4 {
    font-size: 15px;
  }

  .seo-content p,
  .seo-content li {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .age-badge {
    position: static;
  }
}

@media (max-width: 480px) {
  .seo-content h2 {
    font-size: 22px;
  }

  .seo-content h3 {
    font-size: 17px;
  }

  .footer-payments {
    flex-wrap: wrap;
  }
}

.main-footer {
  padding: 0 0 34px;
  background: linear-gradient(180deg, #00111b 0%, #061d31 100%);
  color: #ffffff;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(145, 166, 185, 0.35);
}

.footer-menu {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1.2fr 1.2fr;
  gap: 70px;
  padding: 76px 0 76px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

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

.footer-col h3 {
  margin: 0 0 25px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #18d36f;
}

.footer-copyright {
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

.footer-licenses {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 76px;
  margin-bottom: 70px;
}

.footer-licenses img {
  max-height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-legal-text {
  max-width: 1180px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 992px) {
  .footer-menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
    padding: 58px 0;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .footer-licenses {
    gap: 24px;
    margin-top: 56px;
    margin-bottom: 52px;
  }

  .footer-legal-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .footer-menu {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 0;
  }

  .footer-logo {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .footer-col h3 {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .footer-links li {
    margin-bottom: 9px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .footer-copyright {
    margin-top: 34px;
    font-size: 14px;
  }

  .footer-licenses {
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 42px;
    margin-bottom: 42px;
  }

  .footer-licenses img {
    max-height: 38px;
  }

  .footer-legal-text {
    font-size: 12px;
  }
}




.modal-backdrop.show {
  opacity: 0.78;
}

.register-modal-dialog {
  max-width: 720px;
  margin: 30px auto;
}

.register-modal-content {
  position: relative;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: #0d2238;
}


.register-modal-close {
  position: absolute;
  top: 9px;
  right: 14px;
  z-index: 10;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 34px;
  font-weight: 300;
  line-height: 24px;
  cursor: pointer;
  transition: 0.3s ease;
}

.register-modal-close:hover {
  color: #ffffff;
}


.register-modal-top {
  height: 34px;
  background: #071421;
}


.register-modal-head {
  padding: 22px 80px 24px;
  background: #0d2238;
  color: #ffffff;
  text-align: center;
}

.register-modal-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: #ffffff;
  text-decoration: none;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.register-modal-logo img {
  height: 30px;
}


.steps-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.steps-line::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: #ffffff;
}

.step {
  position: relative;
  z-index: 2;
  width: 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.step span {
  width: 32px;
  height: 32px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  background: #071421;
}

.step.active span {
  border-color: #168df2;
  background: #0d2238;
}

.step strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.step.active strong {
  font-weight: 900;
}


.register-form {
  padding: 30px 60px 28px;
  background: #ffffff;
  color: #9b9b9b;
}

.form-field {
  position: relative;
  margin-bottom: 28px;
}

.form-field label {
  display: block;
  margin-bottom: 4px;
  color: #9b9b9b;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.form-field input {
  width: 100%;
  height: 25px;
  padding: 0;
  border: none;
  border-bottom: 1px solid #8f8f8f;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #333333;
  font-size: 13px;
  font-weight: 400;
}

.form-field input::placeholder {
  color: #858585;
  opacity: 1;
}

.password-field input {
  padding-right: 40px;
}


.password-toggle {
  position: absolute;
  right: 5px;
  bottom: 0;
  width: 25px;
  height: 25px;
  padding: 0;
  border: none;
  background: transparent;
  color: #2384df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}


.register-next-btn {
  width: 190px;
  height: 56px;
  margin: 10px auto 0;
  border: none;
  border-radius: 10px;
  background: #22cf73;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.register-next-btn:hover {
  background: #18b961;
}


.register-modal-footer {
  padding: 26px 20px 24px;
  background: #0d2238;
  color: #ffffff;
  text-align: center;
}

.register-modal-footer p {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
}

.register-modal-footer p a {
  color: #6daee9;
  text-decoration: underline;
}

.responsible-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.responsible-row span {
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

.responsible-row img {
  height: 28px;
  width: auto;
  display: block;
}





@media (max-width: 768px) {
  .register-modal-dialog {
    max-width: calc(100% - 24px);
    margin: 16px auto;
  }

  .register-modal-top {
    height: 32px;
  }

  .register-modal-close {
    top: 8px;
    right: 12px;
    font-size: 32px;
  }

  .register-modal-head {
    padding: 20px 18px 22px;
  }

  .register-modal-logo {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .steps-line::before {
    top: 15px;
    left: 26px;
    right: 26px;
  }

  .step {
    gap: 11px;
  }

  .step span {
    width: 30px;
    height: 30px;
  }

  .step strong {
    font-size: 13px;
  }

  .register-form {
    padding: 28px 24px;
  }

  .form-field {
    margin-bottom: 26px;
  }

  .form-field label {
    font-size: 17px;
  }

  .form-field input {
    height: 25px;
    font-size: 13px;
  }

  .register-next-btn {
    width: 100%;
    max-width: 220px;
    height: 52px;
    font-size: 18px;
  }

  .register-modal-footer {
    padding: 24px 18px;
  }

  .register-modal-footer p,
  .responsible-row span {
    font-size: 15px;
  }

  .responsible-row img {
    height: 26px;
  }
}

@media (max-width: 480px) {
  .register-modal-dialog {
    max-width: calc(100% - 16px);
    margin: 12px auto;
  }

  .register-modal-logo {
    font-size: 21px;
  }

  .steps-line::before {
    top: 14px;
    left: 22px;
    right: 22px;
  }

  .step span {
    width: 28px;
    height: 28px;
  }

  .step strong {
    font-size: 11px;
  }

  .register-form {
    padding: 24px 18px;
  }

  .form-field label {
    font-size: 16px;
  }

  .register-next-btn {
    max-width: 200px;
    height: 48px;
    border-radius: 9px;
    font-size: 17px;
  }

  .responsible-row {
    flex-direction: column;
    gap: 8px;
  }

  .register-modal-footer p,
  .responsible-row span {
    font-size: 14px;
  }
}



.login-modal-dialog {
  max-width: 350px;
  margin: 30px auto;
}

.login-modal-content {
  position: relative;
  border: none;
  border-radius: 0;
  background: #071421;
  color: #ffffff;
  padding: 56px 42px 36px;
}

.login-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 5;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 34px;
  font-weight: 300;
  line-height: 24px;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-modal-close:hover {
  color: #ffffff;
}

.login-form {
  width: 100%;
}

.login-field {
  position: relative;
  margin-bottom: 15px;
}

.login-field input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(35, 132, 223, 0.6);
  border-radius: 5px;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  transition: 0.3s ease;
}

.login-field input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.login-field input:focus {
  border-color: #25a8ff;
  box-shadow: 0 0 0 1px rgba(37, 168, 255, 0.35);
}

.login-password-field input {
  padding-right: 48px;
}

.login-password-toggle {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: #2384df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.login-password-toggle svg {
  width: 22px;
  height: 22px;
}

.login-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.login-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.login-checkbox span {
  width: 18px;
  height: 18px;
  border: 2px solid #2384df;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.login-checkbox span::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #2384df;
  opacity: 0;
  transition: 0.2s ease;
}

.login-checkbox input:checked+span::after {
  opacity: 1;
}

.login-submit-btn {
  width: 100%;
  height: 48px;
  margin-top: 31px;
  border: none;
  border-radius: 4px;
  background: #22cf73;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-submit-btn:hover {
  background: #18b961;
}

.login-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 28px 0 30px;
}

.login-links a {
  color: #69b7ee;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.login-links a:hover {
  color: #ffffff;
}

.login-register-box {
  position: relative;
  padding-top: 8px;
  text-align: center;
}

.login-register-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -26px;
  right: -26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
}

.login-register-box span {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
}

.login-join-btn {
  width: 100%;
  height: 48px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  background: transparent;
  color: #ffffff;
  font-size: 21px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-join-btn:hover {
  background: #ffffff;
  color: #071421;
}

@media (max-width: 480px) {
  .login-modal-dialog {
    max-width: calc(100% - 30px);
    margin: 20px auto;
  }

  .login-modal-content {
    padding: 52px 24px 30px;
  }

  .login-field input {
    height: 48px;
    font-size: 16px;
  }

  .login-checkbox {
    font-size: 16px;
  }

  .login-submit-btn,
  .login-join-btn {
    height: 46px;
    font-size: 18px;
  }

  .login-links a,
  .login-register-box span {
    font-size: 15px;
  }

  .login-register-box::before {
    left: 0;
    right: 0;
  }
}



.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 5, 10, 0.88);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-overlay.active {
  display: flex;
}

.age-modal {
  width: 100%;
  max-width: 430px;
  padding: 42px 34px 34px;
  border-radius: 12px;
  background: #071421;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.age-logo {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.5px;
}

.age-logo img {
  height: 30px;
}

.age-modal h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}

.age-modal p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.45;
}

.age-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.age-btn {
  width: 100%;
  height: 48px;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.age-yes {
  border: 1px solid #22cf73;
  background: #22cf73;
  color: #ffffff;
}

.age-yes:hover {
  background: #18b961;
  border-color: #18b961;
}

.age-no {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #ffffff;
}

.age-no:hover {
  background: #ffffff;
  color: #071421;
}

.age-modal small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}





.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99990;
  display: none;
  padding: 16px;
  background: rgba(0, 8, 15, 0.72);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.cookie-banner.active {
  display: block;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  border-radius: 10px;
  background: #071421;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45);
}

.cookie-text h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.cookie-text p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.4;
}

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

.cookie-btn {
  min-width: 115px;
  height: 42px;
  padding: 0 18px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.cookie-btn.green {
  border: 1px solid #22cf73;
  background: #22cf73;
  color: #ffffff;
}

.cookie-btn.green:hover {
  background: #18b961;
  border-color: #18b961;
}

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

.cookie-btn.outline:hover {
  background: #ffffff;
  color: #071421;
}





.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 99995;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 5, 10, 0.78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.cookie-settings-modal.active {
  display: flex;
}

.cookie-settings-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 34px 30px 28px;
  border-radius: 10px;
  background: #071421;
  color: #ffffff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.cookie-settings-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 34px;
  font-weight: 300;
  line-height: 26px;
  cursor: pointer;
}

.cookie-settings-close:hover {
  color: #ffffff;
}

.cookie-settings-box h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 900;
}

.cookie-settings-box>p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px;
  border: 1px solid rgba(35, 132, 223, 0.45);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.cookie-option.disabled {
  cursor: default;
  opacity: 0.8;
}

.cookie-option strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.cookie-option span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.35;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: #22cf73;
  flex: 0 0 auto;
  cursor: pointer;
}

.cookie-option.disabled input {
  cursor: default;
}

.cookie-settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}





@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }

  .age-modal {
    padding: 34px 24px 28px;
  }

  .age-modal h2 {
    font-size: 24px;
  }

  .age-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 10px;
  }

  .cookie-banner-inner {
    padding: 18px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-settings-box {
    padding: 32px 18px 22px;
  }

  .cookie-settings-actions {
    flex-direction: column;
  }

  .cookie-settings-actions .cookie-btn {
    width: 100%;
  }

  .age-logo {
    font-size: 22px;
  }

  .age-modal h2 {
    font-size: 22px;
  }
}



.policy-section {
  padding: 150px 0 70px;
  background: linear-gradient(90deg, #031321 0%, #08233a 50%, #031321 100%);
  color: #ffffff;
}

.policy-section .container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.policy-section>.container-custom>div,
.policy-content {
  padding: 32px 34px;
  border-radius: 10px;
  background: rgba(0, 17, 27, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}


.policy-section h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.policy-section h2 {
  margin: 30px 0 14px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.policy-section h3 {
  margin: 26px 0 12px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.3;
}

.policy-section h4 {
  margin: 22px 0 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}


.policy-section p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.policy-section b,
.policy-section strong {
  color: #ffffff;
  font-weight: 900;
}

.policy-section em {
  color: rgba(255, 255, 255, 0.9);
}


.policy-section a {
  color: #18d36f;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: 0.3s ease;
}

.policy-section a:hover {
  color: #6deca7;
}


.policy-section ul,
.policy-section ol {
  margin: 10px 0 20px 24px;
  padding: 0;
}

.policy-section li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.policy-section li::marker {
  color: #18d36f;
}


.policy-section table {
  width: 100%;
  margin: 24px 0 30px;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.policy-section thead {
  background: rgba(24, 211, 111, 0.15);
}

.policy-section th {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
}

.policy-section td {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}

.policy-section td p {
  margin-bottom: 0;
}

.policy-section td ul {
  margin: 0 0 0 18px;
}

.policy-section td li {
  font-size: 13px;
  margin-bottom: 6px;
}


.policy-section img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}


.policy-section table {
  display: block;
  overflow-x: auto;
  white-space: normal;
}

.policy-section thead,
.policy-section tbody,
.policy-section tr {
  width: 100%;
}


@media (max-width: 992px) {
  .policy-section {
    padding: 120px 0 60px;
  }

  .policy-section>.container-custom>div,
  .policy-content {
    padding: 28px 24px;
  }

  .policy-section h1 {
    font-size: 30px;
  }

  .policy-section h2 {
    font-size: 22px;
  }

  .policy-section h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .policy-section {
    padding: 90px 0 46px;
  }

  .policy-section>.container-custom>div,
  .policy-content {
    padding: 24px 18px;
  }

  .policy-section h1 {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .policy-section h2 {
    margin-top: 26px;
    font-size: 20px;
  }

  .policy-section h3 {
    font-size: 18px;
  }

  .policy-section h4 {
    font-size: 16px;
  }

  .policy-section p,
  .policy-section li,
  .policy-section th,
  .policy-section td {
    font-size: 13px;
  }

  .policy-section th,
  .policy-section td {
    padding: 13px 14px;
  }
}

@media (max-width: 480px) {
  .policy-section {
    padding: 82px 0 38px;
  }

  .policy-section>.container-custom>div,
  .policy-content {
    padding: 20px 14px;
    border-radius: 8px;
  }

  .policy-section h1 {
    font-size: 24px;
  }

  .policy-section h2 {
    font-size: 18px;
  }

  .policy-section h3 {
    font-size: 17px;
  }

  .policy-section p,
  .policy-section li {
    font-size: 12px;
  }

  .policy-section ul,
  .policy-section ol {
    margin-left: 18px;
  }
}



.terms-section {
  padding: 150px 0 70px;
  background: linear-gradient(90deg, #031321 0%, #08233a 50%, #031321 100%);
  color: #ffffff;
}

.terms-section .container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.terms-section>.container-custom>div,
.terms-content {
  padding: 32px 34px;
  border-radius: 10px;
  background: rgba(0, 17, 27, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}


.terms-section h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.terms-section h2 {
  margin: 30px 0 14px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.terms-section h3 {
  margin: 26px 0 12px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.3;
}

.terms-section h4 {
  margin: 22px 0 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}


.terms-section p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.terms-section p:has(strong),
.terms-section p:first-of-type {
  color: #ffffff;
}


.terms-section b,
.terms-section strong {
  color: #ffffff;
  font-weight: 900;
}

.terms-section em {
  color: rgba(255, 255, 255, 0.9);
}


.terms-section a {
  color: #18d36f;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: 0.3s ease;
}

.terms-section a:hover {
  color: #6deca7;
}


.terms-section ul,
.terms-section ol {
  margin: 10px 0 20px 24px;
  padding: 0;
}

.terms-section li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.terms-section li::marker {
  color: #18d36f;
}


.terms-section table {
  width: 100%;
  margin: 24px 0 30px;
  border-collapse: collapse;
  border-spacing: 0;
  display: block;
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.terms-section thead {
  background: rgba(24, 211, 111, 0.15);
}

.terms-section th {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
}

.terms-section td {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}


.terms-section img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}


@media (max-width: 992px) {
  .terms-section {
    padding: 120px 0 60px;
  }

  .terms-section>.container-custom>div,
  .terms-content {
    padding: 28px 24px;
  }

  .terms-section h1 {
    font-size: 30px;
  }

  .terms-section h2 {
    font-size: 22px;
  }

  .terms-section h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .terms-section {
    padding: 90px 0 46px;
  }

  .terms-section>.container-custom>div,
  .terms-content {
    padding: 24px 18px;
  }

  .terms-section h1 {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .terms-section h2 {
    margin-top: 26px;
    font-size: 20px;
  }

  .terms-section h3 {
    font-size: 18px;
  }

  .terms-section h4 {
    font-size: 16px;
  }

  .terms-section p,
  .terms-section li,
  .terms-section th,
  .terms-section td {
    font-size: 13px;
  }

  .terms-section th,
  .terms-section td {
    padding: 13px 14px;
  }
}

@media (max-width: 480px) {
  .terms-section {
    padding: 82px 0 38px;
  }

  .terms-section>.container-custom>div,
  .terms-content {
    padding: 20px 14px;
    border-radius: 8px;
  }

  .terms-section h1 {
    font-size: 24px;
  }

  .terms-section h2 {
    font-size: 18px;
  }

  .terms-section h3 {
    font-size: 17px;
  }

  .terms-section p,
  .terms-section li {
    font-size: 12px;
  }

  .terms-section ul,
  .terms-section ol {
    margin-left: 18px;
  }
}



.cookie-policy-section {
  padding: 150px 0 70px;
  background: linear-gradient(90deg, #031321 0%, #08233a 50%, #031321 100%);
  color: #ffffff;
}

.cookie-policy-section .container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.cookie-policy-section>.container-custom>div,
.cookie-policy-content {
  padding: 32px 34px;
  border-radius: 10px;
  background: rgba(0, 17, 27, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.cookie-policy-title {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.cookie-policy-info {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.cookie-policy-info a {
  color: #18d36f;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: 0.3s ease;
}

.cookie-policy-info a:hover {
  color: #6deca7;
}


.cookie-policy-section b,
.cookie-policy-section strong {
  color: #ffffff;
  font-weight: 900;
}

.cookie-policy-section em {
  color: rgba(255, 255, 255, 0.9);
}

.cookie-policy-section ul,
.cookie-policy-section ol {
  margin: 10px 0 20px 24px;
  padding: 0;
}

.cookie-policy-section li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-policy-section li::marker {
  color: #18d36f;
}


@media (max-width: 992px) {
  .cookie-policy-section {
    padding: 120px 0 60px;
  }

  .cookie-policy-section>.container-custom>div,
  .cookie-policy-content {
    padding: 28px 24px;
  }

  .cookie-policy-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .cookie-policy-section {
    padding: 90px 0 46px;
  }

  .cookie-policy-section>.container-custom>div,
  .cookie-policy-content {
    padding: 24px 18px;
  }

  .cookie-policy-title {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .cookie-policy-info {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .cookie-policy-section {
    padding: 82px 0 38px;
  }

  .cookie-policy-section>.container-custom>div,
  .cookie-policy-content {
    padding: 20px 14px;
    border-radius: 8px;
  }

  .cookie-policy-title {
    font-size: 24px;
  }

  .cookie-policy-info {
    font-size: 12px;
  }
}



.responsible-policy-section {
  padding: 150px 0 70px;
  background: linear-gradient(90deg, #031321 0%, #08233a 50%, #031321 100%);
  color: #ffffff;
}

.responsible-policy-section .container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.responsible-policy-section>.container-custom>div,
.responsible-policy-content {
  padding: 32px 34px;
  border-radius: 10px;
  background: rgba(0, 17, 27, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}


.responsible-policy-section h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.responsible-policy-section h2 {
  margin: 30px 0 14px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.responsible-policy-section h3 {
  margin: 26px 0 12px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.3;
}

.responsible-policy-section h4 {
  margin: 22px 0 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}


.responsible-policy-section p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.responsible-policy-section p:first-child {
  margin-bottom: 10px;
}

.responsible-policy-section b,
.responsible-policy-section strong {
  color: #ffffff;
  font-weight: 900;
}

.responsible-policy-section em {
  color: rgba(255, 255, 255, 0.94);
  font-style: italic;
}


.responsible-policy-section a {
  color: #18d36f;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: 0.3s ease;
  word-break: break-word;
}

.responsible-policy-section a:hover {
  color: #6deca7;
}


.responsible-policy-section ul,
.responsible-policy-section ol {
  margin: 10px 0 20px 24px;
  padding: 0;
}

.responsible-policy-section li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.responsible-policy-section li::marker {
  color: #18d36f;
}


.responsible-policy-section img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}


@media (max-width: 992px) {
  .responsible-policy-section {
    padding: 120px 0 60px;
  }

  .responsible-policy-section>.container-custom>div,
  .responsible-policy-content {
    padding: 28px 24px;
  }

  .responsible-policy-section h1 {
    font-size: 30px;
  }

  .responsible-policy-section h2 {
    font-size: 22px;
  }

  .responsible-policy-section h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .responsible-policy-section {
    padding: 90px 0 46px;
  }

  .responsible-policy-section>.container-custom>div,
  .responsible-policy-content {
    padding: 24px 18px;
  }

  .responsible-policy-section h1 {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .responsible-policy-section h2 {
    margin-top: 26px;
    font-size: 20px;
  }

  .responsible-policy-section h3 {
    font-size: 18px;
  }

  .responsible-policy-section h4 {
    font-size: 16px;
  }

  .responsible-policy-section p,
  .responsible-policy-section li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .responsible-policy-section {
    padding: 82px 0 38px;
  }

  .responsible-policy-section>.container-custom>div,
  .responsible-policy-content {
    padding: 20px 14px;
    border-radius: 8px;
  }

  .responsible-policy-section h1 {
    font-size: 24px;
  }

  .responsible-policy-section h2 {
    font-size: 18px;
  }

  .responsible-policy-section h3 {
    font-size: 17px;
  }

  .responsible-policy-section p,
  .responsible-policy-section li {
    font-size: 12px;
  }

  .responsible-policy-section ul,
  .responsible-policy-section ol {
    margin-left: 18px;
  }
}