body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #2A5CAA 0%, #28A745 100%);
  min-height: 100vh;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: rgba(255,255,255,0.96);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(42,92,170,0.12);
  padding: 40px 32px 24px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
  animation: pulse 2s infinite;
}

.logo svg {
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #2A5CAA55);
  transition: transform 0.4s;
}

.logo:hover svg {
  transform: rotate(-8deg) scale(1.08);
}

h1 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.2rem;
  color: #2A5CAA;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 18px;
}

.progress-section {
  margin: 24px 0 16px 0;
}

.progress-bar {
  width: 100%;
  height: 14px;
  background: #e3eaf5;
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px #2A5CAA22;
}

.progress {
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #2A5CAA 60%, #FF6B35 100%);
  border-radius: 7px 0 0 7px;
  animation: progressAnim 2.5s ease-in-out infinite alternate;
}

@keyframes progressAnim {
  0% { width: 60%; }
  100% { width: 90%; }
}

.progress-label {
  font-size: 0.95rem;
  color: #2A5CAA;
  font-weight: 500;
}

.countdown-section {
  margin: 18px 0 16px 0;
}

#countdown {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.5rem;
  color: #FF6B35;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.countdown-label {
  font-size: 0.95rem;
  color: #28A745;
  font-weight: 500;
}

.notify-section {
  margin: 18px 0 16px 0;
}

#notify-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#notify-form label {
  font-size: 1rem;
  color: #2A5CAA;
  font-weight: 500;
}

#notify-form input[type="email"] {
  padding: 8px 12px;
  border: 1px solid #2A5CAA;
  border-radius: 6px;
  font-size: 1rem;
  width: 90%;
  max-width: 260px;
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

#notify-form input[type="email"]:focus {
  border-color: #FF6B35;
}

#notify-form button {
  background: linear-gradient(90deg, #FF6B35 60%, #28A745 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px #FF6B3522;
  transition: background 0.2s, transform 0.2s;
}

#notify-form button:hover {
  background: linear-gradient(90deg, #28A745 60%, #FF6B35 100%);
  transform: scale(1.05);
}

#notify-message {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #28A745;
  font-weight: 500;
}

footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
}

.social-icons a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px #2A5CAA22;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}

.social-icons a:hover {
  box-shadow: 0 4px 16px #FF6B3555;
  transform: scale(1.12) rotate(-8deg);
}

.social-icons img {
  width: 20px;
  height: 20px;
  margin: 6px;
  filter: grayscale(0%) brightness(1.1);
  transition: filter 0.2s;
}

.social-icons a:hover img {
  filter: drop-shadow(0 0 4px #FF6B35) brightness(1.3);
}

.footer-text {
  font-size: 0.9rem;
  color: #2A5CAA;
  margin-top: 2px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}
