* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Apply the custom cursor to body which will cascade to all elements */
body {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur862.ani), 
           url(http://cur.cursors-4u.net/cursors/cur-9/cur862.png), 
           progress !important; 
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.profile-section {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.profile-image {
    flex: 0 0 400px;
}
.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 2px solid #2f2f2f;
}
.profile-content {
    flex: 1;
}
.username {
    font-size: 3.5rem;
    color: #b4ff00;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}
.bio p {
    margin-bottom: 1rem;
}
.contact-links {
    margin: 2rem 0;
}
.link {
    display: inline-block;
    color: #b4ff00;
    text-decoration: none;
    margin-right: 2rem;
    font-size: 1.1rem;
    position: relative;
}
.link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
.link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #b4ff00;
    transition: width 0.3s ease;
}
.link:hover:after {
    width: 100%;
}
.title {
    font-size: 1.2rem;
    color: #666666;
    letter-spacing: 0.1em;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .profile-image {
        flex: 0 0 300px;
    }
    .username {
        font-size: 2.5rem;
    }
    .contact-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .link {
        margin-right: 0;
    }
}

