body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.under-construction {
  text-align: center;
  padding: 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border: 2px solid #d4af37;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

h1 {
  font-size: 2.5rem;
  margin-top: 1rem;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  font-weight: 300;
}

.coming-soon {
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
}
