* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.highlight {
  background: linear-gradient(90deg, #f7971e, #ffd200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.15rem;
  color: #b0b0cc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.time-block {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  min-width: 80px;
  backdrop-filter: blur(10px);
}

.time-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffd200;
}

.time-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8888aa;
  margin-top: 0.3rem;
  display: block;
}

/* Notify */
.notify-section {
  margin-bottom: 2rem;
}

.notify-text {
  color: #b0b0cc;
  margin-bottom: 0.75rem;
}

.notify-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.notify-form input[type="email"] {
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1rem;
  width: 280px;
  outline: none;
  transition: border 0.3s;
}

.notify-form input[type="email"]:focus {
  border-color: #ffd200;
}

.notify-form button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #f7971e, #ffd200);
  color: #0f0c29;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}

.notify-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 210, 0, 0.4);
}

.success-message {
  color: #4cff88;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

/* Social Links */
.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-links a:hover {
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 500px) {
  .title { font-size: 2rem; }
  .countdown { gap: 0.8rem; }
  .time-block { padding: 0.8rem 1rem; min-width: 60px; }
  .time-value { font-size: 1.5rem; }
}