* {margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif;}
body, html {width: 100%; height: 100%; overflow: hidden; background: #000; color: white;}
#map-bg {position: fixed; top: 0; left: 0; z-index: 0;}
.overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.container {max-width: 600px; animation: fadeInUp 1s ease;}
.logo-img {width: 80px; margin-bottom: 1rem; filter: drop-shadow(0 0 2px #00ffcc);}
.logo {font-size: 3rem; font-weight: 700; letter-spacing: 2px; color: #fff;}
.logo span {color: #00ffcc; text-shadow: 0 0 10px #00ffcc;}
.subtitle {font-size: 1.5rem; margin-top: 0.5rem; color: #ddd;}
.desc {margin-top: 1rem; font-size: 1rem; color: #aaa;}
.countdown {display: flex; justify-content: center; margin: 2rem 0; gap: 20px;}
.countdown div {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}
.countdown span {
  font-size: 2rem;
  font-weight: bold;
  color: #00ffcc;
  display: block;
}
.notify-box {display: flex; justify-content: center; gap: 10px;}
.notify-box input {
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  outline: none;
  width: 60%;
}
.notify-box button {
  background: #00ffcc;
  color: #000;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
}
.notify-box button:hover {
  background: #00e6b8;
  transform: translateY(-2px);
}
@keyframes fadeInUp {from {opacity: 0; transform: translateY(40px);} to {opacity: 1; transform: translateY(0);}}

