/* Reset generale */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0a0a0a; /* Sfondo nero profondo per risaltare il font */
}

/* Sfondo animato */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Contenitore Scritta */
.main-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    pointer-events: none;
}

/* Applicazione Font Anta */
.logo-text {
    font-family: 'Anta', sans-serif;
    color: #ffffff;
    font-size: clamp(3rem, 10vw, 7rem); /* Dimensione fluida in base allo schermo */
    font-weight: 400; /* Anta ha un solo peso solitamente */
    text-transform: uppercase;
    letter-spacing: 0.2em; /* Spaziatura generosa tipica del design tech */
    margin: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    pointer-events: auto;
    user-select: none; /* Impedisce la selezione accidentale del testo */
}

/* Ottimizzazione per Mobile */
@media (max-width: 600px) {
    .logo-text {
        letter-spacing: 0.1em;
    }
}