html, body {
    height: 100%;
    margin: 0;
}

#cursor {
    position: fixed;
    top: 0; 
    left: 0;
    width: 20px; 
    height: 20px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: left 0.05s ease, top 0.05s ease;
    z-index: 99999;
    backdrop-filter: blur(2px);
    opacity: 1;
    mix-blend-mode: difference;
}

#cursor.active {
    background-image: url('files/cursor.webp');
    background-color: #ffffff00;
    backdrop-filter: blur(0px);
    height: 30px;
    width: 30px;
    transition: transform 0.4s ease;
}

body {
    background-image: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwallpapercave.com%2Fwp%2Fwp2771916.jpg&f=1&nofb=1&ipt=f3a2617664647e8d41109c5bb11965e21033023775159fdf5e4882d6c16a8a6b');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px);
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-y: hidden;
    cursor: none !important;
}

#header {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#firstContent {
    background-color: rgba(116, 100, 143, 0.425);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(90, 56, 150, 0.452);
    width: 550px;
    height: 390px;
    position: relative;
}

#viewsContainer {
    display: flex;
}

#viewsCount {
    margin-top: 1px !important;
    margin-left: 7px;
}

#profilePicture {
    margin-top: 20px;
    border-radius: 100px;
    width: 120px;
}

#displayName {
    font-size: 28px;
}

#username {
    opacity: 0.8;
    font-size: 18px;
    margin-top: -10px;
}

#profileBio {
    text-align: center;
    width: 400px;
}

#container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#secondContent {
    background-color: rgba(116, 100, 143, 0.425);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(90, 56, 150, 0.452);
    width: 550px;
    height: 120px;
    position: relative;
}

#thirdContent {
    background-color: rgba(116, 100, 143, 0.425);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(90, 56, 150, 0.452);
    width: 400px;
    height: 50px;
    position: relative;
}

#contactEmail {
    font-size: 16px;
    text-align: center;
    height: 100%;
    width: 100%;
    line-height: 1.8;
    opacity: 0.6;
}

#socials {
    display: flex;
    gap: 10px;
    margin-top: 38px;
    justify-content: center;
}

.social-link svg {
    color: aliceblue;
    stroke: none;
    display: flex;
    fill: none;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-out;
    cursor: none;
}

.social-link svg:hover {
    transform: scale(1.1);
}

.social-link[data-platform="youtube"] svg:hover  { color: #FF0000 !important; }
.social-link[data-platform="discord"] svg:hover  { color: #5865F2; }
.social-link[data-platform="email"] svg:hover    { color: #D44638; }
.social-link[data-platform="steam"] svg:hover    { color: #00ADEE; }
.social-link[data-platform="kick"] svg:hover     { color: #6bff31; }
.social-link[data-platform="namemc"] svg:hover   { color: #00B894; }
.social-link[data-platform="github"] svg:hover   { color: #181717; }
.social-link[data-platform="twitch"] svg:hover   { color: #9146FF; }
.social-link[data-platform="roblox"] svg:hover   { color: #000000; }

@media (max-width: 600px) {
    #firstContent, #secondContent {
        width: 90%;
    }

    #profileBio {
        width: 90%;
    }

    #thirdContent {
        width: 90%;
    }
}