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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #e67e22;
}

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #6aaa64;
  margin: 10px auto 0;
}

p {
  margin-bottom: 15px;
}

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

.btn-primary {
  background-color: #6aaa64;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #538d4e;
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  color: #333;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #333;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: #333;
  color: #fff;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.9);
  color: #fff;
  padding: 15px;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-consent .cookie-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .cookie-consent .cookie-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.cookie-consent .cookie-content p {
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}

.cookie-consent .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.cookie-consent .cookie-content .cookie-buttons .btn-secondary {
  border-color: #fff;
  color: #fff;
}

.cookie-consent .cookie-content .cookie-buttons .btn-secondary:hover {
  background-color: #fff;
  color: #333;
}

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

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

.header .header-content .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  .header .header-content .main-nav ul {
    gap: 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header .header-content .main-nav ul {
    gap: 8px;
    font-size: 0.8rem;
  }
}

.hero {
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  height: 500px;
  color: #fff;
  position: relative;
  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;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero .hero-content .hero-text {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
}

.hero .hero-content .hero-text h1 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-text h1 {
    font-size: 2rem;
  }
}

.hero .hero-content .hero-text .google-play-btn {
  display: inline-block;
  border-radius: 4px;
  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;
  max-width: 180px;
  margin: 0 auto;
}

.hero .hero-content .hero-text .google-play-btn span:first-child {
  font-size: 0.7rem;
}

.hero .hero-content .hero-text .google-play-btn span:last-child {
  font-size: 1.2rem;
  font-weight: 600;
}

.hero .hero-content .hero-text .google-play-btn:hover {
  background-color: #333;
}

.about-section {
  padding: 60px 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }
}

.about-section .about-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .about-section .about-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.about-section .about-content .about-text h3 {
  font-size: 1.5rem;
  color: #6aaa64;
}

.about-section .about-content .about-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.how-to-play-section {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .how-to-play-section {
    padding: 40px 0;
  }
}

.how-to-play-section .play-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.how-to-play-section .play-grid .play-card {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.how-to-play-section .play-grid .play-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.how-to-play-section .play-grid .play-card .play-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.how-to-play-section .play-grid .play-card .play-icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.how-to-play-section .play-grid .play-card h3 {
  color: #6aaa64;
}

.gallery-section {
  padding: 60px 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 0;
  }
}

.gallery-section .gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-section .gallery-grid .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-section .gallery-grid .gallery-item:hover .gallery-caption {
  opacity: 1;
}

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

.gallery-section .gallery-grid .gallery-item img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery-section .gallery-grid .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}

.testimonials-section {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 0;
  }
}

.testimonials-section .testimonials-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonials-section .testimonials-grid .testimonial-card {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 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;
}

.testimonials-section .testimonials-grid .testimonial-card .testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.testimonials-section .testimonials-grid .testimonial-card .testimonial-stars {
  color: #e67e22;
  margin-bottom: 10px;
}

.testimonials-section .testimonials-grid .testimonial-card .testimonial-author {
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonials-section .testimonials-grid .testimonial-card .testimonial-text {
  font-style: italic;
}

.disclaimer-section {
  padding: 60px 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 40px 0;
  }
}

.disclaimer-section .disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-section .disclaimer-content h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.disclaimer-section .disclaimer-content h2 .age-tag {
  background-color: #e67e22;
  color: #fff;
  font-size: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
}

.footer .footer-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .footer .footer-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.footer .footer-content h3 {
  margin-bottom: 20px;
  color: #6aaa64;
}

.footer .footer-content ul li {
  margin-bottom: 10px;
}

.footer .footer-content .quick-links a:hover {
  color: #6aaa64;
}

.footer .copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.6rem;
  }
  .play-grid,
  .gallery-grid,
  .testimonials-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.4rem;
  }
  .hero .hero-content .hero-text h1 {
    font-size: 1.6rem;
  }
}

.policy {
  padding-top: 50px;
  padding-bottom: 50px;
}

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