/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Overview Section */
.overview-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding-top: 80px;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-slider-container {
    position: relative;
}

.profile-slider {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    border: 3px solid rgba(255, 215, 0, 0.2);
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.slider-controls {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Keyboard Controls */
.keyboard-controls {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.control-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.control-row:last-child {
    margin-bottom: 0;
}

.keyboard-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.control-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Control Knobs */
.control-knob {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-knob:hover {
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.knob-center {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.knob-pointer {
    width: 3px;
    height: 25px;
    background: linear-gradient(180deg, #ffd700, #ff6b6b);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.3s ease;
}

.knob-labels {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.knob-label {
    position: absolute;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 500;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

/* Control Sliders */
.control-slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    width: 100px;
}

.control-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    cursor: pointer;
    appearance: none;
}

.control-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.control-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
}

.control-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Control Button */
.control-button {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    border: 2px solid rgba(255, 107, 107, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.control-button:hover {
    border-color: rgba(255, 107, 107, 0.7);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.4);
    transform: scale(1.05);
}

.control-button:active {
    transform: scale(0.95);
}

.button-center {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-icon {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.6rem;
    color: #ccc;
}

.overview-text {
    color: #fff;
}

.overview-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-style: italic;
}

.bio-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Songs Section */
.songs-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #16213e 0%, #0a0a0a 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.song-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.song-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.song-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.song-card:hover .song-image img {
    transform: scale(1.05);
}

.song-content {
    padding: 1.5rem;
}

.song-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.audio-player {
    margin-bottom: 1rem;
}

.audio-player audio {
    width: 100%;
    border-radius: 10px;
}

.lyrics-toggle {
    margin-bottom: 1rem;
}

.lyrics-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lyrics-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.lyrics-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.lyrics-content h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.lyrics-text {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.lyrics-text p {
    margin-bottom: 1rem;
}

.lyrics-text strong {
    color: #ffd700;
}

/* Song and Musician Links */
.song-link,
.musician-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.song-link:hover,
.musician-link:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.song-actions,
.musician-actions {
    margin-top: 1rem;
    text-align: center;
}

.detail-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Musicians Section */
.musicians-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.musicians-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.musician-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.musician-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.musician-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.musician-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.musician-card:hover .musician-image img {
    transform: scale(1.05);
}

.musician-content {
    padding: 1.5rem;
}

.musician-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.instrument {
    color: #ffd700;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.musician-story p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Documentary Section */
.documentary-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.documentary-content {
    text-align: center;
}

.documentary-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.episode-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.episode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
}

.episode-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.episode-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.episode-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-slider {
        width: 300px;
        height: 300px;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .songs-grid,
    .musicians-grid,
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-controls {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .keyboard-controls {
        padding: 1rem;
    }
    
    .control-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .keyboard-control {
        min-width: 100px;
    }
    
    .control-knob {
        width: 60px;
        height: 60px;
    }
    
    .knob-center {
        width: 45px;
        height: 45px;
    }
    
    .control-slider-container {
        width: 80px;
    }
    
    .control-button {
        width: 50px;
        height: 50px;
    }
    
    .button-center {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .profile-slider {
        width: 250px;
        height: 250px;
    }
    
    .overview-text h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .song-content,
    .musician-content {
        padding: 1rem;
    }
    
    .episode-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Detail Page Styles */
.breadcrumb {
    background: rgba(10, 10, 10, 0.9);
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff6b6b;
}

.breadcrumb span {
    color: #ccc;
}

/* Song Detail Page */
.song-detail-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: calc(100vh - 160px);
}

.song-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.song-detail-image {
    text-align: center;
}

.song-detail-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.song-detail-info {
    color: #fff;
}

.song-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.song-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.audio-player-large {
    margin-bottom: 2rem;
}

.audio-player-large audio {
    width: 100%;
    border-radius: 10px;
}

.song-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.meta-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700;
}

.lyrics-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lyrics-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.lyrics-content-large {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1rem;
}

.lyrics-content-large .verse,
.lyrics-content-large .chorus,
.lyrics-content-large .bridge,
.lyrics-content-large .refrain {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.lyrics-content-large h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lyrics-content-large p {
    margin-bottom: 0.5rem;
}

.lyrics-content-large em {
    color: #ff6b6b;
    font-style: italic;
}

.experimental-note {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

/* Musician Detail Page */
.musician-detail-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: calc(100vh - 160px);
}

.musician-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.musician-detail-image {
    text-align: center;
}

.musician-detail-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.musician-detail-info {
    color: #fff;
}

.musician-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.musician-alias {
    font-size: 1.2rem;
    color: #ff6b6b;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.musician-instrument {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 500;
    margin-bottom: 2rem;
}

.musician-story-large {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.musician-story-large p {
    margin-bottom: 1.5rem;
}

.musician-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.collaborations-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.collaborations-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.collaboration-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #ffd700;
}

.collaboration-item h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.collaboration-role {
    color: #ff6b6b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.collaboration-description {
    color: #e0e0e0;
    line-height: 1.6;
}

.back-button-container {
    text-align: center;
    margin-top: 2rem;
}

.back-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design for Detail Pages */
@media (max-width: 768px) {
    .song-detail-content,
    .musician-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .song-title,
    .musician-name {
        font-size: 2rem;
    }
    
    .song-meta,
    .musician-meta {
        grid-template-columns: 1fr;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
}
