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 {
  background: linear-gradient(135deg, #f8cdda, #1d2b64);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
}
@media (max-width: 900px) {
  #hero .container {
    flex-direction: column;
    text-align: center;
  }
}
#hero .hero-text {
  flex: 1;
  color: black;
  max-width: 500px;
}
#hero .hero-text h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}
#hero .hero-text h1 span {
  color: #ff5733;
}
@media (max-width: 900px) {
  #hero .hero-text h1 {
    font-size: 32px;
  }
}
#hero .hero-text p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}
#hero .hero-text .download-btn img {
  width: 150px;
  transition: 0.3s;
}
#hero .hero-text .download-btn img:hover {
  transform: scale(1.05);
}
#hero .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
#hero .hero-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ABOUT GAME */
#about-game {
  background: #ffffff;
  padding: 80px 0;
}
#about-game .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  #about-game .container {
    flex-direction: column;
    text-align: center;
  }
}
#about-game .about-text {
  flex: 1;
}
#about-game .about-text .tag {
  background: #c7a4ff;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
#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;
  margin-bottom: 20px;
}
#about-game .about-text .features {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
#about-game .about-text .features .feature {
  background: #f4f4f4;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#about-game .about-text .btn-download {
  display: inline-block;
  background: #222;
  color: white;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
#about-game .about-text .btn-download:hover {
  background: #444;
  transform: translateY(-2px);
}
#about-game .about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
#about-game .about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* HOW TO PLAY */
#how-to-play {
  background: #1d1d2c;
  padding: 80px 0;
  text-align: center;
  color: white;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 1100px;
}
#how-to-play .container {
  max-width: 900px;
  margin: 0 auto;
}
#how-to-play .tag {
  background: #6a5acd;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
#how-to-play h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
#how-to-play .steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 900px) {
  #how-to-play .steps {
    flex-direction: column;
  }
}
#how-to-play .step {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
#how-to-play .step:hover {
  background: rgba(255, 255, 255, 0.2);
}
#how-to-play .step .step-number {
  display: inline-block;
  background: white;
  color: #1d1d2c;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 50%;
  margin-bottom: 10px;
}
#how-to-play .step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
#how-to-play .step p {
  font-size: 16px;
  color: #ddd;
}

/* GALLERY */
#gallery {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}
#gallery h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}
#gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  #gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  #gallery .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
#gallery .gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#gallery .gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FEATURES */
#features {
  background: #f3f3f7;
  padding: 80px 0;
  text-align: center;
}
#features .container {
  max-width: 1100px;
  margin: 0 auto;
}
#features .tag {
  background: #6a5acd;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
#features h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
}
#features h2 span {
  color: #ff5733;
}
#features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  #features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  #features .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
#features .feature {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
#features .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
#features .feature h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}
#features .feature p {
  font-size: 16px;
  color: #444;
}

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

.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 */