/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animated Gradient Background - purple/pink/blue */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Helvetica Neue', sans-serif;
    color: white;
    background: linear-gradient(-45deg, #5a0081, #8325ac, #1223c0,#8325ac, #5a0081);
    background-size: 400% 400%;
    animation: gradientBG 18s ease infinite;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Main Container */
.maintenance-container {
    text-align: center;
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Worker Image */
.worker-image {
    width: 200px;
    height: auto;
    filter: grayscale(100%) brightness(1.3);
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}
.worker-image:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Glow Effect Behind Image */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,165,255,0.6) 0%, rgba(212,165,255,0) 70%);
    filter: blur(40px);
    animation: glowPulse 3s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes glowPulse {
    0% { transform: translate(-50%, -55%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -55%) scale(1.15); opacity: 1; }
    100% { transform: translate(-50%, -55%) scale(1); opacity: 0.6; }
}

/* Maintenance Text */
.maintenance-message {
    font-size: 1.4em;
    color: #d4a5ff;
    margin-top: 15px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
