@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
        
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #000428, #004e92);
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.container {
    animation: fadeIn 2s ease-in-out;
    background: rgba(255, 255, 255, 0.15);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
}
.loader {
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid #00d4ff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #00d4ff;
}
p {
    font-size: 1.4em;
    font-weight: 300;
    margin: 10px 0;
}
.status-message {
    font-weight: 700;
    font-size: 1.6em;
    color: #ffeb3b;
}
.status {
    margin-top: 20px;
    font-size: 1.4em;
    color: #ffeb3b;
}
.status-up {
    color: #00d400; /* Verde per servizio attivo */
}
.status-down {
    color: #ff0000; /* Rosso per manutenzione */
}
.status-link {
    margin-top: 20px;
    font-size: 1.2em;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 700;
}
.home-button {
    margin-top: 20px;
    padding: 15px 25px;
    font-size: 1.2em;
    background-color: #00d4ff;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.home-button:hover {
    background-color: #009fcc;
}
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: url('https://i.imgur.com/9oAE3WZ.png');
    opacity: 0.2;
    animation: float 10s infinite alternate ease-in-out;
}
@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}