body {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  font-family: 'Segoe UI', sans-serif;
  margin: 20px;
  color: #fff;
}

#clock {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #00ffcc;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 40px;
  border: 2px solid #00ffcc;
  border-radius: 12px;
  text-align: center;
  width: fit-content;
  margin: 30px auto;
  box-shadow: 0 0 20px #00ffcc;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px #00ffcc; }
  50% { box-shadow: 0 0 30px #00ffcc; }
  100% { box-shadow: 0 0 10px #00ffcc; }
}

.info {
  font-size: 1.3rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-left: 5px solid #ffcc00;
  margin-bottom: 20px;
  border-radius: 8px;
}

.features {
  font-size: 1.1rem;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
  list-style-type: circle;
  border: 1px solid #fff;
}

.features li {
  margin-bottom: 10px;
}
