:root {
    --primary-color: #4a90e2;
    --secondary-color: #f39c12;
    --background-color: #f5f6fa;
    --text-color: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.maintenance-container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    position: relative;
}

.gear-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
}

.gear {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gear::before {
    content: '⚙️';
    font-size: 5rem;
    animation: spin 4s linear infinite;
}

.gear-1 {
    top: 10%;
    left: 10%;
}

.gear-2 {
    top: 50%;
    right: 15%;
}

.gear-3 {
    bottom: 20%;
    left: 20%;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: bounce 2s ease infinite;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.fun-text {
    margin: 2rem 0;
    line-height: 1.6;
}

.fun-text p {
    margin: 0.5rem 0;
}

.progress-container {
    margin: 2rem 0;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress {
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 0%; }
}

.mini-game {
    margin-top: 3rem;
}

#catch-me {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 1rem 0;
}

#catch-me:hover {
    transform: scale(1.1);
}

#score {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .maintenance-container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--background-color);
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

footer p {
    margin: 0.3rem 0;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
} 