/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: 'Outfit', sans-serif;
  background: url('./sl_0210121_40570_53.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.overlay {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px) brightness(0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background-color: rgba(20, 20, 30, 0.85);
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  animation: fadeIn 1.5s ease;
}

.logo {
  margin-bottom: 20px;
}

.launch-icon {
  font-size: 3rem;
  color: #8c52ff;
  margin-bottom: 10px;
}

.logo h1 {
  font-size: 2.8rem;
  color: #8c52ff;
}

.content h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #dddddd;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

input[type="email"] {
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 260px;
  outline: none;
  font-size: 1rem;
}

button {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  background: #8c52ff;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #a671ff;
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 500px) {
  .logo h1 {
    font-size: 2rem;
  }

  .content h2 {
    font-size: 1.6rem;
  }

  input[type="email"] {
    width: 100%;
  }

  button {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
