body {
    font-size: 1.35rem; /* Zoomed in 20% (1.125 * 1.2) */
}

.timeline-container {
    max-width: 1680px; /* 1400 * 1.2 */
    padding-bottom: 4rem;
}

#timeline-visualization {
    position: relative;
    padding-top: 2.4rem; /* 2 * 1.2 */
    overflow-x: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#timeline-visualization::-webkit-scrollbar {
    display: none;
}

.timeline-axis {
    position: relative;
    height: 60px; /* 50 * 1.2 */
    border-top: 3.6px solid var(--border-color); /* 3 * 1.2 */
    border-bottom: none;
    margin-bottom: 1.8rem; /* 1.5 * 1.2 */
    margin-top: 0;
    width: calc(100% - 48px); /* 40 * 1.2 */
    margin-left: 24px; /* 20 * 1.2 */
    min-width: 1200px; /* 1000 * 1.2 */
}

.axis-tick {
    position: absolute;
    top: 0;
    width: 2.4px; /* 2 * 1.2 */
    height: 16.8px; /* 14 * 1.2 */
    background-color: var(--text-secondary);
}

.tick-label {
    position: absolute;
    top: 24px; /* 20 * 1.2 */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem; /* 1 * 1.2 */
    color: var(--text-secondary);
}

.timeline-section {
    margin-bottom: 3rem; /* 2.5 * 1.2 */
    position: relative;
    min-width: 1200px; /* 1000 * 1.2 */
}

.section-title {
    font-size: 1.68rem; /* 1.4 * 1.2 */
    color: var(--accent-color);
    margin-bottom: 0.96rem; /* 0.8 * 1.2 */
    position: sticky;
    left: 0;
}

.track-container {
    position: relative;
    width: 100%;
    background-color: transparent; /* Removed background */
}

.timeline-item {
    position: absolute;
    height: 60px; /* 50 * 1.2 */
    background-color: var(--card-bg);
    /* border: 1px solid var(--border-color); Removed border */
    border-radius: 30px; /* 25 * 1.2 */
    display: flex;
    align-items: center;
    padding: 0 9.6px; /* 8 * 1.2 */
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.2); Removed shadow */
    overflow: hidden;
    white-space: nowrap;
}

.item-icon {
    width: 45.6px; /* 38 * 1.2 */
    height: 45.6px; /* 38 * 1.2 */
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-right: 14.4px; /* 12 * 1.2 */
    flex-shrink: 0;
}

.item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-icon i {
    color: #333;
    font-size: 1.8rem; /* 1.5 * 1.2 */
}

.item-label {
    font-size: 1.2rem; /* 1 * 1.2 */
    color: var(--text-primary);
    font-weight: 500;
    margin-right: 14.4px; /* 12 * 1.2 */
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem; /* 0.5 * 1.2, 1 * 1.2 */
    margin-bottom: 1.2rem; /* 1 * 1.2 */
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.32rem; /* 1.1 * 1.2 */
}

.back-button i {
    margin-right: 0.6rem; /* 0.5 * 1.2 */
}

/* Loading/Error */
.loading, .error {
    text-align: center;
    padding: 2.4rem; /* 2 * 1.2 */
    color: var(--text-secondary);
    font-size: 1.44rem; /* 1.2 * 1.2 */
}

/* Specific Section Styles */

/* Career: Taller items */
.section-career .timeline-item {
    border-radius: 14.4px; /* 12 * 1.2 */
    padding: 0 1.8rem; /* 1.5 * 1.2 */
}

.section-career .item-icon {
    width: 76.8px; /* 64 * 1.2 */
    height: 76.8px; /* 64 * 1.2 */
    margin-right: 1.8rem; /* 1.5 * 1.2 */
    border-radius: 4px; /* Same as podcasts */
    background-color: transparent; /* Remove white background */
}

.section-career .item-icon i {
    font-size: 3rem; /* 2.5 * 1.2 */
}

.section-career .item-label {
    font-size: 1.56rem; /* 1.3 * 1.2 */
    font-weight: 600;
}

.section-career .item-sublabel {
    font-size: 1.2rem !important; /* 1 * 1.2 */
}

/* Merge Styles */
.merged-item.merge-start {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.merged-item.merge-end {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none; /* Removed divider */
    margin-left: 0;
    padding-left: 1.2rem; /* 1 * 1.2 */
}

.merged-item.merge-middle {
    border-radius: 0;
    border-left: none;
    border-right: none;
}

/* Short Item (Amazon) */
.short-item {
    padding: 0 0.6rem !important; /* 0.5 * 1.2 */
}

.short-item .item-icon {
    width: 38.4px !important; /* 32 * 1.2 */
    height: 38.4px !important; /* 32 * 1.2 */
    margin-right: 0.6rem !important; /* 0.5 * 1.2 */
}

.short-item .item-label {
    font-size: 1.2rem !important; /* 1 * 1.2 */
}

.short-item .item-sublabel {
    font-size: 0.96rem !important; /* 0.8 * 1.2 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px; /* 100 * 1.2 */
    display: block;
}


/* Content: Circles only, special container */
.content-icon-row {
    min-width: 1200px; /* 1000 * 1.2 */
}

.content-icon-item {
    width: 60px !important; /* 50 * 1.2 */
    height: 60px !important; /* 50 * 1.2 */
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    background-color: transparent;
    border: none;
    box-shadow: none;
    overflow: visible; 
}

.content-icon-item.type-media {
    border-radius: 4px; /* Reduced from 14.4px */
}

.content-icon-item.type-media .item-icon {
    border-radius: 4px; /* Reduced from 14.4px */
}

.content-icon-item .item-icon {
    margin: 0;
    width: 60px; /* 50 * 1.2 */
    height: 60px; /* 50 * 1.2 */
    box-shadow: none; /* Remove shadow */
    border: none; /* Remove border */
    background-color: transparent; /* Remove white background */
}

.content-icon-item .item-icon i {
    font-size: 2.16rem; /* 1.8 * 1.2 */
}

/* Languages Section Customization */
.section-languages .timeline-item {
    height: 96px; /* 80 * 1.2 */
    border-radius: 48px; /* 40 * 1.2 */
    justify-content: center; /* Center content */
}

.section-languages .item-icon {
    width: 78px; /* 65 * 1.2 */
    height: 78px; /* 65 * 1.2 */
    border-radius: 0; /* No circle border */
    background-color: transparent; /* No background */
    margin-right: 0; /* Remove margin since label is hidden */
}

.section-languages .item-icon img {
    object-fit: contain; /* Maintain aspect ratio */
}

.section-languages .item-label {
    display: none; /* Hide text next to logos */
}
