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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle, #1c1c2b, #0b0a1e);
  color: #ffffff;
  line-height: 1.6;
}

/* Header styles */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

header .logo {
  width: 60px;
  height: auto;
  margin-right: 15px;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Main content */
main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 20px;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin: 0 auto 30px;
  max-width: 600px;
}

/* Countdown timer */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.time-block {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  min-width: 70px;
}

.time-block span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.time-block small {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Email sign-up form */
.signup {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.signup input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 250px;
  max-width: 100%;
}

.signup button {
  padding: 10px 20px;
  background: linear-gradient(45deg, #ff6b6b, #f06595);
  border: none;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup button:hover {
  background: linear-gradient(45deg, #f06595, #ff6b6b);
}

/* Subscription message styling */
#subscription-message {
  width: 100%;
  margin-top: 10px;
  font-size: 1rem;
  color: #fffa;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: #0b0a1e;
}

/* Responsive design adjustments */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}
