* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor */
}

body {
    background-color: #000; /* Fallback color */
    color: #fff;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1; /* Move behind content */
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    text-align: center;
    z-index: 2;
}

.profile {
    position: relative;
    z-index: 2;
    padding: 20px;
    background-color: rgba(35, 36, 40, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.05);
    display: inline-block;
    backdrop-filter: blur(3px);
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
}

.uid {
    color: #666;
    margin-bottom: 15px;
}

.status {
    color: #fff;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.discord-link {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.discord-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Custom cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999;
    left: 0; 
    top: 0;
    transition: width 0.2s ease, height 0.2s ease; /* Only transition size */
    transform: translate(-50%, -50%);
}

.cursor::before {
    content: '+';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.cursor.hover {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Discord tag hover effect */
.discord-tag {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.9em;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.discord-link:hover .discord-tag {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}
