/* 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: #0b0b0b; /* dark black background */
  overflow: hidden;
  color: #fff;
}

/* Card */
.card {
  background: rgba(0,0,0,0.8); /* slightly transparent dark card */
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(255,128,0,0.3); /* subtle orange glow */
}

/* Logo */
.logo img {
  max-width: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 2px solid #ff8000; /* orange border for visibility */
}

/* Heading - Company Name */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff8000, #ffb347); /* orange gradient */
  -webkit-background-clip: text; /* Chrome, Safari */
  background-clip: text;         /* Standard */
  -webkit-text-fill-color: transparent;
  color: transparent;            /* fallback */
  text-shadow: 0 2px 6px rgba(255, 128, 0, 0.7); /* highlight glow */
}

/* 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,128,0,0.1); /* light orange transparent boxes */
  border-radius: 15px;
  padding: 15px 20px;
  min-width: 70px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255,128,0,0.5);
}

.time-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255,128,0,0.7);
}

.time-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff8000; /* countdown text in orange */
}

.label {
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 5px;
  color: #f0f0f0;
}

/* Footer */
.footer {
  margin-top: 25px;
  font-size: 0.85rem;
  opacity: 0.8;
}
