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

:root {
    --primary-blue: #0051c3;
    --dark-blue: #003681;
    --accent-blue: #4693ff;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
}

html {
    scroll-behavior: smooth;
}

/* Language Toggle */
.lang-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    gap: 0;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(70, 147, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--text-light);
    background: rgba(0, 81, 195, 0.3);
}

.lang-btn.active {
    color: var(--text-light);
    background: var(--primary-blue);
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
    width: 100%;
    margin: 0 auto;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 1.8rem 0 2rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 54, 129, 0.4) 0%,
        rgba(10, 10, 10, 0.8) 70%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.artist-name {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 81, 195, 0.5);
}

/* Stream Everywhere Section */
.stream-everywhere {
    margin-bottom: 1.5rem;
}

.stream-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.stream-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stream-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stream-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.stream-link svg {
    width: 22px;
    height: 22px;
}

.stream-spotify {
    background: #1DB954;
}

.stream-spotify:hover {
    background: #1ed760;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.6);
}

.stream-ytmusic {
    background: #FF0000;
}

.stream-ytmusic:hover {
    background: #ff3333;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.6);
}

.stream-apple {
    background: linear-gradient(45deg, #FA233B, #FB5C74);
}

.stream-apple:hover {
    background: linear-gradient(45deg, #FB5C74, #FC8090);
    box-shadow: 0 4px 15px rgba(250, 35, 59, 0.6);
}

.stream-amazon {
    background: #FF9900;
}

.stream-amazon:hover {
    background: #ffad33;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.6);
}

.stream-deezer {
    background: #A238FF;
}

.stream-deezer:hover {
    background: #b560ff;
    box-shadow: 0 4px 15px rgba(162, 56, 255, 0.6);
}

.stream-tidal {
    background: #000000;
    border-color: rgba(255, 255, 255, 0.3);
}

.stream-tidal:hover {
    background: #1a1a1a;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.stream-soundcloud {
    background: #FF5500;
    border-color: #FF5500;
}

.stream-soundcloud:hover {
    background: #e64d00;
    border-color: #FF5500;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.6);
}

.stream-link-disabled {
    background: rgba(128, 128, 128, 0.3) !important;
    opacity: 0.5;
    cursor: default;
    border-color: rgba(128, 128, 128, 0.3);
}

.stream-link-disabled:hover {
    transform: none;
    box-shadow: none;
    background: rgba(128, 128, 128, 0.3) !important;
}

/* Muted stream links - gray by default, colorful on hover */
.stream-links-muted .stream-link {
    background: rgba(128, 128, 128, 0.4);
}

.stream-links-muted .stream-spotify:hover {
    background: #1DB954;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.6);
}

.stream-links-muted .stream-ytmusic:hover {
    background: #FF0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.6);
}

.stream-links-muted .stream-apple:hover {
    background: linear-gradient(45deg, #FA233B, #FB5C74);
    box-shadow: 0 4px 15px rgba(250, 35, 59, 0.6);
}

.stream-links-muted .stream-amazon:hover {
    background: #FF9900;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.6);
}

.stream-links-muted .stream-deezer:hover {
    background: #A238FF;
    box-shadow: 0 4px 15px rgba(162, 56, 255, 0.6);
}

.stream-links-muted .stream-tidal:hover {
    background: #000000;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.stream-links-muted .stream-soundcloud:hover {
    background: #FF5500;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.6);
}

.song-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.release-info {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Release Sections */
.release-section {
    margin: 1.5rem 0;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(70, 147, 255, 0.2);
    border-radius: 12px;
    text-align: center;
}

.release-section-new {
    background: rgba(29, 185, 84, 0.1);
    border-color: rgba(29, 185, 84, 0.4);
    padding-left: 1rem;
    padding-right: 1rem;
}

.release-section-out {
    background: rgba(0, 81, 195, 0.1);
    border-color: rgba(70, 147, 255, 0.3);
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.badge-new {
    background: linear-gradient(135deg, #1DB954, #1ed760);
    color: #fff;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(29, 185, 84, 0.5); }
    50% { box-shadow: 0 0 15px rgba(29, 185, 84, 0.8); }
}

.badge-out {
    background: var(--primary-blue);
    color: #fff;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.release-subtitle {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    margin: 0.25rem 0 0.75rem 0;
}

.spotify-embed {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Hero Two-Column Layout - Mobile first */
.hero-columns {
    display: flex;
    flex-direction: column;
}

.hero-column-left {
    order: 2;
}

.hero-column-right {
    order: 1;
}

/* Hero Two-Column Layout (Desktop) */
@media (min-width: 900px) {
    .hero-columns {
        flex-direction: row;
        gap: 2rem;
        align-items: stretch;
        width: 100%;
    }

    .hero-column-left {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        order: 1;
    }

    .hero-column-right {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        order: 2;
    }

    .hero-column-left .release-section,
    .hero-column-right .release-section {
        margin: 0;
    }

    .hero-column-left .release-section-out {
        margin: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-column-right .release-section {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
}

/* Featured Release (Folded Galaxies) */
.featured-release {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.featured-cover {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.featured-info {
    text-align: left;
}

.featured-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.featured-type {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.cta-presave {
    background: #1DB954;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.4);
}

.cta-presave:hover {
    background: #1aa34a;
    box-shadow: 0 6px 30px rgba(29, 185, 84, 0.6);
}

/* Upcoming Inline (in hero) */
.upcoming-inline {
    margin: 1.5rem 0 2rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 81, 195, 0.15);
    border: 1px solid rgba(70, 147, 255, 0.3);
    border-radius: 8px;
    display: inline-block;
}

.upcoming-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}

.upcoming-title-inline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    background: rgba(0, 81, 195, 0.2);
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.teaser-link:hover {
    background: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 81, 195, 0.4);
}

.teaser-link svg {
    width: 18px;
    height: 18px;
}

/* New Release Boxes */
.new-release-boxes {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0 2rem;
}

.release-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 81, 195, 0.15);
    border: 1px solid rgba(70, 147, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.release-box:hover {
    background: rgba(0, 81, 195, 0.25);
    border-color: rgba(70, 147, 255, 0.5);
    transform: translateY(-2px);
}

.release-cover {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.release-info-box {
    text-align: left;
}

.release-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}

.release-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.release-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.presave-box {
    background: rgba(29, 185, 84, 0.15);
    border-color: rgba(29, 185, 84, 0.4);
}

.presave-box:hover {
    background: rgba(29, 185, 84, 0.25);
    border-color: rgba(29, 185, 84, 0.6);
}

.presave-box svg {
    color: #1DB954;
    flex-shrink: 0;
}

.presave-info {
    text-align: left;
}

.presave-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1DB954;
    margin-bottom: 0.25rem;
}

.presave-cta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Upcoming Section */
.upcoming-section {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg-dark);
    border-top: 1px solid rgba(70, 147, 255, 0.2);
}

.upcoming-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.upcoming-song {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    background: rgba(0, 81, 195, 0.1);
    border: 1px solid rgba(70, 147, 255, 0.3);
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upcoming-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.upcoming-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Links Section */
.links-section {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg-darker);
}

.links-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0, 81, 195, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Signature Gear Subsection */
.signature-gear-subsection {
    margin: 0 auto;
    max-width: 1200px;
    padding-top: 3rem;
    margin-top: 4rem;
    border-top: 2px solid rgba(218, 165, 32, 0.4);
}

.signature-gear-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #daa520;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.signature-gear-content {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.signature-gear-gallery {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-height: 350px;
}

.signature-gear-photo {
    flex: 1;
    min-width: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(218, 165, 32, 0.3);
    background: rgba(10, 10, 10, 0.6);
    transition: border-color 0.3s ease;
}

.signature-gear-photo:hover {
    border-color: rgba(218, 165, 32, 0.6);
}

.signature-gear-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.signature-gear-info {
    flex: 0 0 250px;
}

.one-of-a-kind-badge {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #daa520;
    border: 1px solid rgba(218, 165, 32, 0.5);
    border-radius: 3px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 12px rgba(218, 165, 32, 0.15);
}

.signature-gear-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.signature-gear-specs {
    list-style: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.signature-gear-specs .spec-label {
    color: rgba(218, 165, 32, 0.7);
    font-weight: 600;
    margin-right: 0.25rem;
}

.signature-gear-specs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.signature-gear-specs a:hover {
    color: #daa520;
}

@media (max-width: 1024px) {
    .signature-gear-content {
        flex-direction: column;
        align-items: center;
    }

    .signature-gear-gallery {
        width: 100%;
    }

    .signature-gear-info {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .signature-gear-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .signature-gear-section {
        padding: 2rem 1rem 3rem;
    }

    .signature-gear-gallery {
        flex-direction: column;
        max-height: none;
    }
}

/* Guitar Rig Section */
.gear-section {
    padding: 2rem 2rem 4rem;
    background: var(--bg-darker);
    border-top: 1px solid rgba(70, 147, 255, 0.2);
}

.gear-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gear-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.gear-item:hover {
    transform: translateY(-5px);
}

.gear-image-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(70, 147, 255, 0.2);
    background: rgba(10, 10, 10, 0.6);
    margin-bottom: 1rem;
}

.gear-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gear-item:hover .gear-image {
    transform: scale(1.05);
}

.gear-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* Former Gear subsection */
.former-gear-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin: 2.5rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.former-gear-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.former-gear-grid .gear-item {
    width: 200px;
}

.former-gear-grid .gear-image {
    object-fit: contain;
}

@media (max-width: 1024px) {
    .gear-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .gear-section {
        padding: 3rem 1rem;
    }

    .gear-title {
        font-size: 2rem;
    }

    .gear-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gear-name {
        font-size: 0.875rem;
    }
}

/* History Section */
.history-section {
    padding: 4rem 2rem;
    background: var(--bg-dark);
    border-top: 1px solid rgba(70, 147, 255, 0.2);
}

.history-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-blue));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    background: var(--primary-blue);
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
    transform: translateX(-6px);
}

.timeline-item.timeline-current .timeline-marker {
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

.timeline-item.timeline-hiatus .timeline-marker {
    background: var(--text-muted);
}

.timeline-date {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.timeline-subtitle {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.timeline-content strong {
    color: var(--accent-blue);
}

.timeline-events {
    list-style: none;
    margin-bottom: 1rem;
}

.timeline-events li {
    color: var(--text-muted);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.timeline-events li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.event-date {
    color: var(--accent-blue);
    font-weight: 600;
    margin-right: 0.5rem;
}

.timeline-note {
    font-style: italic;
    color: var(--text-muted);
    opacity: 0.7;
}

.album-note {
    margin: 1rem 0;
    overflow: hidden;
}

.album-note-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin: 0 0 0.75rem 0;
}

.album-note-cover {
    float: left;
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin: 0 1rem 0.5rem 0;
}

.album-note .timeline-note {
    margin: 0;
}

/* Timeline Gallery */
.timeline-gallery {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.timeline-gallery img {
    width: calc(33.333% - 0.35rem);
    min-width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(70, 147, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 81, 195, 0.4);
}

.timeline-gallery img.pos-top {
    object-position: top;
}

/* Timeline Media Links */
.timeline-media {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.media-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    background: rgba(0, 81, 195, 0.2);
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.media-link:hover {
    background: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 81, 195, 0.4);
}

.media-link svg {
    width: 18px;
    height: 18px;
}

/* Tracklist Grid */
.tracklist-status {
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.tracklist-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.track-item {
    width: calc(33.333% - 0.35rem);
    min-width: 100px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(70, 147, 255, 0.2);
    background: rgba(0, 20, 50, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.track-item .track-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.track-item .track-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
}

/* Track states */
.track-item.track-pending {
    opacity: 0.5;
}

.track-item.track-in-progress {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.track-item.track-completed {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.track-item.track-completed::after {
    content: "";
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 16px;
    height: 16px;
    background: #4CAF50;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.track-item.track-completed {
    position: relative;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    }
}

.track-item:hover {
    transform: scale(1.02);
}

/* Hiatus styling */
.timeline-hiatus .timeline-content {
    opacity: 0.7;
}

.timeline-hiatus .timeline-date {
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background: var(--bg-darker);
    border-top: 1px solid rgba(70, 147, 255, 0.1);
}

footer p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Visits Counter - hidden but still counting */
.visits-counter {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.visits-badge {
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 1.3rem 0 2rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .artist-name {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .release-section {
        padding: 1rem 0.75rem;
        margin: 1rem 0;
    }

    .featured-cover {
        width: 60px;
        height: 60px;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .links-section {
        padding: 3rem 1.5rem;
    }

    .history-section {
        padding: 3rem 1rem;
    }

    .history-title {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 1rem;
    }

    .timeline-gallery img {
        width: calc(50% - 0.25rem);
        height: 100px;
    }

    .timeline-gallery img:nth-child(3) {
        display: none;
    }

    .timeline-media {
        flex-direction: column;
    }

    .media-link {
        justify-content: center;
    }

    .track-item {
        width: calc(50% - 0.25rem);
        height: 100px;
    }

    .track-item .track-name {
        font-size: 0.75rem;
    }

    .track-item .track-duration {
        font-size: 0.7rem;
    }
}
