/* Стили для общего контейнера */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #212121;
}

.container {
  width: 100%;
}

/* Header (шапка сайта) */
header {
  background-color: #212121;
  padding: 15px 0;
  text-align: center;
}

.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  color: #6600CC;
  font-family: sans-serif, Days;
  font-size: 25px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: #00FF00;
}

/* Footer (подвал сайта) */
footer {
  background-color: #212121;
  color:#00FF00;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}

footer nav a {
  color: #6600CC;
  text-decoration: none;
  margin: 0 10px;
  font-size: 20px;
}

footer nav a:hover {
  text-decoration: underline;
}

/* Верхняя секция */
.top-section {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px;
  background-color: #2B2B2B;
}

/* Логотип */
.logo img {
  width: 750px;
  display: block;
  margin: 0 auto;
}

/* Блок о компании */
.about-company {
  transform: rotate(15deg);
  transform-origin: right bottom;
  width: 800px;
  margin-left: 40px;
  font-size: 25px;
  font-style: oblique;
  font-family: sans-serif, Days;
  color: #00FF00;
}

/* Блок с контактами */
.contacts {
  transform-origin: top;
  font-weight: bold;
  font-size: 30px;
  font-style: oblique;
  font-family: sans-serif, Days;
  color: #6600CC;
  text-align: right;
  margin-left: 20px;
}

/* Нижняя секция */
.bottom-section {
  padding: 50px;
  background-color: black;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Логотип игры */
.game-logo img {
  width: 500px;
  display: block;
  margin: 0 auto;
}

/* Контейнер для описания игры */
.game-description-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 50px;
  box-sizing: border-box;
}

/* Левая и правая части описания */
.game-description {
  width: 45%;
  font-size: 18px;
  color: #00FF00;
  font-style: oblique;
  font-family: sans-serif, Days;
  text-align: justify;
}

/* Для более узких экранов */
@media (max-width: 768px) {
  .game-description-container {
    flex-direction: column;
    text-align: center;
  }

  .game-description {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* Контейнер для загрузки и ключевых особенностей */
.download-features-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 50px;
  box-sizing: border-box;
}

/* Секция загрузки */
.download-section {
  text-align: left;
  max-width: 45%;
}

.download-title {
  font-weight: bold;
  font-size: 25px;
  font-style: oblique;
  font-family: sans-serif, Days;
  color: #6600CC;
  margin-bottom: 15px;
}

.store-links {
  display: flex;
  gap: 60px;
}

.store-links img {
  width: 300px; /* Размер логотипов */
  transition: transform 0.3s ease-in-out;
}

.store-links img:hover {
  transform: scale(1.1);
}

/* Блок ключевых особенностей */
.game-features {
  text-align: right;
  max-width: 45%;
}

.features-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.game-features ul {
  list-style-type: none;
  padding: 0;
}

.game-features li {
  margin-bottom: 5px;
  font-size: 18px;
  color: #00FF00;
  font-style: oblique;
  font-family: sans-serif, Days;
  text-align: justify;
}

/* Адаптивность */
@media (max-width: 768px) {
  .download-features-container {
    flex-direction: column;
    text-align: center;
  }

  .download-section, .game-features {
    max-width: 100%;
    text-align: center;
  }

  .store-links {
    justify-content: center;
  }
}


/* Блок техподдержки */
.support-section {
  transform-origin: right;
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background-color: #2B2B2B;
  border-radius: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Заголовки (жирный текст) */
.support-title {
  font-size: 30px;
  font-weight: bold;
  font-family: sans-serif, Days;
  margin-bottom: 15px;
  color: #6600CC;
}

/* Логотип Facebook */
.facebook-link img {
  width: 80px;  /* Размер логотипа */
  transition: transform 0.3s ease-in-out;
}

.facebook-link img:hover {
  transform: scale(1.1);
}

/* Описание под логотипом */
.facebook-text {
  font-size: 25px;
  color: #6600CC;
  font-family: sans-serif, Days;
  margin-top: 5px;
}

.facebook-text a {
  text-decoration: none;
  font-family: sans-serif, Days;
  color: #1a73e8;
}

.facebook-text a:hover {
  text-decoration: underline;
}

/* Email-ссылка */
.support-title a {
  color: #1a73e8;
  text-decoration: none;
}

.support-title a:hover {
  text-decoration: underline;
}


/* Скриншоты игры */
.game-screenshots {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.screenshot-images {
  display: flex;
  animation: slide 40s infinite;
}

.screenshot-images img {
  width: 33.33%;
  max-width: 100%;
  object-fit: fill;
  margin-right: 15px;
}

/* Контейнер Privacy Policy */
.privacy-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

/* Заголовок Privacy Policy */
.privacy-title {
  font-size: 30px;
  font-weight: bold;
  color: #6600CC;
  font-family: sans-serif, Days;
  margin-bottom: 20px;
}

/* Текст Privacy Policy */
.privacy-text {
  font-size: 18px;
  color: #00FF00;
  font-family: sans-serif, Days;
  text-align: justify;
  white-space: pre-line; /* Сохраняет переносы строк */
  line-height: 1.6;
}

/* Контейнер страницы удаления аккаунта */
.delete-account-container {
  width: 100%;
  padding: 20px;
  text-align: center;
  background-color: black;
}

/* Заголовок */
.delete-account-title {
  color: #6600CC;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Блоки текста */
.text-block {
  font-size: 18px;
  text-align: justify;
  color: #00FF00;
  font-family: sans-serif, Days;
  white-space: pre-line; /* Сохраняет переносы строк */
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Выделенный блок */
.text-block.highlight {
  color: red;
  font-family: sans-serif, Days;
  font-weight: bold;
  white-space: pre-line; /* Сохраняет переносы строк */
  text-align: center;
}

/* Слайдер */
.slider-container {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.slider {
  display: flex;
  animation: deletion_slide 30s infinite;
}

.slider img {
  width: 33.33%;
  max-width: 75%;
  object-fit: fill;
  margin-right: 15px;
}


/* Стили для анимации курсора */
.cursor-trail {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 165, 0, 0.8); /* Оранжевый цвет */
  border-radius: 50%;
  pointer-events: none;
  animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Анимация слайдера */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  66.66% {
    transform: translateX(-108%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes deletion_slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-20%); }
  66% { transform: translateX(-33.33%); }
  100% { transform: translateX(0); }
}
