/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000428, #004e92);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 40px;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 10px;
  min-width: 70px;
}

.countdown span {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}

.countdown p {
  font-size: 0.8rem;
  color: #ccc;
}

/* Subscribe Box */
.subscribe {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}

.subscribe input {
  padding: 10px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
  width: 60%;
}

.subscribe button {
  background: #00c6ff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.subscribe button:hover {
  background: #0072ff;
  transform: scale(1.05);
}

/* Social Links */
.social-links a {
  color: white;
  margin: 0 10px;
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #00c6ff;
  transform: scale(1.1);
}

/* Mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
  .countdown {
    gap: 10px;
  }
}
