:root {
    --primary-purple: #9b87f5;
    --dark-purple: #1A1F2C;
    --light-purple: #D6BCFA;
    --secondary-purple: #7E69AB;
}

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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1f2c 0%, #2d1f54 100%);
    padding: 1rem;
    font-family: 'MedievalSharp', cursive;
    color: #fff;
    overflow-x: hidden;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.15s ease, opacity 0.15s ease;
    box-shadow: 0 0 10px rgba(155, 135, 245, 0.3);
}

.cursor.active {
    transform: scale(0.7);
}

#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.content-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 28rem;
}

.info-boxes {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
}

.info-box {
    flex: 1;
    background: rgba(155, 135, 245, 0.1);
    border: 1px solid rgba(155, 135, 245, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.info-box-label {
    font-size: 0.7rem;
    color: rgba(214, 188, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-box-value {
    font-size: 1rem;
    color: var(--light-purple);
    font-weight: bold;
}

.info-box-value.clickable:hover {
    transform: scale(1.05);
}

.profile-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(43, 36, 70, 0.9), rgba(26, 31, 44, 0.9));
    border: 2px solid rgba(155, 135, 245, 0.25);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.profile-image-container {
    position: relative;
    width: 8rem;
    height: 8rem;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(155, 135, 245, 0.5);
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: #4ade80;
    border: 2px solid #fff;
    border-radius: 50%;
}

.username {
    font-size: 1.5rem;
    background: linear-gradient(to right, #e2e8f0, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bio {
    color: rgba(214, 188, 250, 0.8);
    text-align: center;
    font-style: italic;
}