#timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 20px;
  pointer-events: none;
}

#timeline * {
  pointer-events: auto;
}

#timelineLabel {
  text-align: center;
  font-size: 24px;
  font-weight: 200;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  letter-spacing: 2px;
}

#currentYear,
#currentSeason {
  color: #FFFFFF;
}

#timelineControls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-btn {
  padding: 12px 16px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-btn i {
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
}

.timeline-btn:hover:not(:disabled) {
  transform: scale(1.2);
  color: #FFFFFF;
}

.timeline-btn:disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.timeline-btn:disabled i {
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.15));
}

.timeline-btn.step-btn {
  font-size: 24px;
  padding: 10px 14px;
  min-width: 45px;
  min-height: 45px;
}

.timeline-btn.play-btn {
  font-size: 22px;
  min-width: 50px;
  min-height: 50px;
}

.timeline-btn.play-btn.active {
  color: #FFFFFF;
  animation: pulse 1s infinite;
}

.timeline-btn.pause-btn {
  font-size: 22px;
  min-width: 50px;
  min-height: 50px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
  }
}
