/* Historical Database & Hall of Fame Styles */
.timeline-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto 3rem auto;
  padding: 1rem 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-cyan) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

.timeline-dot {
  position: absolute;
  top: 25px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent-gold);
  border: 4px solid var(--bg-dark);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  z-index: 2;
}

.timeline-item.left .timeline-dot { right: -10px; }
.timeline-item.right .timeline-dot { left: -10px; }

.timeline-content {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-cyan);
}

.legends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.legend-card {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(22, 34, 56, 0.6) 0%, rgba(14, 23, 42, 0.9) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.legend-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  border: 3px solid var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
  .timeline-line { left: 20px; }
  .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px; }
  .timeline-item .timeline-dot { left: 10px !important; }
}
