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

body {
  font-family: "Inter", sans-serif;
  background-color: #fafaff;
  color: #1e1e2f;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.hero-header {
  text-align: center;
  padding: 2rem 1rem 3rem;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(165, 107, 255, 0.1) 0%,
    rgba(78, 140, 255, 0.05) 100%
  );
  border-bottom: 1px solid rgba(165, 107, 255, 0.2);
}

.logo-icon {
  width: clamp(70px, 8vw, 110px);
  display: block;
  margin: 0.5rem auto 1rem;
  filter: drop-shadow(0 0 8px rgba(78, 140, 255, 0.3));
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #1e1e2f;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(30, 30, 47, 0.8);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== SCENES ===== */
.scene {
  text-align: center;
  padding: 2rem 0;
}

.scene-img {
  width: 95%;
  max-width: 900px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: 0 8px 20px rgba(165, 107, 255, 0.15);
  transition: all 0.6s ease;
}

.scene-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(165, 107, 255, 0.3);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  border-top: 1px solid rgba(165, 107, 255, 0.2);
  background-color: #fdfdff;
  font-size: 0.9rem;
  color: rgba(30, 30, 47, 0.7);
}

.footer-logo {
  width: clamp(180px, 25vw, 260px);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(165, 107, 255, 0.25));
}
