@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

/* HEADER */
header {
  background: white;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}
header .logo img {
  height: 60px;
}
header .privacy-link {
  font-size: 16px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
header .privacy-link:hover {
  text-decoration: underline;
}

/* HERO */
#hero {
  position: relative;
  background: url("/assets/img/hero.webp") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Затемнение фона */
}
#hero .container {
  position: relative;
  max-width: 900px;
  z-index: 1;
}
#hero .hero-text {
  color: white;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}
#hero .hero-text h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (max-width: 900px) {
  #hero .hero-text h1 {
    font-size: 32px;
  }
}
#hero .hero-text p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ddd;
}
#hero .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 600px) {
  #hero .hero-buttons {
    flex-direction: column;
  }
}
#hero .hero-buttons .btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
#hero .hero-buttons .play-btn {
  background: #ff5733;
  color: white;
  box-shadow: 0px 4px 10px rgba(255, 87, 51, 0.5);
}
#hero .hero-buttons .play-btn:hover {
  background: #e64a19;
  box-shadow: 0px 8px 15px rgba(255, 87, 51, 0.8);
  transform: translateY(-2px);
}
#hero .hero-buttons .info-btn {
  background: white;
  color: black;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
}
#hero .hero-buttons .info-btn:hover {
  background: #ddd;
  box-shadow: 0px 8px 15px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Анимация появления */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ОБЩИЕ СТИЛИ */
.tag {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* ABOUT GAME */
#about-game {
  background: #f8f9fa;
  padding: 80px 0;
}
#about-game .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 900px) {
  #about-game .container {
    flex-direction: column;
    text-align: center;
  }
}
#about-game .about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  /* Выравниваем картинку вправо */
}
#about-game .about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}
#about-game .about-text {
  flex: 1;
  text-align: left;
}
#about-game .about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}
#about-game .about-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* FEATURES */
#features {
  background: white;
  padding: 80px 0;
}
#features .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
#features h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
#features ul {
  list-style: none;
  padding: 0;
}
#features ul li {
  font-size: 18px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
}

/* GAME WORLD */
#game-world {
  background: #ffffff;
  padding: 80px 0;
}
#game-world .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-direction: row;
  /* Картинка слева, текст справа */
}
@media (max-width: 900px) {
  #game-world .container {
    flex-direction: column;
    text-align: center;
  }
}
#game-world .world-image {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  /* Выравниваем картинку влево */
}
#game-world .world-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}
#game-world .world-text {
  flex: 1;
  text-align: left;
}
#game-world .world-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}
#game-world .world-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* GALLERY */
#gallery {
  background: white;
  padding: 80px 0;
}
#gallery .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
#gallery h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
#gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
#gallery .gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
#gallery .gallery-grid img:hover {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  #gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* REVIEWS */
#reviews {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}
#reviews .container {
  max-width: 900px;
  margin: 0 auto;
}
#reviews h2 {
  font-size: 28px;
  margin-bottom: 30px;
}
#reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  #reviews .reviews-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
#reviews .review {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}
#reviews .review img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
#reviews .review .review-text h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
#reviews .review .review-text p {
  font-size: 16px;
  color: #555;
}

/* FOOTER */
footer {
  background: #222;
  padding: 20px 0;
  text-align: center;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
  }
}
footer .footer-logo img {
  height: 50px;
}
footer .footer-link {
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
footer .footer-link:hover {
  text-decoration: underline;
}

/* Анимация появления отзывов */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1c1c28;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  z-index: 1000;
  display: none;
}
.cookie-consent__text {
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-align: center;
}
.cookie-consent__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.cookie-consent__actions .cookie-consent__btn {
  flex: 1;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #29b6f6;
  border-radius: 5px;
  background-color: transparent;
  color: #29b6f6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-consent__actions .cookie-consent__btn:hover {
  background-color: #29b6f6;
  color: #ffffff;
}
.cookie-consent__actions .accept {
  border-color: #00e676;
  color: #00e676;
}
.cookie-consent__actions .accept:hover {
  background-color: #00e676;
}
.cookie-consent__actions .decline {
  border-color: #f44336;
  color: #f44336;
}
.cookie-consent__actions .decline:hover {
  background-color: #f44336;
}

#privacy {
  background: #f8f9fa;
  padding: 80px 0;
}
#privacy .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#privacy h1 {
  font-size: 36px;
  text-align: center;
  color: #004AAD;
  margin-bottom: 20px;
}
#privacy .intro {
  font-size: 18px;
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}
#privacy .privacy-section {
  margin-bottom: 40px;
  padding: 20px;
  background: #eef1f7;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
#privacy .privacy-section h2 {
  font-size: 24px;
  color: #004AAD;
  margin-bottom: 10px;
}
#privacy .privacy-section p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
#privacy .privacy-section ul {
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
}
#privacy .privacy-section ul li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}
#privacy .privacy-section a {
  color: #004AAD;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
#privacy .privacy-section a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */