/* 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: #0b0c1a;
  overflow: hidden;
  color: #fff;
  position: relative;
}

/* Star background */
.stars-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('../images/stars-bg.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
  filter: brightness(0.7);
}


/* Card */
.card {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 550px;
  width: 90%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* Logo */
.logo img {
  max-width: 130px;
  border-radius: 50%;
  background: white;
  padding: 8px;
  margin-bottom: 20px;
}

/* Heading */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text; /* standard property */
  -webkit-text-fill-color: transparent;
}

/* Description */
.description {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 35px;
  color: #ddd;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.time-box {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 18px 22px;
  min-width: 75px;
  text-align: center;
  transition: all 0.3s ease;
}

.time-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #ff8a00, 0 0 30px #e52e71;
}

.time-box span {
  display: block;
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
}

.label {
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 6px;
  color: #ddd;
}

/* Footer */
.footer {
  margin-top: 25px;
  font-size: 0.85rem;
  opacity: 0.8;
}
