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

body {
    min-height: 100vh;
    background-color: #0a0a14;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.profile-image {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border: 4px solid #5865F2;
    box-shadow: 0 0 30px #5865F2;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.name {
    font-size: 3.75rem;
    font-weight: bold;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #5865F2, #7289DA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    color: white;
    transition: all 0.3s;
    transform: scale(1);
}

.social-icon:hover {
    color: #5865F2;
    transform: scale(1.1);
}

.social-icon svg {
    width: 2rem;
    height: 2rem;
}

.email-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid #5865F2;
}

.email-container svg {
    color: #5865F2;
}

.email-container span {
    font-size: 1.125rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slideUp {
    animation: slideUp 1s ease-out forwards;
}