/* Style 2: Modern*/

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%; 
    animation: gradientShift 15s ease infinite; 
    color: #ffffff; 
    font-family: 'Montserrat', sans-serif; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    text-align: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.box {
    text-align: center;
    max-width: 550px; 
    padding: 50px;
    background: rgba(0, 0, 0, 0.4); 
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3); 
    backdrop-filter: blur(5px); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    box-sizing: border-box;
    width: 100%;
}

.box img.maintenance-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 35px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3)); 
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 2.8em; 
    margin-bottom: 20px;
    font-weight: 700; 
    text-shadow: 0 1px 3px rgba(0,0,0,0.2); 
    color: #ffffff; 
}

p {
    font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9; 
}


@media (max-width: 768px) {
    .box {
        padding: 40px;
        max-width: 90%;
    }
    h1 {
        font-size: 2.2em;
    }
    p {
        font-size: 1.1em;
    }
    .box img.maintenance-logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .box {
        padding: 30px;
        border-radius: 8px;
    }
    h1 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    p {
        font-size: 1em;
    }
    .box img.maintenance-logo {
        max-width: 150px;
        margin-bottom: 25px;
    }
}