/* Background: #52448d, Gold: #ffbc00 */

.landing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #52448d;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.landing-content {
  text-align: center;
}

.landing-star {
  font-size: 3rem;
  color: #ffbc00;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.landing-title {
  font-size: 5rem;
  font-weight: 100;
  color: #ffbc00;
  text-align: center;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.landing-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: #ffbc00;
  text-align: center;
  margin-top: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  opacity: 0.7;
}

/* Remove default body margins */
body {
  margin: 0;
  padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .landing-title {
    font-size: 3.5rem;
  }
  .landing-star {
    font-size: 2.5rem;
  }
  .landing-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .landing-title {
    font-size: 2.5rem;
  }
  .landing-star {
    font-size: 2rem;
  }
  .landing-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
}