/* Font personalizzato */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600;900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff; /* Sfondo bianco */
    color: #333333; /* Testo scuro di default */
    overflow-x: hidden;
}

/* Animazione sfondo gradiente (ora bianco/chiaro) */
.gradient-bg {
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f8fafc 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Effetto vetro per i placeholder dei loghi */
.logo-placeholder {
    background: rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(5px);
    border: 2px dashed rgba(220, 38, 38, 0.2); /* Bordo rosso tenue */
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    border-color: rgba(220, 38, 38, 0.8); /* Rosso acceso al passaggio del mouse */
    background: rgba(220, 38, 38, 0.05);
    transform: scale(1.02);
    color: #dc2626; /* Icona rossa */
}

/* Particelle di sfondo (Rosse) */
.particle {
    position: absolute;
    background: rgba(220, 38, 38, 0.4); /* Particelle rosse */
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transition: transform 0.1s linear;
}

/* Animazione testo */
@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(220, 38, 38, 0); }
    50% { text-shadow: 0 0 30px rgba(220, 38, 38, 0.4); } /* Alone rosso */
}

.glow-text {
    animation: pulse-glow 3s infinite;
}

/* Animazione di entrata */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- OVERRIDES PER TESTO ROSSO --- */
/* Forziamo il colore rosso ignorando le classi Tailwind dell'HTML */

h1 span {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #dc2626 !important; /* Rosso Coming Soon */
}

p {
    color: #dc2626 !important; /* Rosso Stay Tuned */
}

/* Colore della X tra i loghi */
.text-slate-600 {
    color: #ef4444 !important;
}


.loading-dots::after {
    content: ''; 
    animation: dots-cycle 1.5s infinite steps(4, end);
    display: inline-block;
    width: 1.5em; 
    text-align: left;
}

/* Ciclo dei puntini */
@keyframes dots-cycle {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}