/* Reset & font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Body & background */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #333;
  background: url('../images/background.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

/* Overlay for better contrast */
body::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.6);
  z-index: 0;
}

/* Card */
.card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Logo */
.logo img {
  max-width: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 2px solid #eee;
}

/* Heading */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.description {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 35px;
  color: #666;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.time-box {
  background: #f0f0f0;
  border-radius: 15px;
  padding: 15px 20px;
  min-width: 70px;
  text-align: center;
  transition: all 0.3s ease;
}

.time-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #4facfe, 0 0 20px #00f2fe;
}

.time-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.label {
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 5px;
  color: #888;
}

/* Footer */
.footer {
  margin-top: 25px;
  font-size: 0.85rem;
  opacity: 0.7;
}
