* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

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

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

.cookie-popup {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cookie-popup .cookie-popup-content {
  background-color: #39b4ff;
  color: white;
  max-width: 600px;
  padding: 30px;
  border-radius: 5px;
  text-align: center;
}

.cookie-popup .cookie-popup-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

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

.cookie-popup .cookie-popup-content p a {
  color: white;
  text-decoration: underline;
}

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

.cookie-popup .cookie-popup-content .cookie-buttons .cookie-btn {
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.cookie-popup .cookie-popup-content .cookie-buttons .cookie-btn:first-child {
  background-color: #2a4559;
  color: white;
}

.cookie-popup .cookie-popup-content .cookie-buttons .cookie-btn:first-child:hover {
  background-color: #1a2a36;
}

.cookie-popup .cookie-popup-content .cookie-buttons .cookie-btn:last-child {
  background-color: #444;
  color: white;
}

.cookie-popup .cookie-popup-content .cookie-buttons .cookie-btn:last-child:hover {
  background-color: #2b2b2b;
}

.header {
  background-color: #1e3246;
  padding: 15px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .nav {
  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 .nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
}

.header .nav .logo img {
  height: 40px;
  margin-right: 10px;
}

.header .nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.header .nav .menu li a {
  color: white;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header .nav .menu li a:hover {
  color: #39b4ff;
}

.hero {
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  position: relative;
}

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

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

.hero .hero-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero .hero-content .google-play-btn {
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hero .hero-content .google-play-btn:hover, .hero .hero-content .google-play-btn:focus {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.hero .hero-content .google-play-btn img {
  height: 60px;
}

.game-description {
  padding: 80px 0;
  background-color: #1e5277;
  color: #fff;
}

.game-description .game-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.game-description .game-info .game-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.game-description .game-info .game-text h2 {
  font-size: 28px;
}

.game-description .game-info .game-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features {
  padding: 80px 0;
  background-color: #1e5277;
}

.features .features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.features .features-grid .feature-box {
  background-color: #39b4ff;
  padding: 30px;
  border-radius: 10px;
  color: white;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.features .features-grid .feature-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.features .features-grid .feature-box img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.features .features-grid .feature-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.features .features-grid .feature-box p {
  font-size: 14px;
}

.screenshots {
  padding: 80px 0;
  background-image: url(./assets/3.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
}

.screenshots h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.screenshots p {
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.screenshots .screenshots-grid .screenshot {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.screenshots .screenshots-grid .screenshot img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.screenshots .screenshots-grid .screenshot .screenshot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
}

.screenshots .screenshots-grid .screenshot .screenshot-overlay p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.screenshots .screenshots-grid .screenshot:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.faq {
  padding: 80px 0;
  background-color: #1e5277;
}

.faq h2 {
  text-align: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 40px;
}

.faq .faq-item {
  background-color: #39b4ff;
  color: white;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-item h3 {
  padding: 15px 20px;
  margin: 0;
  font-size: 18px;
}

.faq .faq-item p {
  padding: 0 20px 15px;
  margin: 0;
}

.contact {
  padding: 80px 0;
  background-color: #1e5277;
}

.contact .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.contact .contact-content .contact-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact .contact-content .contact-image img {
  border-radius: 10px;
}

.contact .contact-content .contact-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact .contact-content .contact-form h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
}

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

.contact .contact-content .contact-form .form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
}

.contact .contact-content .contact-form .form-group input:focus {
  outline: none;
  border-color: #39b4ff;
}

.contact .contact-content .contact-form .submit-btn {
  background-color: #39b4ff;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.contact .contact-content .contact-form .submit-btn:hover {
  background-color: #06a1ff;
}

.footer {
  padding: 30px 0;
  background-color: #1e3246;
  color: white;
  text-align: center;
}

.footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer .footer-links a {
  color: white;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer .footer-links a:hover {
  color: #39b4ff;
}

.footer .copyright {
  font-size: 14px;
  color: #aaa;
}

@media (max-width: 992px) {
  .features .features-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .screenshots .screenshots-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .header .nav .menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero {
    padding: 60px 0;
  }
  .hero .hero-content h1 {
    font-size: 28px;
  }
  .hero .hero-content p {
    font-size: 16px;
  }
  .game-description .game-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 576px) {
  .features .features-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .screenshots .screenshots-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.privacy {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #1e3246;
  color: #fff;
}

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