* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: url('https://i.imgur.com/6TXFqcF.png') no-repeat center 40%;
  background-size: cover;
  height: 100vh;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

.container {
  position: absolute;
  bottom: 5%;
  left: 5%;
  text-align: left;
}

.tagline {
  color: #ff4ddb;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.coming-soon {
  font-size: 1rem;
  color: #ddd;
}

#countdown {
  font-size: 1.25rem;
  margin-top: 1rem;
  font-weight: bold;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  padding: 0.75rem 1.5rem;
  border: 2px solid #d567ff;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #d567ff;
  color: white;
}

@media (max-width: 500px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .buttons {
    flex-direction: column;
  }
}
