body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #4A91BD);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 50px auto;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

input {
  padding: 10px;
  font-size: 16px;
  width: 80%;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.choices button {
  padding: 15px 25px;
  margin: 10px;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: white;
}

.choices button:first-child { background: #1E90FF; }
.choices button:last-child { background: #FF69B4; }

#message {
  margin-top: 20px;
  font-weight: bold;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  font-size: 18px;
  margin: 5px 0;
  padding: 8px;
  border-bottom: 1px solid #eee;
}
/* Countdown bar at the top */
#countdown-bar {
  width: 100%;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, rgba(255,182,193,0.8), rgba(173,216,230,0.8));
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: sticky;
  top: 0; /* stays visible while scrolling */
  z-index: 1000;
}

#countdown-wrap {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}
.countdown-item span {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.countdown-item small {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
}
.glow {
  font-size: 30px;
  color: #fff;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #4a91bd, 0 0 40px #4a91bd, 0 0 50px #4a91bd, 0 0 60px #4a91bd, 0 0 70px #4a91bd;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #0505ff, 0 0 40px #0505ff, 0 0 50px #0505ff, 0 0 60px #0505ff, 0 0 70px #0505ff, 0 0 80px #0505ff;
  }
}
