@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

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

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

input,
textarea {
  font-family: inherit;
}

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

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  background-color: #131516;
  color: #ffffff;
  font-family: "Red Hat Display", sans-serif;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 600;
  height: 44px;
}

.btn-contained {
  background-color: #f8c51b;
}

.btn-outlined {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.header {
  position: fixed;
  z-index: 200;
  width: 100%;
  background-color: #131516;
}
.header .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}
.header__wrapper {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__text {
  font-size: 12px;
  font-weight: 600;
}

.wrapper {
  display: flex;
}

.sidebar {
  position: fixed;
  z-index: 100;
  max-width: 230px;
  width: 100%;
  height: 100dvh;
  padding: 32px 0;
  background-color: #1f2223;
}
.sidebar__logo {
  display: block;
  text-align: center;
  margin: 24px 0;
}
.sidebar__logo-img {
  margin: 0 auto;
}
.sidebar__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
  margin-bottom: 16px;
}
.sidebar__menu-item {
  padding: 8px 16px;
}
.sidebar__menu-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar__menu-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  text-align: center;
}

.main {
  margin-left: 230px;
  flex: 1 1 auto;
  padding-top: 32px;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero__slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__slider-wrapper {
  display: flex;
  transition: transform 0.8s ease-in-out;
}
.hero__slider-item {
  min-width: 100%;
  height: 420px;
  position: relative;
  display: none;
}
.hero__slider-item.active {
  display: block;
}
.hero__item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  top: 0;
  left: 0;
}
.hero__item-bg--1 {
  background-image: url(../img/hero-bg-1.webp);
}
.hero__item-bg--2 {
  background-image: url(../img/hero-bg-2.webp);
}
.hero__item-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.hero__item-wrapper {
  flex: 1 1 auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 32px 16px;
  width: 100%;
}
.hero__item-container {
  max-width: 866px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.hero__item-info {
  max-width: 560px;
  width: 100%;
}
.hero__item-title {
  color: #f8c51b;
  font-size: 22px;
  margin-bottom: 0.5em;
  line-height: 1;
}
.hero__item-text {
  color: #fff;
  font-size: 16px;
  margin-bottom: 1em;
}
.hero__item-link {
  font-size: 12px;
  color: #f8c51b;
  text-decoration: underline;
}
.hero .btn {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 16px;
}
.hero__slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s ease;
}
.hero__slider-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.hero__slider-nav--prev {
  left: 10px;
}
.hero__slider-nav--next {
  right: 10px;
}
.hero__slider-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero__slider-pagination-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hero__slider-pagination-dot.active {
  background-color: #f8c51b;
}

.about {
  padding-top: 40px;
  color: #1f2424;
}
.about__container {
  max-width: 1110px;
  background-color: #fffbeb;
  margin: 0 auto;
  padding: 20px 0;
}
.about__wrapper {
  max-width: 900px;
  margin: 0 auto;
  margin: 30px auto;
  text-align: center;
}
.about__title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 0.5em;
  line-height: 1;
}
.about__subtitle {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.6em;
  margin-bottom: 0.5em;
}
.about__text {
  margin-bottom: 1em;
}

.logos-slider {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  background-color: #f0f0f0;
  margin-top: 40px;
}
.logos-slider__track {
  display: flex;
  animation: scrollLogos 10s linear infinite;
}
.logos-slider__track:hover {
  animation-play-state: paused;
}
.logos-slider__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  align-items: center;
}
.logos-slider__list-item {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos-slider__item-img {
  max-height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.logos-slider__item-img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.footer {
  background-color: #1f2223;
  padding: 32px 0;
}
.footer__container {
  max-width: 916px;
  text-align: center;
  margin: 0 auto;
}
.footer__logo {
  margin: 0 auto 32px;
}
.footer__menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.footer__description {
  margin-bottom: 32px;
}
.footer__text {
  font-size: 12px;
  margin-bottom: 1em;
}
.footer__link {
  text-decoration: underline;
}

.providers {
  margin-bottom: 32px;
}
.providers__title {
  font-size: 16px;
  margin-bottom: 8px;
}
.providers__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.legal {
  padding: 40px 0;
  color: #ffffff;
}
.legal__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.legal__title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  color: #f8c51b;
}
.legal__last-updated {
  font-size: 14px;
  margin-bottom: 30px;
  text-align: center;
  color: #cccccc;
}
.legal__intro-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.legal__subtitle {
  font-weight: 800;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #f8c51b;
}
.legal__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.legal__list {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}
.legal__list-item {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.legal__list-item strong {
  color: #f8c51b;
}
.legal__link {
  color: #f8c51b;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal__link:hover {
  color: #fad24c;
}
.legal__address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  background-color: #2a2a2a;
  padding: 40px;
  border-radius: 8px;
  position: relative;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.is-open .modal__content {
  transform: translateY(0);
}
.modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaaaaa;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.modal__close:hover, .modal__close:focus {
  color: #f8c51b;
  text-decoration: none;
  cursor: pointer;
}
.modal__title {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
  color: #f8c51b;
}
.modal__form {
  margin-bottom: 20px;
}
.modal .form-group {
  margin-bottom: 20px;
}
.modal .form-group__label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: #ffffff;
}
.modal .form-group__label--checkbox {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-size: 14px;
}
.modal .form-group__input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #555555;
  border-radius: 5px;
  background-color: #333333;
  color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
}
.modal .form-group__input::-moz-placeholder {
  color: #999999;
}
.modal .form-group__input::placeholder {
  color: #999999;
}
.modal .form-group__input:focus {
  outline: none;
  border-color: #f8c51b;
  box-shadow: 0 0 0 2px rgba(248, 197, 27, 0.3);
}
.modal .form-group--checkbox {
  display: flex;
  align-items: flex-start;
  margin-top: 25px;
  margin-bottom: 30px;
}
.modal .form-group--checkbox .form-group__checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #555555;
  border-radius: 4px;
  background-color: #333333;
  cursor: pointer;
  flex-shrink: 0;
}
.modal .form-group--checkbox .form-group__checkbox:checked {
  background-color: #f8c51b;
  border-color: #f8c51b;
  position: relative;
}
.modal .form-group--checkbox .form-group__checkbox:checked::after {
  content: "✓";
  color: #1a1a1a;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
.modal__forgot-password {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 20px;
  font-size: 14px;
}
.modal__submit-btn {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 15px;
}
.modal__switch-text {
  text-align: center;
  margin-top: 25px;
  font-size: 15px;
  color: #cccccc;
}
.modal__link {
  color: #f8c51b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.modal__link:hover {
  color: #fad24c;
  text-decoration: underline;
}
.modal__link--switch {
  font-weight: bold;
}
.modal--age-verification {
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  opacity: 1;
  visibility: visible;
}
.modal__content--age-verification {
  background-color: #2a2a2a;
  padding: 50px 30px;
  text-align: center;
  max-width: 500px;
  border-radius: 12px;
  border: 2px solid #f8c51b;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  transform: translateY(0);
}
.modal__title--age-verification {
  font-size: 60px;
  font-weight: 900;
  color: #f8c51b;
  margin-bottom: 20px;
  line-height: 1;
}
.modal__text--age-verification {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
}
.modal__age-confirm-btn {
  width: auto;
  padding: 0 40px;
  font-size: 20px;
  margin-bottom: 20px;
  display: inline-block;
}
.modal__disclaimer-text {
  font-size: 13px;
  color: #bbbbbb;
}
.modal__disclaimer-text .modal__link {
  font-size: 13px;
  color: #fad24c;
}
.modal__disclaimer-text .modal__link:hover {
  color: #f8c51b;
}