body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.maintenance-container {
    max-width: 600px;
    padding: 40px;
    background: #34495e;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 1px solid #46637f;
    animation: fadeIn 1s ease-in-out;
}

.icon-wrapper {
    font-size: 5rem;
    color: #e67e22;
    margin-bottom: 20px;
    position: relative;
    height: 100px;
}

.gear-big { animation: spin 4s linear infinite; }
.gear-small {
    font-size: 3rem;
    position: absolute;
    top: 40px; left: 55%;
    color: #d35400;
    animation: spin-reverse 4s linear infinite;
}

.maintenance-container h1 { font-size: 2rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.maintenance-container p { color: #bdc3c7; font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; }

.contact-info {
    margin-top: 30px; padding-top: 20px;
    border-top: 1px solid #46637f;
    font-size: 0.9rem; color: #95a5a6;
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }