body {
  font-family: "Poppins", sans-serif;
  background: #111;
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background 1s ease;
}

#greeting {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#clock {
  font-size: 5rem;
  font-weight: 300;
}

#date {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  opacity: 0.7;
}

.bar-container {
  width: 80%;
  height: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

#second-bar {
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #00ff88);
  width: 0%;
  transition: width 0.5s ease;
}

footer {
  position: absolute;
  bottom: 10px;
  font-size: 0.9rem;
  color: #666;
}
