/* Global Styles */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #1a1a2e, #16213e);
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

/* Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* S'assurer qu'il est interactif */
}

#particles-js canvas {
    z-index: 0;
    pointer-events: auto; /* Autoriser les clics sur le canvas */
}

.container {
    text-align: center;
    position: relative;
}

/* Full Name Styling */
.full-name {
    font-size: 3rem;
    letter-spacing: 0.2rem;
    opacity: 1;
    text-align: center;
}

/* Letter Styling */
.letter {
    display: inline-block;
    transform-origin: center;
    position: relative;
    background: inherit; /* Hérite du dégradé du parent */
    background-size: 300%;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientMove 5s linear infinite;
}

/* Animation for Gradient Movement */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
