/* Career section / timeline styles */

/* Career Section */
.career {
    background: var(--darker);
  }
  
  .timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--sky-blue) 0%, var(--navy) 100%);
  }
  
  .timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    position: relative;
    margin-bottom: 3rem;
  }
  
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }
  
  .timeline-content {
    background: linear-gradient(135deg, rgba(28, 44, 91, 0.4) 0%, rgba(10, 10, 15, 0.8) 100%);
    border: 1px solid rgba(108, 171, 221, 0.15);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(108, 171, 221, 0.15);
  }
  
  .timeline-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--sky-blue);
    margin-bottom: 0.5rem;
  }
  
  .timeline-club {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .timeline-stats {
    font-size: 0.95rem;
    color: rgba(240, 244, 248, 0.7);
  }
  
  .timeline-stats span {
    color: var(--gold);
    font-weight: 600;
  }
