body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #f87171, #fbbf24);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #fff;
}

.container {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.icon {
  font-size: 50px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.description {
  font-size: 16px;
  margin-bottom: 25px;
}

.countdown-container p {
  margin-bottom: 10px;
  font-size: 14px;
}

#countdown {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.note {
  font-size: 14px;
  color: #fef3c7;
}

body {
  background-image: url('assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
