body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1f1d1d, #414345);
  font-family: Arial, sans-serif;
}

.clock-container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: #00dab5;
}

.clock {
  width: 200px;
  height: 200px;
  margin: 20px auto 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  border: 2px solid #00ffcc;
  box-shadow: inset 0 0 10px rgba(0, 255, 200, 0.3);
}

#time {
  font-size: 2rem;
  margin: 0;
}

#ampm {
  font-size: 1rem;
  color: #00ffcc;
  margin-top: 5px;
}
