* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #38bdf8;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
  color: #cbd5e1;
}

#countdown {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #facc15;
}

.notify-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.notify-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 65%;
}

.notify-form button {
  padding: 10px 20px;
  background: #38bdf8;
  border: none;
  border-radius: 5px;
  color: #0f172a;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.notify-form button:hover {
  background: #0ea5e9;
}

.social-links a {
  color: #38bdf8;
  text-decoration: none;
  margin: 0 5px;
}

.social-links a:hover {
  text-decoration: underline;
}
