body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #ffffff;
    overflow: hidden;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    perspective: 1000px; /* Add perspective for 3D transforms */
}

.pfp {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.username {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: transform 0.1s ease-out; /* Changed from text-shadow */
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25),
        0 10px 10px rgba(0,0,0,.2),
        0 20px 20px rgba(0,0,0,.15);
}

.socials {
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s; /* Stagger animation */
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.social-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

#view-counter, #like-counter {
    position: relative; /* Changed to relative so they can stack */
    margin-top: 15px; /* Added margin for spacing */
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    letter-spacing: 1px;
}

#like-button {
    background-color: #e03a55; /* Roblox red-ish color */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    outline: none;
    margin-bottom: 10px;
}

#like-button:hover {
    background-color: #ff526d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 58, 85, 0.4);
}

#like-counter p {
    margin: 5px 0 0; /* Adjust spacing for the likes count text */
}