/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Container */
.container {
  max-width: 550px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
  width: 250px;
  margin-bottom: 15px;
}

/* Heading */
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

/* Countdown Box */
.countdown {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.box {
  background: #fff;
  color: #ff7e5f;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.box:hover {
  transform: scale(1.05);
}

.number {
  font-size: 4rem;
  font-weight: bold;
}

.label {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #444;
}

/* Event date */
.date {
  margin-top: 20px;
  font-size: 1rem;
  color: #fff;
}

/* When countdown finishes */
.started {
  font-size: 1.5rem;
  color: #00ffae;
  animation: pulse 1.2s infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
