/* Artist Hero */
.artist-hero {
    margin-top: 80px;
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.artist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #601f1b, transparent);
}

.artist-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
}

.artist-image-wrapper {
    position: relative;
}

.artist-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(96, 31, 27, 0.4);
}

.artist-name {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artist-role {
    font-size: 20px;
    color: #601f1b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.artist-bio {
    font-size: 15px;
    color: #aaa;
    line-height: 1.8;
    max-width: 600px;
}

.artist-bioinfo {
    font-size: 16px;
    color: #d4d4d4;
    line-height: 1.8;
    max-width: 600px;
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #601f1b;
}

/* Tracks Grid */
.tracks-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.track-item {
    background: #0a0a0a;
    padding: 16px 20px;
    border: none;
    transition: all 0.2s ease;
    cursor: pointer;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 16px;
    align-items: center;
}

.track-item:hover {
    background: #111;
}

.play-btn {
    width: 40px;
    height: 40px;
    background: #601f1b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.play-btn:hover {
    background: #7a2824;
    transform: scale(1.1);
}

.play-btn svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    margin-left: 2px;
}

.play-btn.playing {
    background: #4a1614;
}

.play-btn.playing svg {
    margin-left: 0;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.track-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.track-meta {
    font-size: 13px;
    color: #888;
}

.track-type {
    display: inline-block;
    background: rgba(96, 31, 27, 0.2);
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: #601f1b;
    font-weight: 600;
    margin-top: 6px;
    width: fit-content;
    white-space: nowrap;
}

.track-duration {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #601f1b;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.back-link:hover {
    gap: 15px;
    opacity: 0.8;
}

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

/* Responsive */
@media (max-width: 768px) {
    .artist-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }

    .artist-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .artist-name {
        font-size: 42px;
    }

    .artist-bio,
    .artist-bioinfo {
        margin: 0 auto;
    }

    .content-section {
        padding: 0 20px;
    }

    .track-item {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .track-info {
        order: 2;
    }

    .play-btn {
        order: 1;
        margin: 0 auto;
    }

    .track-duration {
        order: 3;
    }
}