* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /* fallback when image doesnt work for some reason */
    background: linear-gradient(135deg, #918dcf 0%, #0074d3 100%);

    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    background-image: url('background_compressed.jpg');

}


@keyframes slideInFromAbove {
    20% {
        opacity: 0%;
        transform: translateY(-10%);
    }



    100% {
        opacity: 100%;
        transform: translateY(0%);
    }
}


.bio-card {
    border: 2px solid rgb(255, 167, 236);
    border-radius: 10px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Black with opacity/see-through */
    background-color: rgba(71, 51, 70, 0.37);
    backdrop-filter: blur(20px);

    animation: 0.7s ease-out 0s slideInFromAbove;
}

.pfp-stack {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: 10px;

}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e566ff, #29b6f6);
    color: white;
    box-shadow: 0 5px 15px rgba(246, 41, 137, 0.3);
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.cat-ears {
    z-index: 2;
    position: absolute;
    width: 145px;
    height: 145px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


h1 {
    font-size: 2.5rem;
    margin-bottom: 1px;
    font-weight: 500;
    background: linear-gradient(90deg, rgb(255, 73, 249), rgb(255, 255, 255));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

}

.tagline {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ebc1ff;
    font-weight: 300;
}

.bio-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #edceff;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.discord-section {
    background: rgba(114, 137, 218, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.discord-icon {
    color: #7289da;
    font-size: 1.5rem;
}

.discord-text {
    font-weight: 500;
    color: #7289da;
}

.music-section {
    border: 3px solid rgb(237, 146, 255);
    margin-bottom: 15px;
    background: rgba(207, 165, 255, 0.308);
    border-radius: 15px;
    padding: 10px;
}

.song-title {
    font-size: 1.1rem;
    color: #aae0ff;
    font-weight: 250;
}


.song-artist {
    font-size: 0.7rem;
    color: #aae0ff;
    font-weight: 250;
}

.cover-image {
    border: 2px solid rgb(237, 146, 255);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(246, 41, 137, 0.3);
}

.music-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.play-button {
    background: linear-gradient(135deg, #a268ff, #29b6f6);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px #a268ff
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}


.volume-slider {
    width: 75px;
}

.music-note {
    font-size: 0.7rem;
    color: #353535;
    margin-top: 5px;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(167, 90, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #29b6f6;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(167, 90, 255, 1);
    color: white;
    transform: translateY(-3px);
}

/* Hide the audio element */
audio {
    display: none;
}


@media (max-height: 700px) {
    .bio-card {

        max-width: 400px;
        max-height: 630px;
    }

    .profile-image {
        width: 80px;
        height: 80px;
    }

    h1 {
        font-size: 2rem;
    }

    .bio-text {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .music-controls {
        flex-direction: column;
        gap: 5px;
    }

    .social-links {
        margin-top: 15px;

    }

    .social-link {
        width: 16px;
        height: 16px;
    }

    .music-section {
        margin-bottom: 10px;
    }
}