* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
  }
  body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .clock-container {
  width: 360px;
  padding: 30px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
  text-align: center;
  color: #00fff7;
  }
  .label {
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
  }
  .time {
  font-size: 48px;
  letter-spacing: 6px;
  text-shadow: 0 0 10px #00fff7, 0 0 20px #00fff7;
  }
  .seconds {
  font-size: 20px;
  vertical-align: super;
  }
  .ampm {
  font-size: 14px;
  margin-left: 6px;
  vertical-align: super;
  }
  .date {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 3px;
  color: #b0ffff;
  }