/* GG */

:root {
    --primary-color: #3b82f6;
    --text-color: #e2e8f0;
    --background-color: #1a1b1e;
    --card-background: #27282b;
    --hover-color: #60a5fa;
    --secondary-text: #94a3b8;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.profile {
    background-color: rgba(39, 40, 43, 0.8);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-image {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
    padding: 3px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: var(--hover-color);
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.7);
}

h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bio {
    color: var(--secondary-text);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.social-link:hover {
    background-color: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    width: 24px;
    text-align: center;
}

.social-link span {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }

    .profile {
        padding: 1.5rem;
    }

    .profile-image {
        width: 96px;
        height: 96px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .bio {
        font-size: 1rem;
    }
}