* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f39c12;
    --text-dark: #333;
    --text-light: #666;
    --background: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f7fa; /* fondo claro neutro */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 40px 20px; /* algo de espacio para que no quede pegado */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.maintenance-img {
    max-width: 500px; /* antes 250px */
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.message {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.countdown {
    padding: 20px;
    background: var(--background);
    border-radius: 10px;
    margin-top: 30px;
}

.countdown-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 650;
    
}

footer {
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .maintenance-img {
        max-width: 260px; /* antes 200px */
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .maintenance-img {
        max-width: 200px; /* antes 150px */
    }
}