/* Digital Clock Specific Styles */

.clock-card {
  text-align: center;
  max-width: 500px;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, var(--card-bg), #111827);
  position: relative;
  overflow: hidden;
}

/* Subtle glowing accent on the card */
.clock-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.clock-container {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(15, 23, 42, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
  display: inline-block;
}

#clock {
  font-family: 'Courier New', Courier, monospace; /* Digital look */
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #38bdf8; /* Vibrant light blue */
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5), 0 0 20px rgba(56, 189, 248, 0.3);
  margin: 0;
}

@media (max-width: 480px) {
  #clock {
    font-size: 2.2rem;
  }
}
