/* --- SPLASH SCREEN CUSTOM --- */
#custom-splash-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

/* Il box bianco principale */
#custom-splash-screen .splash-content {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #ddd;
}

/* La cornicetta interna (Passepartout) - Ora colorata color oro/bronzo chiaro o grigio caldo */
#custom-splash-screen .splash-content::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    border: 1.5px solid #e2a857; /* Un bell'oro/bronzo leggero che dà tono, oppure usa #2452a3 per il blu */
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
}

/* Titolo: Rosso promozionale elegante e deciso */
#custom-splash-screen h2 {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d12626; /* Rosso per catturare l'attenzione. Se preferisci il blu del logo usa: #1a529b */
    margin-top: 10px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* Sottotitolo/Testo descrittivo */
#custom-splash-screen p {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Pulsante di chiusura X */
#custom-splash-screen #close-splash {
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    color: #888888;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

#custom-splash-screen #close-splash:hover {
    color: #d12626;
    transform: scale(1.1);
}