:root {
    /* dark mode - default */
    --bg-color: #111111;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --highlight-bg: rgba(255, 255, 0, 0.2);
    --highlight-active: rgba(255, 255, 0, 0.3);
    --link-color: #ffffff;
    --link-hover: #cccccc;
    --border-color: #333333;
    --active-color: #ffffff;
    --inactive-color: #666666;
    --highlight-inactive-color: #999999;
    
    /* image filters */
    --media-filter: none;
    --icon-filter: none;
}

[data-theme="light"] {
    /* light mode */
    --bg-color: #ffffff;
    --text-color: #111111;
    --text-secondary: #444444;
    --highlight-bg: rgba(255, 255, 0, 0.3);
    --highlight-active: rgba(255, 255, 0, 0.5);
    --link-color: #111111;
    --link-hover: #444444;
    --border-color: #dddddd;
    --active-color: #111111;
    --inactive-color: #999999;
    --highlight-inactive-color: #666666;
    
    /* invert stuff for light mode */
    --media-filter: invert(1) hue-rotate(180deg);
    --icon-filter: invert(1);
}

/* make sure social icons show up in light mode */
[data-theme="light"] .social-icon img {
    filter: invert(1) brightness(0) !important;
    opacity: 1 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* em tags should be italic */
em {
    font-style: italic;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.5;
    padding: 60px 40px;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* smooth transitions */
* {
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* theme switching - ui elements only */
/* dont filter album art, shoes, etc */
img, video, canvas, svg {
    /* no filter by default */
}

/* only filter ui stuff, not content */
.walking-figure img {
    filter: var(--media-filter);
    transition: filter 0.3s ease;
}

/* social icons - white by default */
.social-icon img {
    transition: filter 0.3s ease;
}

/* dont filter theme icon */
.theme-icon {
    filter: none !important;
}

/* keep nav arrows visible */
.nav-arrow,
button.nav-arrow,
[class*="nav-arrow"] {
    filter: none !important;
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}


/* swiper cards - subtle theming */
.swiper-pagination-bullet {
    background: var(--text-secondary) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--text-color) !important;
    opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-color) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--text-color) !important;
}

/* preserve card look with subtle theme */
[data-theme="light"] .swiper-slide img {
    filter: none !important; /* dont invert images */
}

/* subtle bg for cards in light mode */
[data-theme="light"] .swiper-slide {
    background-color: rgba(0, 0, 0, 0.03) !important;
    border-radius: 8px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
}

/* header - narrow left col for name */
.container:first-child {
    grid-template-columns: min-content 1fr;
    align-items: center;
}

.container.currently {
    margin-bottom: 10px;
}

/* left column */
.left-column {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.heading-with-figure {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.main-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.055em;
    margin-bottom: 0;
}

.walking-figure img {
    width: 72px; /* was 60px */
    height: auto;
    opacity: 0.8;
    mix-blend-mode: screen;
    filter: var(--media-filter);
    transition: filter 0.3s ease;
}

/* remove blend mode in light mode */
[data-theme="light"] .walking-figure img {
    mix-blend-mode: normal;
}

/* social icons */
.social-icons {
    margin: 20px 0 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    padding: 0;
}

.social-icon {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-icon img {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

/* right column */
.right-column {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    justify-content: center;
}

.subtitle-section {
    margin-bottom: 0;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    letter-spacing: -0.03em;
    transition: color 0.3s ease;
}

.body-text {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.coordinates {
    margin-top: 40px;
}

.location-text {
    font-size: 0.95rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

/* divider */
.divider {
    width: 100%;
    height: 3px;
    background-color: var(--border-color);
    margin: 25px auto 40px;
    max-width: 1200px;
    transition: background-color 0.3s ease;
}

/* currently section */
.currently-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin-bottom: 20px;
}

.current-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.location-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.location-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-transform: lowercase;
    letter-spacing: -0.01em;
    line-height: 1.15;
    font-weight: 400;
}


.status-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.status-narrative {
    text-align: left;
    width: 100%;
    max-width: 500px;
    position: relative;
    left: 0;
}

.narrative-text {
    font-size: 1.3rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
    line-height: 1.4;
    font-weight: 400;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    opacity: 0; /* start hidden */
    transition: opacity 0.3s ease;
    position: relative;
    left: 0;
    transform: translateX(0);
}

.narrative-text.ready {
    opacity: 1;
}

.highlight {
    background-color: var(--highlight-bg);
    padding: 2px 4px;
    border-radius: 3px;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* grey outline for data */
.narrative-text em {
    font-style: italic;
    font-weight: normal;
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* dark mode - subtle outline */
:not([data-theme="light"]) .narrative-text em {
    text-shadow: 1px 1px 0 #333333, -1px -1px 0 #333333, 1px -1px 0 #333333, -1px 1px 0 #333333;
}

/* light mode - no shadow */
[data-theme="light"] .narrative-text em {
    text-shadow: none !important;
}

.highlight.clickable {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.highlight.clickable:hover {
    background-color: var(--highlight-active);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.highlight.clickable.active {
    background-color: var(--highlight-active);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.highlight.clickable.inactive {
    color: var(--highlight-inactive-color);
    background-color: var(--highlight-bg);
}

/* Biography Section */
.container.biography {
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.bio-labels {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bio-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bio-label:hover {
    opacity: 0.8;
}

.bio-label.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.bio-label.inactive {
    color: var(--inactive-color);
}

.bio-label-separator {
    color: var(--inactive-color);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}


.bio-content p {
    font-size: 1.3rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 20px;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

.bio-content strong {
    font-weight: 700;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.dynamic-content {
    min-height: 300px;
    max-width: 500px;
    width: 100%;
}

.dynamic-content.loading {
    opacity: 0.6;
}

/* Ensure all dynamic content children respect max width */
.dynamic-content > div {
    max-width: 100%;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.typing-cursor {
    animation: blink-cursor 1s infinite;
    font-weight: normal;
    color: var(--text-color);
    transition: color 0.3s ease;
}

@keyframes blink-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.status-item-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1.15;
}

.status-icon {
    font-size: 1.2rem;
    min-width: 24px;
    opacity: 0.8;
}

.animate-pulse {
    animation: gentle-pulse 4s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.status-label {
    font-size: 1.3rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
    font-weight: 400;
    min-width: 120px;
    flex-shrink: 0;
}

.status-value {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
    line-height: 1.15;
    font-weight: 400;
}

.status-info {
    padding-top: 24px;
}

.description-text {
    font-size: 1rem;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.last-updated {
    font-size: 0.85rem;
    color: #666666;
    font-style: italic;
    letter-spacing: 0.2px;
}

/* Loading State */
.loading {
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Experience Section */
.section-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.section-description {
    font-size: 1.2rem;
    color: #aaaaaa;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin-top: 20px;
    margin-bottom: 0;
}

.beliefs-disclaimer {
    font-size: 0.75rem;
    color: #666666;
    line-height: 1.3;
    letter-spacing: 0.1px;
    margin-top: 12px;
    margin-bottom: 0;
    font-style: italic;
}

.section-link {
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: opacity 0.2s ease;
}

.section-link:hover {
    opacity: 0.7;
}

/* Work Section */
.container.work {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 20px;
}

.work-description-extended {
    max-width: none;
}

.experience-names-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.experience-names-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    line-height: 1.4;
}

.experience-names-row:last-child {
    justify-content: flex-end;
}

/* Music Playlist Navigation */
.music-playlists-navigation {
    margin-bottom: 20px;
}

.playlist-years-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    line-height: 1.4;
}

.playlist-year-name {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    margin: 0;
    padding: 6px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    user-select: none;
}

.playlist-year-name:hover {
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration-color: #ffffff;
}

.playlist-year-name.active {
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration-color: #ffffff;
}

.playlist-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin: 0 0 16px 0;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.playlist-title-link {
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

.playlist-title:hover .playlist-title-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.playlist-tracks {
    text-align: left !important;
    max-width: 500px;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    left: 0;
    width: 100%;
}

.playlist-tracks li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 35px !important;
    text-indent: -35px !important;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

/* Annual Reading Lists */
.annual-reading-navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    line-height: 1.4;
    margin-bottom: 20px;
}

.annual-reading-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.annual-reading-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.annual-reading-link.inactive {
    color: #666666;
}

.annual-reading-separator {
    color: #666666;
    margin: 0 12px;
    font-size: 1.1rem;
}

.annual-reading-content {
    margin-top: 20px;
}

.annual-section {
    margin-bottom: 30px;
}

.annual-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.annual-tracklist {
    text-align: left !important;
    max-width: 500px;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    left: 0;
    width: 100%;
}

.annual-track-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 15px !important;
    text-indent: -15px !important;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
}

.track-number {
    min-width: 20px;
    color: #666666;
}

.track-title {
    flex: 1;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin-right: 8px;
}

.track-artist {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    margin-right: 8px;
}

.track-rating {
    color: #666666;
    font-size: 0.9rem;
}

/* Annual Reading Lists Navigation */
.read-list-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.read-list-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    margin: 0;
}

.annual-book-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: list-counter;
}

.annual-book-list li {
    margin-bottom: 4px;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.book-number {
    color: #666666;
    margin-right: 5px;
}

/* Annual Reading Lists Header Navigation */
.read-navigation-container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.read-list-content {
    flex: 1;
    text-align: center;
}

/* Investment Navigation */
.investment-names-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    line-height: 1.4;
}

.investment-names-row:last-child {
    justify-content: flex-end;
}

.investment-name-inline {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.investment-name-inline:hover {
    opacity: 0.8;
}

.investment-name-inline.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.investment-name-inline.inactive {
    color: #666666;
}

.investment-details-container {
    margin-top: 20px;
}

.investment-detail-item {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.investment-detail-item.active {
    display: block;
    opacity: 1;
}

.investment-detail-item p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    max-width: none;
}

.investment-url {
    font-size: 0.9rem !important;
    color: #999999 !important;
    margin: 0 0 12px 0 !important;
}

/* Syndicate Investments */
.syndicate-investments {
    margin-top: 40px;
}

.syndicate-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #999999;
    margin: 0 0 16px 0;
    text-transform: lowercase;
}

.syndicate-companies {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.syndicate-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.syndicate-name {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.syndicate-name.clickable {
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all 0.2s ease;
}

.syndicate-name.clickable:hover {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.syndicate-description {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #999999;
    max-width: 500px;
    margin-top: 8px;
    transition: all 0.2s ease;
}

/* Play section button centering */
.beliefs-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.play-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.experience-name-inline {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.experience-name-inline:hover {
    opacity: 0.8;
}

.experience-name-inline.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.experience-name-inline.inactive {
    color: #666666;
}

.play-categories-container {
    margin-top: 20px;
}

.play-categories-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.play-category-inline {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.play-category-inline:hover {
    opacity: 0.8;
}

.play-category-inline.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.play-category-inline.inactive {
    color: #666666;
}

.play-detail-item {
    display: none;
}

.play-detail-item.active {
    display: block;
}

.taste-categories-container {
    margin-top: 20px;
}

.taste-categories-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.taste-category-inline {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.taste-category-inline:hover {
    opacity: 0.8;
}

.taste-category-inline.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.taste-category-inline.inactive {
    color: #666666;
}

.taste-detail-item {
    display: none;
}

.taste-detail-item.active {
    display: block;
}

.taste-display {
    padding: 20px 0;
}

.taste-current-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    text-align: left;
}

.taste-current-list {
    margin-bottom: 20px;
    text-align: left;
}

.taste-current-list p {
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.taste-shuffle-btn {
    background: none;
    border: 1px solid #666666;
    color: var(--text-color);
    transition: color 0.3s ease;
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: border-color 0.2s ease;
}

.taste-shuffle-btn:hover:not(:disabled) {
    border-color: var(--text-color);
}

.taste-shuffle-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.investing-list {
    margin-bottom: 40px;
}

.investment-item {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 12px;
}

.investment-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.investment-link:hover {
    opacity: 0.8;
}

.investment-link.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.investment-link.inactive {
    color: #666666;
}

.investment-description {
    font-size: 1rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    font-style: italic;
}

.contact-info {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.contact-text {
    font-size: 1rem;
    line-height: 1.15;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* Theme Toggle Button */
.subtitle-section {
    position: relative;
}

/* Theme toggle uses same styling as social icons */
#theme-toggle {
    /* All styling inherited from .social-icon */
}

/* Circle toggle animation for light mode */
[data-theme="light"] .circle-fill {
    opacity: 1 !important;
}

[data-theme="dark"] .circle-fill {
    opacity: 0 !important;
}

.separator {
    margin: 0 4px;
    color: #666666;
    font-size: 1.2rem;
}

.experience-details-container {
    margin-top: 24px;
}

.experience-detail-item {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-detail-item.active {
    display: block;
    opacity: 1;
}

.experience-detail-item p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    max-width: none;
}

.experience-date {
    font-size: 0.9rem !important;
    color: #888888 !important;
    margin-bottom: 8px !important;
    font-style: italic;
    letter-spacing: 0.2px !important;
}

/* Responsive Design */


/* Play Section */
.play-category {
    margin-bottom: 24px;
}

.play-category-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.play-category-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.play-category-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    transition: color 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    padding: 12px 20px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 auto 24px auto;
    width: 100px;
    display: block;
}

.play-category-btn:hover {
    border-color: var(--text-color);
    opacity: 0.8;
}

.play-details-container {
    margin-top: 16px;
}

/* Weird Little Ideas Section */
.weird-ideas-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
}

.weird-ideas-link {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-top: 8px;
}

.weird-ideas-gif {
    margin-top: 20px;
    text-align: center;
}

.weird-ideas-gif {
    text-align: right;
}

.weird-ideas-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.weird-ideas-image:hover {
    opacity: 0.8;
}

/* Wait What Section */
.wait-what-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
}

.wait-what-link {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-top: 8px;
}

.wait-what-image {
    margin-top: 20px;
    text-align: center;
}

.wait-what-album {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.wait-what-album:hover {
    opacity: 0.8;
}

/* Writing Section */
.writing-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
}

.writing-link {
    font-size: 1.3rem;
    margin: 0;
}

.writing-brain-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.writing-brain-image:hover {
    opacity: 0.8;
}

/* Cirque Disobey Section */
.cirque-disobey-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
}

.cirque-disobey-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin: 0;
}

.cirque-disobey-link {
    font-size: 1.3rem;
    margin: 0;
}

.cirque-disobey-image {
    margin-top: 8px;
}

.cirque-disobey-book {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cirque-disobey-book:hover {
    transform: scale(1.02);
}


/* Taste Section */
.taste-subcategory {
    margin-bottom: 24px;
}

.taste-subcategory-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    text-transform: lowercase;
}

.taste-list p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.4;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.taste-link {
    margin-top: 16px;
}

.taste-link a {
    font-size: 0.9rem;
}

/* Music Navigation Styles */
.music-nav-container {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.music-nav-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.music-nav-item {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.music-nav-item:hover {
    opacity: 0.8;
}

.music-nav-item.selected {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.music-nav-item:not(.selected) {
    color: #666666;
}

.playlist-title-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
}

.playlist-tracks {
    text-align: left !important;
}

.nav-arrow {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
    line-height: 1;
}

.nav-arrow:hover {
    opacity: 0.7;
}

.nav-arrow-left {
    margin-right: 10px;
}

.nav-arrow-right {
    margin-left: 10px;
}

.playlist-thumbnail img {
    transition: opacity 0.2s ease;
}

.playlist-thumbnail:hover img {
    opacity: 0.8;
}

/* Syndicate Investment Styles */
.syndicate-names-container {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    text-align: left;
    line-height: 1;
}

.syndicate-name {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.syndicate-name:hover {
    opacity: 0.8;
}

.syndicate-name.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.syndicate-name.inactive {
    color: #666666;
}

.syndicate-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #999999;
    margin: 0 0 12px 0;
}

.syndicate-title-inline {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #999999;
    margin-right: 4px;
}

/* Tighter paragraph spacing for investment details */
.investment-detail-item p {
    margin-bottom: 8px;
}

.investment-detail-item p:last-child {
    margin-bottom: 0;
}

/* Crystal Quest Easter Egg */
.crystal-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in;
}

.crystal-modal-content {
    position: relative;
    margin: 2% auto;
    padding: 20px;
    width: 90%;
    max-width: 850px;
    background-color: #111111;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.crystal-modal-content h3 {
    color: var(--text-color);
    transition: color 0.3s ease;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.crystal-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    margin-top: -10px;
}

.crystal-close:hover {
    color: var(--text-color);
    transition: color 0.3s ease;
}

#crystal-game-frame {
    width: 100%;
    height: 600px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design - moved to end of file */

/* Shoe Collection Widget */
.shoe-collection-widget {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.shoe-carousel-container {
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    flex: 1;
}

.shoe-carousel {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px;
    gap: 20px;
}

.shoe-item {
    flex: none;
    width: 400px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.shoe-image {
    width: 360px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
}

.shoe-brand {
    font-size: 0.75rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    margin-bottom: 4px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.shoe-name {
    font-size: 0.85rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.2;
}

.shoe-colorway {
    font-size: 0.75rem;
    color: #aaaaaa;
    font-style: italic;
}

.collection-next-btn,
.collection-prev-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    flex: none;
}

.collection-next-btn:hover,
.collection-prev-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.collection-controls {
    position: absolute;
    top: 50%;
    left: -50px;
    right: -50px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.collection-prev-btn,
.collection-next-btn {
    pointer-events: auto;
}

/* Collection Toggle Links */
.collection-toggle-link {
    color: var(--inactive-color);
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.collection-toggle-link:hover {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.collection-toggle-link.active {
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration-thickness: 2px;
}

/* Combined Collection Widget */
.collection-widget {
    position: relative;
    margin-top: 20px;
    min-height: 380px;
}

.collection-view {
    display: none;
}

.collection-view.active {
    display: block;
}

/* Record Collection Widget */
.record-collection-widget {
    margin-top: 0;
}

/* Shoe Collection Widget */
.shoe-collection-widget {
    margin-top: 0;
}

.alphabet-navigation {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    height: 60px;
    cursor: grab;
    user-select: none;
    z-index: 10;
}

.alphabet-navigation:active {
    cursor: grabbing;
}

.alphabet-letter-stacked {
    position: absolute;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-weight: 400;
    transform-style: preserve-3d;
    left: 50%;
    top: 50%;
}

.alphabet-letter-stacked.active {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    transform: translate(-50%, -50%) scale(1);
    z-index: 5;
}

.alphabet-letter-stacked.adjacent {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    z-index: 4;
}

.alphabet-letter-stacked[data-position="-1"] {
    transform: translate(-50%, -50%) translateX(-40px) scale(0.9);
}

.alphabet-letter-stacked[data-position="1"] {
    transform: translate(-50%, -50%) translateX(40px) scale(0.9);
}

.alphabet-letter-stacked.distant {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    z-index: 3;
}

.alphabet-letter-stacked[data-position="-2"] {
    transform: translate(-50%, -50%) translateX(-70px) scale(0.8);
}

.alphabet-letter-stacked[data-position="2"] {
    transform: translate(-50%, -50%) translateX(70px) scale(0.8);
}

.alphabet-letter-stacked.far {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    z-index: 2;
}

.alphabet-letter-stacked[data-position="-3"] {
    transform: translate(-50%, -50%) translateX(-95px) scale(0.7);
}

.alphabet-letter-stacked[data-position="3"] {
    transform: translate(-50%, -50%) translateX(95px) scale(0.7);
}

.alphabet-letter-stacked:hover {
    color: rgba(255, 255, 255, 0.9);
}

.record-carousel-container {
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    height: 380px;
}

.record-carousel {
    display: flex;
    transition: transform 0.5s ease;
    padding: 80px 20px 20px;
    gap: 20px;
}

.record-item {
    flex: none;
    width: 280px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.record-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}


.record-cover-wrapper {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto 12px;
    overflow: hidden;
    border-radius: 4px;
}

.record-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease;
}

.record-item:hover .record-cover {
    transform: scale(1.05);
}


.record-artist {
    font-size: 0.75rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    margin-bottom: 4px;
    font-weight: 500;
}

.record-album {
    font-size: 0.85rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    font-weight: 600;
    line-height: 1.2;
}


/* Main Record Swiper */
.record-swiper-container {
    width: 100%;
    max-width: 500px;
    height: 280px;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.record-swiper {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.record-swiper.swiper-initialized {
    opacity: 1;
}

.record-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 240px;
}

.record-swiper .record-cover {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.95);
}

.record-swiper .swiper-button-next,
.record-swiper .swiper-button-prev {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.record-swiper .swiper-button-next:after,
.record-swiper .swiper-button-prev:after {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.record-swiper .record-artist {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    margin-bottom: 4px;
    font-weight: 500;
}

.record-swiper .record-album {
    font-size: 0.9rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    font-weight: 600;
    line-height: 1.2;
}

/* Shoe Swiper */
.shoe-swiper-container {
    width: 100%;
    max-width: 500px;
    height: 280px;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.shoe-swiper {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shoe-swiper.swiper-initialized {
    opacity: 1;
}

.shoe-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 320px;
}

.shoe-swiper .shoe-image {
    width: 240px;
    height: 140px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.95);
}

.shoe-swiper .swiper-button-next,
.shoe-swiper .swiper-button-prev {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.shoe-swiper .swiper-button-next:after,
.shoe-swiper .swiper-button-prev:after {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.shoe-swiper .shoe-brand {
    font-size: 0.75rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    margin-bottom: 4px;
    font-weight: 500;
}

.shoe-swiper .shoe-name {
    font-size: 0.85rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.2;
}

.shoe-swiper .shoe-colorway {
    font-size: 0.75rem;
    color: #aaaaaa;
    font-style: italic;
}

/* Jersey Swiper */
.jersey-swiper-container {
    width: 100%;
    max-width: 900px;
    height: 300px;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.jersey-swiper {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jersey-swiper.swiper-initialized {
    opacity: 1;
}

.jersey-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 15px 5px 5px 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 340px;
}

.jersey-swiper .jersey-image {
    width: 300px;
    height: 205px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.95);
}

.jersey-swiper .swiper-button-next,
.jersey-swiper .swiper-button-prev {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.jersey-swiper .swiper-button-next:after,
.jersey-swiper .swiper-button-prev:after {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.jersey-swiper .jersey-team {
    font-size: 0.75rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    margin-bottom: 4px;
    font-weight: 500;
}

.jersey-swiper .jersey-player {
    font-size: 0.85rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.2;
}

.jersey-swiper .jersey-number {
    font-size: 0.75rem;
    color: #aaaaaa;
    font-style: italic;
}

/* Mobile Responsive Design - Full Vertical Layout */
@media (max-width: 768px) {
    body {
        padding: 20px 15px; /* Consistent padding */
    }
    
    /* All containers become full-width vertical stacks */
    .container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
        width: 100%;
    }
    
    /* Override any grid layouts */
    .container.biography,
    .container.currently {
        display: flex;
        flex-direction: column;
    }
    
    /* All columns become full width */
    .left-column, 
    .right-column {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .container:first-child {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .heading-with-figure {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        gap: 15px;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .main-heading {
        font-size: 7.5rem; /* Back down to manageable size */
        line-height: 0.8;
        text-align: left;
        flex: 1; /* Take up maximum available width */
        min-width: 0; /* Allow text to use full space */
        white-space: normal; /* Allow line breaks for "hi, i'm" / "charlie" */
    }
    
    .walking-figure {
        flex-shrink: 0; /* Never compress the figure */
    }
    
    .walking-figure img {
        width: auto; /* Maintain natural proportions */
        height: 9rem; /* Scale with text size (7.5rem text = ~9rem figure) */
        max-width: none; /* Don't limit width */
    }
    
    .subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-top: 20px; /* Space above subtitle */
        width: 100%; /* Full width for center alignment */
    }
    
    .body-text {
        text-align: center;
        font-size: 1rem;
        width: 100%; /* Full width for center alignment */
        margin: 0 auto; /* Ensure centering */
    }
    
    .subtitle-section {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center; /* Center-align the icons */
        gap: 16px;
        margin-top: 10px; /* Reduce space above icons */
    }
    
    .left-column {
        padding-right: 0;
    }
    
    .bio-labels {
        justify-content: center;
        margin-bottom: 15px; /* Reduce space below bio labels */
        margin-top: 5px; /* Much less space between divider and work/create/think */
    }
    
    .bio-label {
        font-size: 1.8rem;
    }
    
    .bio-paragraph {
        font-size: 1.3rem; /* Match the narrative text size */
        line-height: 1.5;
        text-align: left;
    }
    
    /* Hide empty right column on mobile to save space */
    .dynamic-content:empty {
        display: none;
    }
    
    .biography .right-column:has(.dynamic-content:empty) {
        display: none;
    }
    
    .currently-heading {
        font-size: 3rem; /* Match section-heading size */
        text-align: center;
        margin-bottom: 15px;
    }
    
    .narrative-text {
        font-size: 1.3rem; /* Match the bio paragraph size */
        line-height: 1.4;
        text-align: left;
        margin-top: 20px;
    }
    
    .current-location {
        justify-content: center;
        margin-top: 10px;
    }
    
    .last-updated {
        text-align: center;
        margin-top: 15px;
    }
    
    .dynamic-content {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .experience-names-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
    }
    
    .experience-name-inline {
        font-size: 0.9rem;
    }
    
    .experience-detail-item {
        margin-top: 15px;
    }
    
    .experience-year {
        font-size: 0.8rem;
    }
    
    .experience-description {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    
    /* Mobile Swiper containers - properly centered and sized */
    .record-swiper-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 320px !important; /* More height for album text */
        margin: 0 auto !important;
        padding: 0 10px !important; /* Small padding for edge visibility */
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .shoe-swiper-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 280px !important; /* Good height for shoes */
        margin: 0 auto !important;
        padding: 0 10px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .jersey-swiper-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 280px !important; /* Good height for jerseys */
        margin: 0 auto !important;
        padding: 0 10px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .record-swiper, .shoe-swiper, .jersey-swiper {
        width: 100%;
        height: 100%;
        padding: 20px; /* Simpler mobile padding */
        overflow: visible;
    }
    
    /* Mobile slides - proper sizing for centering */
    .record-swiper .swiper-slide {
        width: auto !important; /* Let Swiper calculate based on slidesPerView */
        text-align: center !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 8px !important;
        padding: 15px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    
    .shoe-swiper .swiper-slide {
        width: auto !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 8px !important;
        padding: 15px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    
    .jersey-swiper .swiper-slide {
        width: auto !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 8px !important;
        padding: 15px 10px 20px 10px !important; /* Jerseys have good spacing already */
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    
    .record-swiper .record-cover {
        width: 120px !important;
        height: 120px !important;
        margin-bottom: 8px !important;
    }
    
    .shoe-swiper .shoe-image {
        width: 160px !important;
        height: 100px !important;
    }
    
    .jersey-swiper .jersey-image {
        width: 140px !important;
        height: 100px !important;
    }
    
    /* Mobile Swiper fallback - if Swiper fails to initialize */
    .record-swiper:not(.swiper-initialized),
    .shoe-swiper:not(.swiper-initialized),
    .jersey-swiper:not(.swiper-initialized) {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 10px !important;
        padding: 10px !important;
    }
    
    .record-swiper:not(.swiper-initialized) .swiper-slide,
    .shoe-swiper:not(.swiper-initialized) .swiper-slide,
    .jersey-swiper:not(.swiper-initialized) .swiper-slide {
        flex: 0 0 auto !important;
        scroll-snap-align: start !important;
        width: 120px !important;
    }
    
    .weird-ideas-content, .wait-what-content, .writing-content, .cirque-disobey-content {
        text-align: center;
    }
    
    .play-category-description {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .weird-ideas-image, .wait-what-album, .writing-brain-image, .cirque-disobey-book {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Reading navigation on mobile */
    .read-nav-buttons {
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .read-nav-button {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
    
    /* Reads content on mobile */
    .reads-container {
        text-align: center;
    }
    
    .reads-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
    }
    
    .reads-nav-item {
        font-size: 0.9rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    body {
        padding: 20px 12px;
    }
    
    .container {
        gap: 25px;
    }
    
    .main-heading {
        font-size: 3.8rem; /* Large even on small screens */
        white-space: normal; /* Allow natural line breaks */
        line-height: 0.8;
        max-width: none; /* Remove width limit for full span */
        flex: 1; /* Take up available space */
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon img {
        width: 16px;
        height: 16px;
    }
    
    .theme-toggle {
        width: 16px;
        height: 16px;
    }
    
    .theme-icon {
        font-size: 10px;
    }
    
    .bio-label {
        font-size: 1.6rem;
    }
    
    /* Collection swipers on very small screens */
    .record-swiper .record-cover {
        width: 100px;
        height: 100px;
    }
    
    .shoe-swiper .shoe-image {
        width: 150px;
    }
    
    .jersey-swiper .jersey-image {
        width: 160px;
        height: 100px;
    }
    
    /* Ensure touch targets are large enough and don't cause overflow */
    .swiper-button-next,
    .swiper-button-prev {
        width: 32px !important;
        height: 32px !important;
        margin-top: -16px; /* Center vertically */
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px; /* Smaller arrow icons */
    }
    
    /* Ensure Swipers never overflow viewport - CRITICAL for mobile layout */
    .dynamic-content {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Emergency mobile layout protection */
    .biography .right-column {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Force mobile Swiper to show single centered slide with proper snap */
    .record-swiper .swiper-wrapper,
    .shoe-swiper .swiper-wrapper,
    .jersey-swiper .swiper-wrapper {
        align-items: center !important;
    }
    
    /* Force proper slide centering on mobile */
    .record-swiper .swiper-slide-active,
    .shoe-swiper .swiper-slide-active,
    .jersey-swiper .swiper-slide-active {
        transform: translateX(0) !important; /* Force center position */
    }
    
    /* Ensure proper text spacing in mobile slides */
    .record-swiper .record-artist, .record-swiper .record-album,
    .shoe-swiper .shoe-brand, .shoe-swiper .shoe-name, .shoe-swiper .shoe-colorway,
    .jersey-swiper .jersey-team, .jersey-swiper .jersey-player, .jersey-swiper .jersey-number {
        margin: 2px 0 !important;
        line-height: 1.2 !important;
    }
    
    /* Force word wrapping in all mobile text */
    .bio-paragraph, .narrative-text, .contact-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }
    
    /* Mobile Album Covers Layout - force vertical stacking */
    .taste-content,
    .taste-content-with-thumbnails {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
    }
    
    /* Album thumbnails on mobile - hide desktop split layout */
    .album-thumbnails-left,
    .album-thumbnails-right {
        display: none !important; /* Hide desktop split layout */
    }
    
    /* Create new mobile album grid */
    .taste-content::after {
        content: "";
        display: block;
        width: 100%;
        margin-top: 20px;
    }
    
    /* Remove this duplicate - handled by .mobile-albums-grid .album-thumbnail below */
    
    /* Mobile albums container - show all 10 in 5x2 grid */
    .mobile-albums-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        gap: 6px !important;
        margin-top: 20px !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    /* Make sure mobile album grid is visible */
    .mobile-albums-grid .album-thumbnail {
        width: calc(20% - 5px) !important; /* 5 across with small gaps */
        height: auto !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .mobile-albums-grid .album-thumbnail img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
        object-fit: cover !important;
        border-radius: 3px !important;
    }
    
    /* Make album list title fit on one line */
    .goat-rappers-title {
        font-size: 1rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        width: 100% !important;
    }
    
    /* Reduce spacing between workplace names on mobile */
    .experience-names-row {
        gap: 4px 8px !important; /* Much smaller gaps */
        justify-content: space-evenly !important;
        flex-wrap: wrap !important;
        line-height: 1.2 !important;
    }
    
    .experience-name-inline {
        font-size: 0.85rem !important; /* Slightly smaller text */
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Lists Section */
.lists .section-heading {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin: 0;
    letter-spacing: -0.01em;
}

.list-navigation {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.nav-arrow {
    background: none;
    border: none;
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.2s ease;
    user-select: none;
}

.nav-arrow:hover {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-arrow:disabled {
    color: #444444;
    cursor: not-allowed;
}

.list-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin: 0;
    letter-spacing: -0.01em;
    text-align: center;
    justify-self: center;
}

.list-title-link {
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    transition: color 0.2s ease;
}

.list-title-link:hover {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.list-title-no-link {
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

.list-spotify-icon {
    width: 14px;
    height: 14px;
    margin-left: 6px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    vertical-align: middle;
}

.list-content {
    text-align: left;
    width: 100%;
    position: relative;
    left: 0;
}

.numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: list-counter;
}

.numbered-list li {
    counter-increment: list-counter;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-color);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
    text-indent: -20px;
    padding-left: 20px;
}

.numbered-list li::before {
    content: counter(list-counter) ". ";
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-weight: 500;
}

/* Goat Rappers List */
.goat-rappers-container {
    width: 100%;
}

.goat-rappers-title {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 25px 0;
    text-align: left;
    font-weight: 700;
    text-decoration: underline;
    padding-left: 60px;
}

.goat-rappers-list {
    text-align: left;
    padding-left: 5px;
}

.goat-rappers-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 15px !important;
    text-indent: -15px !important;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

/* Album Thumbnails */
.taste-content-with-thumbnails {
    display: flex;
    align-items: flex-start;
    gap: 0px;
}

.album-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 50px;
}

.album-thumbnail {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    transition: opacity 0.2s ease;
}

.album-thumbnail:hover {
    opacity: 0.8;
}

.album-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-thumbnails {
    order: 1;
}

.taste-list-content .goat-rappers-list {
    order: 2;
    flex: 1;
    margin: 0;
    padding-left: 15px;
}

.right-thumbnails {
    order: 3;
}

/* Music Lists Module */
.music-lists-navigation {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

/* Taste Lists Module */
.taste-lists-navigation {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: flex-start;
    margin-bottom: 25px;
    width: 100%;
}

/* Reads Navigation */
.reads-nav-container {
    display: block;
    margin-bottom: 20px;
    text-align: left;
}

.reads-nav-container > * {
    display: inline;
    margin-right: 8px;
}

.reads-nav-container > *:last-child {
    margin-right: 0;
}

.reads-nav-item {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.reads-nav-item:hover {
    opacity: 0.8;
}

.reads-nav-item.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.reads-nav-item.inactive {
    color: #666666;
}

.music-list-title {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    text-align: left;
    font-weight: 700;
    text-decoration: underline;
    padding-left: 60px;
}

.music-list-title-link {
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration: underline;
    font-weight: 700;
}

.music-list-title-link:hover {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.music-list-content {
    padding-left: 60px;
    text-align: left;
}

.music-list-items {
    text-align: left;
}

.music-list-items li {
    font-size: 1.3rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    text-align: left;
}

/* Favorite Reads Module */
.reads-navigation {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.reads-title {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    text-align: left;
    font-weight: 700;
    text-decoration: underline;
    padding-left: 60px;
}

.read-content {
    text-align: left;
}

.read-card-navigation {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 0;
}

.read-card-navigation .nav-arrow {
    margin-top: 0;
    position: relative;
    top: 0;
}

.read-card {
    flex-grow: 1;
    max-width: calc(100% - 80px);
    margin: 0 auto;
}

.read-title-with-rating {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.read-author {
    font-size: 1rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.read-rating {
    font-size: 1rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.read-genre {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Podcast Episodes Module */
.podcast-episode-navigation {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.podcast-navigation {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.podcast-title {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    text-align: center;
    justify-self: center;
}

.podcast-playlist-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    transition: color 0.2s ease;
}

.podcast-playlist-link:hover {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.podcast-episode {
    text-align: left;
    margin-bottom: 20px;
}

.episode-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin: 0 0 8px 0;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.episode-title-link {
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    transition: all 0.2s ease;
}

.episode-title-link:hover {
    opacity: 0.8;
}

.episode-show {
    font-size: 0.9rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.episode-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
}

.podcast-episode-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.podcast-thumbnail {
    flex-shrink: 0;
}

.podcast-thumbnail img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.podcast-text {
    flex: 1;
}

/* Favorite Reads Styling */
.reading-stats {
    margin-bottom: 25px;
}

.stats-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Music Stats Styling */
.music-stats {
    margin-bottom: 25px;
}

.music-stats .stats-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
}

.external-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    transition: color 0.2s ease;
}

.external-link:hover {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.reads-navigation {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.reads-title {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    text-align: center;
    justify-self: center;
}

.read-content {
    text-align: left;
}

.read-card {
    margin-bottom: 20px;
}

.read-title-with-rating {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    margin: 0 0 8px 0;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.read-author {
    font-size: 0.9rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.read-genre-rating {
    font-size: 0.9rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.read-summary {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Annual Reading List Styles */
.genre-nav-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.genre-nav-item {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.genre-nav-item:hover {
    opacity: 0.8;
}

.genre-nav-item.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.genre-nav-item.inactive {
    color: #666666;
}

.annual-book-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.annual-arrow {
    background: none;
    border: none;
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
    user-select: none;
    align-self: center;
    margin-top: 100px; /* Approximate middle of list */
}

.annual-arrow:hover {
    opacity: 0.7;
}

.annual-arrow:disabled {
    color: #444444;
    cursor: not-allowed;
}

.annual-arrow-placeholder {
    width: 2rem;
    align-self: center;
    margin-top: 100px;
}

/* This Year arrow styling - match annual arrows */
.thisyear-book-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
}

.thisyear-arrow {
    background: none;
    border: none;
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
    user-select: none;
    align-self: center;
    margin-top: 60px; /* Position near top of list */
}

.thisyear-arrow:hover {
    opacity: 0.7;
}

.thisyear-arrow-placeholder {
    width: 2rem;
    align-self: center;
    margin-top: 60px;
}

.annual-book-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.annual-book-list li {
    margin-bottom: 4px;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.book-title {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

/* Monthly This Year Reading Format */
.monthly-reads-container {
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.4;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.monthly-reads-list {
    margin: 0;
    padding: 0;
}

.monthly-section {
    margin-bottom: 20px;
}

.month-heading {
    font-size: 0.95rem;
    font-weight: normal;
    margin: 0 0 8px 0;
    color: var(--text-color);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.monthly-books {
    margin-left: 0;
}

.monthly-book {
    margin-bottom: 2px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.book-title-author {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.no-reads-message {
    font-size: 0.95rem;
    color: var(--inactive-color);
    transition: color 0.3s ease;
    font-style: italic;
    margin: 20px 0;
}

.favorite-book-link {
    background: rgba(255, 255, 0, 0.15);
    padding: 1px 3px;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.favorite-book-link:hover {
    background: rgba(255, 255, 0, 0.25);
}

.narrative-link {
    color: var(--text-color);
    transition: color 0.3s ease;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.narrative-link:hover {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}