@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, .logo {
  font-family: "Kaushan Script", cursive;
}

body {
  font-family: "Roboto Slab", serif;
  color: #ffffff;
  line-height: 1.6;
  background-color: #1a1a1a;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #d9d9d9;
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #ffffff;
  color: #6b1f31;
}

.btn-primary:hover {
  background-color: #e6e6e6;
  color: #6b1f31;
}

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

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #8c2c3d;
}

.header {
  background-color: #3e1219;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  font-weight: 700;
}

.header .logo img {
  max-height: 40px;
}

.header .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .nav-item {
  margin-left: 30px;
}

.header .nav-item:first-child {
  margin-left: 0;
}

.header .nav-link {
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
}

.header .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.header .nav-link:hover:after {
  width: 100%;
}

.hero {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(62, 18, 25, 0.8)), to(rgba(62, 18, 25, 0.9))), url("./assets/1.png");
  background: linear-gradient(rgba(62, 18, 25, 0.8), rgba(62, 18, 25, 0.9)), url("./assets/1.png");
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 120px 0 60px;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .google-play-btn {
  display: inline-block;
}

.hero .google-play-btn img {
  max-width: 200px;
}

.game-description {
  background-color: #19141B;
  padding: 80px 0;
}

.game-description .game-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}

.game-description .game-content .upper, .game-description .game-content .lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}

.game-description .game-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.game-description .game-content h3 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}

.game-description .game-content ul {
  margin-left: 20px;
}

.game-description .game-content ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.game-description .game-content ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8c2c3d;
}

.advantages {
  background-color: #6b1f31;
  padding: 80px 0;
}

.advantages-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantages .advantage-card {
  background-color: rgba(62, 18, 25, 0.7);
  padding: 30px;
  border: 3px solid #fff;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.advantages .advantage-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.advantages .advantage-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.advantages .advantage-card p {
  font-size: 0.95rem;
}

.cta {
  background: url("./assets/4.png");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.cta .google-play-btn {
  display: inline-block;
}

.cta .google-play-btn img {
  max-width: 200px;
}

.gallery {
  background-color: #3e1219;
  padding: 80px 0;
}

.gallery-description {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.gallery-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contact {
  background-color: #6b1f31;
  background-image: url(./assets/6.png);
  background-position: center;
  background-size: cover;
  padding: 80px 0;
}

.contact p {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #ffffff;
  font-family: "Roboto Slab", serif;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffffff;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
  width: 100%;
  font-size: 1.1rem;
  padding: 12px;
}

.footer {
  background-color: #3e1219;
  padding: 30px 0;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-links a {
  margin-left: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #6b1f31;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup .cookie-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cookie-popup .cookie-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: "Kaushan Script", cursive;
}

.cookie-popup .cookie-content p {
  margin-bottom: 20px;
}

.cookie-popup .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.cookie-popup .cookie-buttons .btn {
  min-width: 150px;
}

.success-message {
  display: none;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
  text-align: center;
}

.success-message.show {
  display: block;
}

@media (max-width: 992px) {
  .advantages-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .game-description .game-content .upper,
  .game-description .game-content .lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header nav {
    display: none;
  }
  .header .nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .nav-item {
    margin: 0 10px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer-content .copyright {
    margin-bottom: 15px;
  }
  .footer-content .footer-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-content .footer-links a {
    margin: 0 10px;
  }
}

@media (max-width: 576px) {
  .advantages-grid,
  .gallery-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-buttons .btn {
    width: 100%;
  }
}

.privacy {
  padding-top: 150px;
  padding-bottom: 100px;
}

.privacy h1 {
  font-size: 32px;
  margin-bottom: 32px;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */