/* Songs section styles */
.songs-section {
    margin: 3rem 0 2rem 0;
}

.song-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.song-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 2rem;
    gap: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.song-cover {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    background: #fff;
}

.song-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.song-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.song-streaming-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.song-streaming-links .streaming-link {
    padding: 0.4rem 1rem;
    border-radius: 8px;
    background: #f7f7f7;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: background 0.2s;
}
.song-streaming-links .streaming-link:hover {
    background: #e0e0e0;
}

.song-lyrics details {
    margin-top: 0.5rem;
    font-size: 1rem;
}
.song-lyrics pre {
    font-family: inherit;
    background: #f7f7f7;
    padding: 1rem;
    border-radius: 8px;
    white-space: pre-wrap;
    margin: 0.5rem 0 0 0;
}
/* Banner styles */
.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 2.5rem 0;
    padding-top: 1.5rem;
}

.banner-image {
    width: 100%;
    max-width: 700px;
    height: 80px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    background: transparent;
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-image-container {
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

/* Main content */
.main-content {
    flex: 1;
}

.bio-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

/* Streaming links */
.streaming-links {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.streaming-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.streaming-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.streaming-link:hover::before {
    left: 100%;
}

.streaming-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.link-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.link-icon svg {
    width: 100%;
    height: 100%;
}

/* Platform-specific colors */
.spotify {
    background: linear-gradient(135deg, #1db954, #1ed760);
}

.apple-music {
    background: linear-gradient(135deg, #fa233b, #ff6b6b);
}

.youtube {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.soundcloud {
    background: linear-gradient(135deg, #ff5500, #ff7700);
}

.amazon-music {
    background: linear-gradient(135deg, #00a8cc, #0099bb);
}

.tidal {
    background: linear-gradient(135deg, #000000, #333333);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .profile-section {
        padding: 2rem 1.5rem;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .streaming-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .bio-section,
    .streaming-links {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .profile-section {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .name {
        font-size: 1.75rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .streaming-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .link-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
}
