.clock-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: 'Magnesium MVB', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  text-align: center;
}

.clock-time {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}

.clock-date {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive sizing */
@media (max-width: 768px) {
  .clock-time {
    font-size: 3rem;
  }
  
  .clock-date {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .clock-time {
    font-size: 2.5rem;
  }
  
  .clock-date {
    font-size: 1rem;
  }
}

/* Animation for smooth updates */
.clock-time, .clock-date {
  transition: opacity 0.2s ease-in-out;
}

.clock-widget.updating .clock-time,
.clock-widget.updating .clock-date {
  opacity: 0.7;
}