* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #202124;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.logo-container {
    margin-bottom: 30px;
}

.animated-logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logo-pulse 3s ease-in-out infinite alternate;
}

p {
    font-size: 1.1rem;
    color: #5f6368;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #5f6368;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #34a853;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.anime-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.anime-1 {
    width: 30px;
    height: 30px;
    background-color: #4285f4;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.anime-2 {
    width: 20px;
    height: 20px;
    background-color: #ea4335;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.anime-3 {
    width: 25px;
    height: 25px;
    background-color: #fbbc05;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes logo-pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .maintenance-container {
        padding: 40px 30px;
    }
    
    .animated-logo {
        font-size: 3rem;
    }
    
    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 30px 20px;
    }
    
    .animated-logo {
        font-size: 2.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animated-logo,
    .status-dot,
    .floating-element {
        animation: none;
    }
}