/* Reset & font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top left, #ff6ec4, #7873f5, #42e695);
  color: #fff;
  overflow: hidden;
}

/* Card */
.card {
  background: rgba(255,255,255,0.05);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: floatUp 2s ease, floating 6s ease-in-out infinite;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floating {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Logo */
.logo img {
  max-width: 130px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid #fff;
}

/* Heading - Modern Dark Style */
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1e1e1e, #2c2c2c, #3a3a3a); /* dark gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;  /* fallback */
  text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 0 10px rgba(0,0,0,0.3); /* subtle dark shadow for depth */
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Hover effect to add subtle glow */
h1:hover {
  text-shadow: 0 3px 12px rgba(0,0,0,0.6), 0 0 15px rgba(0,0,0,0.4);
  transform: scale(1.05);
}


/* Description */
.description {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 35px;
  color: #f0f0f0;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.time-box {
  background: rgba(255,255,255,0.15);
  border-radius: 15px;
  padding: 15px 20px;
  min-width: 70px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.time-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255,255,255,0.7);
}

.time-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.label {
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 5px;
  color: #e0e0e0;
}

/* Footer */
.footer {
  margin-top: 25px;
  font-size: 0.85rem;
  opacity: 0.8;
}
