* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.main {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.center img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 2rem;
}

p {
  font-size: 1.1rem;
  opacity: 0.85;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.time-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: 12px;
  min-width: 75px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.time-box:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

.time-box span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.time-box small {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 500px) {
  .countdown {
    gap: 8px;
  }

  .time-box {
    padding: 8px 10px;
    min-width: 60px;
  }

  h1 {
    font-size: 1.5rem;
  }
}

/* Footer */
.footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer .credit {
  font-weight: 500;
  letter-spacing: 1px;
}

.time-box {
  padding: 8px 10px;
  min-width: 60px;
}

h1 {
  font-size: 1.5rem;
}

.footer a {
  color: orange;
}
