.career-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero2.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    animation: fadeIn 1s ease-out;
}

/*@keyframes fadeIn {*/
/*    from { opacity: 0; transform: translateY(-20px); }*/
/*    to { opacity: 1; transform: translateY(0); }*/
/*}*/

.career-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.timeline-section {
    padding: 80px 0;
    background: var(--background-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-item::before:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 55%;
}

.timeline-content img {
    width: 100%;
    border-radius: 5px;
    margin: 15px 0;
}

.club-career {
    padding: 80px 0;
}

.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.club-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.club-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.club-card:hover::before {
    transform: scaleX(1);
}

.club-card:hover {
    transform: translateY(-10px);
}

.club-stats {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.stat {
    padding: 10px;
    background: var(--background-light);
    border-radius: 5px;
    text-align: center;
}

.national-team {
    padding: 80px 0;
    background: var(--background-dark);
    color: var(--text-light);
}

.national-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.national-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.national-stats .stat-number {
    font-size: 3em;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.national-highlights ul {
    list-style: none;
    padding: 0;
}

.national-highlights li {
    margin: 15px 0;
    padding-left: 20px;
    position: relative;
}

.national-highlights li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
}
