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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #0a0a0f;
    min-height: 100vh;
    height: 100vh;
    color: white;
    overflow-y: auto;
    overflow-x: hidden;
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    z-index: 0;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
    padding: 38vh 20px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.profile {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

#profileName {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

#profileBio {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    white-space: pre-line;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    width: 100%;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 480px;
    margin-bottom: 28px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(15px);
    gap: 12px;
    position: relative;
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.01);
}

.link-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.link-icon i {
    font-size: 22px;
}

.link-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

.link-text {
    flex: 1;
    text-align: center;
    font-size: 15px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.music-player {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 28px;
}

.music-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.album-art {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.music-info {
    flex: 1;
    min-width: 0;
}

.song-title {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff;
}

.artist {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.play-pause {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-pause:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.music-controls {
    margin-top: 10px;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.lyrics-container {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-height: 60px;
    overflow: hidden;
}

.lyrics {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    text-align: center;
    transition: all 0.3s ease;
    white-space: pre-line;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: auto;
    padding-top: 8px;
    padding-bottom: 20px;
    width: 100%;
}

.footer a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
    .container {
        padding: 36vh 16px 16px;
    }
    
    #profileName {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    #profileBio {
        font-size: 14px;
    }
    
    .profile {
        margin-bottom: 16px;
    }
    
    .social-icons {
        margin-bottom: 22px;
    }
    
    .links {
        margin-bottom: 22px;
    }
    
    .music-player {
        margin-bottom: 22px;
        padding: 14px 16px;
    }
    
    .link-item {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 24px;
        gap: 10px;
    }
    
    .link-icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    
    .link-icon i {
        font-size: 18px;
    }
    
    .link-icon img {
        width: 26px;
        height: 26px;
    }
    
    .link-text {
        font-size: 14px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .album-art {
        width: 48px;
        height: 48px;
    }
    
    .song-title {
        font-size: 14px;
    }
    
    .play-pause {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .lyrics {
        font-size: 12px;
    }
    
    .footer {
        font-size: 11px;
        padding-top: 4px;
        padding-bottom: 16px;
    }
}