@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

/* Основные стили для хедера */
.header {
  display: flex;
  justify-content: space-around; /* Разместим элементы по краям */
  align-items: center;
  padding: 20px 50px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #eee;
}
@media (max-width: 514px) {
  .header {
    padding: 20px 5px;
  }
}

/* Логотип */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.test {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/img/banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 514px) {
  .test {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/img/banner-mini.jpg");
  }
}

.header-logo__text {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-right: 10px;
  color: #fff;
}
@media (max-width: 514px) {
  .header-logo__text {
    font-size: 1em;
  }
}

.age-icon {
  max-width: 25px;
}

/* Навигация для десктопов */
.header__nav {
  display: flex;
  gap: 30px;
}

.header__nav__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  position: relative;
  font-weight: 700;
  transition: color 0.3s ease;
}

.header__nav__link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #e6c200;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.header__nav__link:hover {
  color: #e6c200;
}

.header__nav__link:hover::after {
  width: 100%;
}

/* Бургер-меню */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 11;
}

.burger-bar {
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Анимация для открытия бургер-меню */
.burger-menu.active .burger-bar:nth-child(1) {
  transform: rotate(50deg) translate(4px, 8px);
}

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

.burger-menu.active .burger-bar:nth-child(3) {
  transform: rotate(-50deg) translate(5px, -9px);
}

/* Мобильное меню */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 20px;
  background: #000;
  border-radius: 5px;
  padding: 20px;
  position: absolute;
  top: 100%;
  right: 0px;
  width: 80%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  text-align: left;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.mobile-nav__link:hover {
  color: #3498db;
}

/* Анимация открытия меню */
.mobile-nav.active {
  display: flex;
}

/* Адаптивность */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav.active {
    display: flex;
  }
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  padding: 0 5%;
  position: relative;
}

.hero__content {
  color: #fff;
  max-width: 50%;
  text-align: left;
  z-index: 2;
}

.hero__title {
  font-family: "Federo", sans-serif;
  font-size: 6rem;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__title .highlight {
  color: #FFD700;
}

.hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.hero__cta:hover {
  background-color: #fff;
  color: #111;
}

.hero__cta .arrow-icon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero__image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 50%;
  height: 100%;
  z-index: 1;
}

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

/* Адаптивность */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 5% 5%;
  }
  .hero__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    z-index: 2;
  }
  .hero__title {
    font-size: 4rem;
    text-align: center;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .hero__cta {
    font-size: 1rem;
    padding: 8px 16px;
  }
  .hero__image {
    position: relative;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
  .hero__subtitle {
    font-size: 0.9rem;
  }
  .hero__cta {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 0.8rem;
  }
  .hero__cta {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}
.advantages {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

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

.advantages__header {
  margin-bottom: 30px;
}

.advantages__subtitle {
  display: block;
  font-size: 0.9rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.advantages__title {
  font-family: "Federo", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.advantages__item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantages__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.advantages__icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.advantages__heading {
  font-family: "Federo", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.advantages__description {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }
  .advantages__title {
    font-size: 2rem;
  }
  .advantages__heading {
    font-size: 1.2rem;
  }
  .advantages__description {
    font-size: 0.9rem;
  }
}
.games {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.games__title {
  font-family: "Federo", sans-serif;
  font-size: 3rem;
  margin-bottom: 40px;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.games__item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}

.games__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.games__image {
  width: 100%;
  height: auto;
  display: block;
}

.games__info {
  padding: 15px;
}

.games__name {
  font-family: "Federo", sans-serif;
  font-size: 1.5rem;
  margin: 0;
  color: #111;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .games__title {
    font-size: 2.5rem;
  }
  .games__info {
    padding: 10px;
  }
  .games__name {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .games__title {
    font-size: 2rem;
  }
  .games__grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .games__info {
    padding: 8px;
  }
  .games__name {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .games__title {
    font-size: 1.8rem;
  }
  .games__grid {
    gap: 10px;
  }
  .games__name {
    font-size: 1rem;
  }
}
.about-us {
  padding: 60px 20px;
  background-color: #f7f2ee;
}

.about-us__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.about-us__image {
  position: relative;
  width: 45%;
}

.about-us__image img {
  width: 100%;
  height: auto;
  border-radius: 50% 0 0 50%/50%;
}

.about-us__content {
  width: 50%;
  text-align: left;
}

.about-us__subtitle {
  display: block;
  font-size: 1rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-us__title {
  font-family: "Federo", sans-serif;
  font-size: 3rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-us__description {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 25px;
}

.about-us__list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-us__list li {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.about-us__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  color: #FFD700;
}

.about-us__cta {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #111;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.about-us__cta:hover {
  background-color: #e6c200;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .about-us__container {
    flex-direction: column;
    text-align: center;
  }
  .about-us__image,
  .about-us__content {
    width: 100%;
  }
  .about-us__image {
    margin-bottom: 30px;
  }
  .about-us__title {
    font-size: 2.5rem;
  }
  .about-us__description,
  .about-us__list li {
    font-size: 1.1rem;
  }
  .about-us__cta {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .about-us__title {
    font-size: 2rem;
  }
  .about-us__description,
  .about-us__list li {
    font-size: 1rem;
  }
  .about-us__cta {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
@media (max-width: 480px) {
  .about-us__title {
    font-size: 1.8rem;
  }
  .about-us__description,
  .about-us__list li {
    font-size: 0.9rem;
  }
  .about-us__cta {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}
/* Footer Styling */
.footer {
  border-top: 1px solid #1f2e45; /* Цвет границы */
  padding: 50px 20px;
  color: #ecf0f1; /* Основной текстовый цвет */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.footer-logo-img {
  width: 50px;
  background-color: #000;
  border-radius: 50%;
}

.footer-logo__text {
  font-size: 1.6rem;
  color: #000; /* Основной цвет текста логотипа */
  font-weight: bold;
}

.footer-info {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  flex: 1;
  min-width: 250px;
}

.footer-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #000; /* Основной цвет текста описания */
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.footer-link {
  color: #000; /* Цвет ссылки в футере */
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #000; /* Цвет ссылки при наведении */
}

.footer-disclaimer {
  flex: 1;
  min-width: 250px;
}

.footer-disclaimer-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000; /* Цвет заголовка отказа от ответственности */
}

.footer-disclaimer-text {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #000; /* Цвет текста отказа от ответственности */
}

.footer-disclaimer-logos {
  align-items: center;
  display: flex;
  gap: 15px;
}
@media (max-width: 514px) {
  .footer-disclaimer-logos {
    align-items: center;
    justify-content: center;
  }
}

.footer-disclaimer-link {
  display: inline-block;
}

.footer-disclaimer-img {
  border-radius: 10px;
  width: 60px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-disclaimer-link:hover .footer-disclaimer-img {
  opacity: 1;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #34495e; /* Цвет границы в нижней части */
}

.footer-copyright {
  font-size: 1rem;
  color: #000; /* Основной цвет текста копирайта */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .footer-bottom {
    margin-top: 20px;
  }
}
.hero-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  background-color: black;
  color: #fff;
}
@media (max-width: 740px) {
  .hero-pages {
    align-items: center;
    justify-content: center;
  }
}
.hero-pages__title {
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
}

.about-hero {
  padding: 60px 20px 60px 20px;
  text-align: center;
}

.about-hero__title {
  font-size: 3rem;
  color: #fff;
}

.about-hero__subtitle {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 20px;
}

.privacy__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 80px;
  color: black;
  gap: 20px;
}
.privacy__container__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 90%;
}
.privacy__container__text {
  font-size: 16px;
  width: 80%;
}
.privacy__container__title {
  width: 80%;
  font-size: 24px;
}

/* Основные стили для формы */
.contact {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 740px) {
  .contact {
    padding-top: 5px;
  }
}

.contact-container {
  background-color: #0E0F0F; /* Темный фон */
  border: 1px solid #333; /* Темно-коричневая граница */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 40px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-container__block {
  margin-bottom: 20px;
  text-align: left;
}

.label {
  font-size: 1.2rem;
  color: #fff; /* Светло-желтый текст */
  margin-bottom: 8px;
  display: block;
}

.contact-container__input,
.contact-container__textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 15px 0px 15px 15px;
  border-radius: 10px;
  border: 1px solid #444; /* Темная граница для полей */
  background-color: #1a1a1a; /* Темный фон для полей */
  color: #fff; /* Светлый текст */
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-container__input:focus,
.contact-container__textarea:focus {
  outline: none;
  border-color: #000; /* Золотистый цвет рамки при фокусе */
}

.contact-container__textarea {
  height: 120px;
  resize: none;
}

.main-button {
  background-color: #D4AF37; /* Золотистый цвет кнопки */
  color: #0E0F0F; /* Темный текст на кнопке */
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}

.main-button:hover {
  background-color: #D4AF37; /* Более темный золотистый оттенок при наведении */
  transform: translateY(-3px);
}

.main-button.disabled {
  background-color: #3a3a3a; /* Цвет для отключенной кнопки */
  color: #7f8c8d; /* Светло-серый текст для отключенной кнопки */
  cursor: not-allowed;
}

.message {
  display: none;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.5s ease;
  padding: 20px;
}

.message__img {
  max-width: 80px;
  margin-bottom: 20px;
}

.message__title {
  font-size: 1.8rem;
  color: #fff; /* Золотистый цвет для заголовка */
  margin-bottom: 10px;
}

.message__text {
  font-size: 1.2rem;
  color: #fff; /* Светло-желтый текст для сообщения */
}

.message.active {
  display: flex;
}

/* Мобильные стили */
@media (max-width: 768px) {
  .contact-container {
    padding: 30px;
  }
  .contact-container__input,
  .contact-container__textarea {
    padding: 10px;
    font-size: 1rem;
  }
  .main-button {
    font-size: 1rem;
  }
}
.faq {
  padding: 60px 20px;
  background-color: #fff;
}

.faq__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.faq__image {
  width: 45%;
}

.faq__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.faq__content {
  width: 50%;
}

.faq__subtitle {
  display: block;
  font-size: 1rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.faq__title {
  font-family: "Federo", sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.faq__description {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.faq__question {
  background: none;
  border: none;
  width: 100%;
  padding: 15px 20px;
  font-size: 1.2rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
}

.faq__question:hover {
  background-color: #f1f1f1;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s;
}

.faq__answer {
  display: none;
  font-size: 1rem;
  color: #666;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
}

.faq__item.active .faq__answer {
  display: block;
}

.faq__item.active .arrow-icon {
  transform: rotate(90deg);
}

/* Адаптивность */
@media (max-width: 1024px) {
  .faq__title {
    font-size: 2.5rem;
  }
  .faq__description {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .faq__container {
    flex-direction: column;
    text-align: center;
  }
  .faq__image,
  .faq__content {
    width: 100%;
  }
  .faq__image img {
    margin-bottom: 20px;
  }
  .faq__title {
    font-size: 2rem;
  }
  .faq__description {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .faq__title {
    font-size: 1.8rem;
  }
  .faq__description {
    font-size: 0.8rem;
  }
  .faq__question {
    font-size: 1rem;
  }
  .faq__answer {
    font-size: 0.9rem;
  }
}
@font-face {
  font-family: "DM Sans";
  src: url("/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Federo";
  src: url("/Federo-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "DM Sans";
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 10%;
}

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
  color: #333333;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.games-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.deepshadow {
  text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 22px 30px rgba(0, 0, 0, 0.9);
}

/*# sourceMappingURL=main.css.map */
