/* BASE STYLES */
body {
  font-family: sans-serif;
  background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
  /* subtle gradient */
  margin: 0;
  text-align: center;
  color: #f9f5e7;
  /* sand text */
}

/* HERO SECTION */
.hero {
  padding: 40px 20px 20px;
}

/* Rotated Gold Moon Hero Icon */
.hero-icon {
  width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-icon:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
}

.hero h1 {
  font-size: 2rem;
  margin: 0;
  color: #f9f5e7;
}

.tagline {
  font-size: 1.2rem;
  margin: 10px 0 20px;
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.play-button {
  display: inline-block;
  background: #D4AF37; /* gold */
  color: #0a0a0a; /* navy text */
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.play-button:hover {
  background: #e0c75f;
}

.secondary-button {
  display: inline-block;
  background: #1E3A8A; /* blue */
  color: #f9f5e7;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.secondary-button:hover {
  background: #2952cc;
}

/* FEATURES SECTION */
.features {
  background: #1a1a1a;
  margin: 30px 15px;
  padding: 20px;
  border-radius: 10px;
}

.features h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #D4AF37;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item h3 {
  margin-bottom: 5px;
  color: #D4AF37;
}

/* Responsive feature layout for larger screens */
@media (min-width: 768px) {
  .feature-grid {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
  .feature-item {
    max-width: 250px;
  }
}

/* CAROUSEL SECTION */
.carousel {
  margin: 40px auto;
  max-width: 300px;
  position: relative;
}

.carousel h2 {
  margin-bottom: 15px;
  color: #D4AF37;
}

.frame {
  border: 5px solid #D4AF37;
  border-radius: 30px;
  padding: 10px;
  background: #1a1a1a;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.slides img {
  display: none;
  width: 100%;
  border-radius: 20px;
}

.dots {
  margin-top: 10px;
}

.dots span {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #555;
  border-radius: 50%;
  display: inline-block;
}

.dots span.active {
  background-color: #D4AF37;
}

/* FOOTER */
footer {
  margin: 30px 0;
  font-size: 0.9rem;
}

footer a {
  color: #f9f5e7;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
