* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
}

body {
    background: radial-gradient(circle at center, #111111, #050505);
    color: #f0f0f0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.bio-container {
    max-width: 480px;
    width: 100%;
    background: linear-gradient(145deg, #141416, #0d0d0f);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 2px 0 rgba(255, 255, 255, 0.05) inset;
    position: relative;
}

.bio-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff00c8, #00c3ff, #1DB954);
    opacity: 0.8;
    z-index: 5;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(34, 11, 91, 0.9), rgba(16, 8, 40, 0.7)), url('/api/placeholder/600/200');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.glass-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 12, 0.4);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-top: 80px;
}

.profile-header {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.menu-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.profile-pic-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: 
        linear-gradient(#131315, #131315) padding-box,
        linear-gradient(145deg, #ff00c8, #00c3ff, #1DB954) border-box;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        0 0 0 5px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-pic::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(145deg, #ff00c8, #00c3ff, #1DB954);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.profile-status {
    position: absolute;
    bottom: 10px;
    right: 5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1DB954;
    border: 3px solid #131315;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.name-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ffffff, #c0c0c0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.verified-badge {
    width: 22px;
    height: 22px;
    background: linear-gradient(45deg, #1a91da, #2aa5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    box-shadow: 0 2px 6px rgba(26, 145, 218, 0.5);
}

.verified-badge svg {
    width: 14px;
    height: 14px;
}

.profile-handle {
    font-size: 16px;
    color: #c792ea;
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 0.9;
}

.profile-description {
    font-size: 16px;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 35px;
    position: relative;
    padding: 0 20px;
}

.profile-description::before,
.profile-description::after {
    content: '"';
    font-size: 40px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    font-family: Georgia, serif;
}

.profile-description::before {
    top: -20px;
    left: 0;
}

.profile-description::after {
    bottom: -40px;
    right: 0;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    margin: 20px 0;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    font-size: 20px;
    color: #1DB954;
}

.spotify-player {
    background: linear-gradient(145deg, #121212, #181818);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(30, 215, 96, 0.2);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.spotify-player::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(30, 215, 96, 0.15) 0%, rgba(30, 215, 96, 0) 70%);
    border-radius: 50%;
}

.spotify-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.spotify-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spotify-logo {
    width: 24px;
    height: 24px;
}

.spotify-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.spotify-controls {
    display: flex;
    gap: 8px;
}

.control-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.control-button.play {
    background: #1DB954;
    color: #000000;
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.control-button.play:hover {
    background: #1ed760;
    transform: scale(1.05);
}

.now-playing {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.now-playing::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #1DB954;
    border-radius: 2px;
}

.track-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
    background: #2a2a2a;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.track-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-info {
    flex: 1;
}

.track-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.track-artist {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 8px;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 6px;
}

.progress-bar {
    height: 100%;
    width: 35%;
    background: #1DB954;
    border-radius: 2px;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.track-time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #a0a0a0;
    margin-top: 6px;
}

.track-status {
    display: flex;
    align-items: center;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    height: 14px;
    gap: 2px;
    margin-left: 8px;
}

.eq-bar {
    width: 3px;
    background-color: #1DB954;
    border-radius: 1.5px;
    animation: equalize 1.2s ease-in-out infinite;
}

.eq-bar:nth-child(1) {
    height: 4px;
    animation-delay: 0s;
}

.eq-bar:nth-child(2) {
    height: 8px;
    animation-delay: 0.2s;
}

.eq-bar:nth-child(3) {
    height: 6px;
    animation-delay: 0.4s;
}

.eq-bar:nth-child(4) {
    height: 10px;
    animation-delay: 0.6s;
}

@keyframes equalize {
    0%, 100% {
        transform: scaleY(0.8);
    }
    50% {
        transform: scaleY(1.2);
    }
}

.buttons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 14px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(5px);
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.5s ease;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.button:hover::before {
    left: 100%;
}

.button-spotify {
    background: linear-gradient(145deg, rgba(29, 185, 84, 0.2), rgba(29, 185, 84, 0.1));
    border-color: rgba(29, 185, 84, 0.3);
    grid-column: span 2;
}

.button-spotify:hover {
    background: linear-gradient(145deg, rgba(29, 185, 84, 0.3), rgba(29, 185, 84, 0.15));
    border-color: rgba(29, 185, 84, 0.5);
}

.button-api {
    background: linear-gradient(145deg, rgba(87, 119, 240, 0.2), rgba(87, 119, 240, 0.1));
    border-color: rgba(87, 119, 240, 0.3);
}

.button-api:hover {
    background: linear-gradient(145deg, rgba(87, 119, 240, 0.3), rgba(87, 119, 240, 0.15));
    border-color: rgba(87, 119, 240, 0.5);
}

.button-chat {
    background: linear-gradient(145deg, rgba(255, 73, 131, 0.2), rgba(255, 73, 131, 0.1));
    border-color: rgba(255, 73, 131, 0.3);
}

.button-chat:hover {
    background: linear-gradient(145deg, rgba(255, 73, 131, 0.3), rgba(255, 73, 131, 0.15));
    border-color: rgba(255, 73, 131, 0.5);
}

.button-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-text {
    font-size: 16px;
    font-weight: 500;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.2;
}

.glow-1 {
    background: #ff00c8;
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.glow-2 {
    background: #00c3ff;
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.glow-3 {
    background: #1DB954;
    width: 150px;
    height: 150px;
    bottom: 140px;
    right: -30px;
    opacity: 0.15;
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 30px 20px;
    }

    .profile {
        padding-top: 60px;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-description {
        font-size: 14px;
    }

    .buttons-container {
        grid-template-columns: 1fr;
    }

    .button-spotify {
        grid-column: span 1;
    }

    .button {
        padding: 14px 18px;
    }

    .now-playing {
        flex-direction: column;
        align-items: flex-start;
    }

    .track-thumbnail {
        margin-bottom: 15px;
    }

    .track-info {
        width: 100%;
    }
}
