.countdown-widget {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.countdown-title {
  margin-bottom: 15px;
  opacity: 0.8;
  font-weight: 500;
}

.countdown-display {
  font-weight: bold;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  line-height: 1.2;
}

.countdown-error {
  color: #ff6b6b;
  font-weight: 500;
  padding: 20px;
  text-align: center;
  border: 2px dashed #ff6b6b;
  border-radius: 8px;
  background: rgba(255, 107, 107, 0.1);
}

/* Responsive font scaling */
@media (max-width: 768px) {
  .countdown-container {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .countdown-container {
    font-size: 0.8em;
  }
  
  .countdown-title {
    margin-bottom: 10px;
  }
}

/* Animation for finished state */
.countdown-display[style*="color: rgb(255, 107, 107)"] {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}