/* --- STILI ISOLATI PER IL CONTENUTO DEL POPUP --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');


/* Poi applichi il font dove vuoi */
body, * {
    font-family: 'Roboto', sans-serif;
}

/* L'overlay deve essere nascosto di default */
.modal {
    display: none; 
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    
    /* Centratura */
    display: none; /* Cambiamo in flex solo via JS */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1a1a1a;
    width: 90%;
    max-width: 700px;
    height: 450px; /* Altezza fissa */
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
    overflow: hidden;
}

.close {
    position: absolute;
    right: 15px;
    top: 5px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    transition: all 0.4s ease;
    cursor: pointer;
}

.close:hover { color: #DD0000; }

.logo-popup img {
    display: flex;
    justify-content: center;
    width: 80%;
    margin-bottom: 1em;
}

/* Centratura totale del contenuto */
.pop-container {
        display: flex;
        flex-direction: column;
        align-items: center;       /* Centra gli elementi (logo, titolo, ecc.) */
        text-align: center;
        width: 100%;
    }

.pop-title {
    margin-bottom: 15px;
    color: #DD0000; /* Rosso */
    text-transform: uppercase;
    font-size: clamp(18px, 5vw, 32px);
    text-transform: uppercase;
    font-weight: 700;
}

.pop-text {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
