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

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #001f3f, #002b5c);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Animated gradient overlay */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255,215,0,0.15), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(255,215,0,0.1), transparent 60%);
  animation: float 10s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-30px); }
}

.container {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 600px;
  animation: fadeIn 2s ease-in-out;
}

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

/* -------------------------
   Logo
-------------------------- */
.logo img {
  width: 120px;
  max-width: 60%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px #FFD700);
  animation: fadeLogo 2s ease-in-out;
}

@keyframes fadeLogo {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* -------------------------
   Text & Heading
-------------------------- */
h1 {
  font-size: 2.2rem;
  color: #FFD700;
  margin-bottom: 10px;
}

h1 span {
  color: #fff;
}

p {
  font-size: 1rem;
  color: #dcdcdc;
  margin-bottom: 25px;
}

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

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 70px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s;
}

.countdown div:hover {
  transform: scale(1.1);
}

.countdown span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFD700;
}

/* -------------------------
   Notify Form
-------------------------- */
.notify {
  margin-top: 10px;
}

.notify input {
  padding: 10px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
  width: 60%;
  max-width: 250px;
}

.notify button {
  padding: 10px 20px;
  background-color: #FFD700;
  color: #001f3f;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.3s ease;
}

.notify button:hover {
  background-color: #e6c200;
}

/* -------------------------
   Footer
-------------------------- */
footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #aaa;
}

/* -------------------------
   Responsive Design
-------------------------- */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  p {
    font-size: 0.95rem;
  }
  .countdown div {
    padding: 10px 15px;
  }
  .notify input {
    width: 65%;
  }
  .notify button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 15px;
  }
  h1 {
    font-size: 1.6rem;
  }
  .logo img {
    width: 100px;
  }
}
