/* ===============================
   Fondo con degradado rojo más oscuro
   =============================== */
body.construction-bg {
    min-height: 100vh;               
    margin: 0;
    display: flex;
    justify-content: center;          
    align-items: center;              
    /* Rojo oscuro más profundo a rojo intenso oscuro */
    background: linear-gradient(135deg, #4B0000, #8B0000);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

/* ===============================
   Contenedor central del mensaje
   =============================== */
.container {
    text-align: center;
    padding: 2rem 3rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);   /* Fondo un poco más oscuro */
    box-shadow: 0 8px 20px rgba(0,0,0,0.5); /* Sombra más marcada */
}

/* ===============================
   Icono de construcción
   =============================== */
.icon span {
    font-size: 5rem;                  
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: bounce 1.5s infinite;  
}

/* ===============================
   Mensaje principal
   =============================== */
.message {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6); /* sombra más visible */
}

/* ===============================
   Mensaje secundario
   =============================== */
.sub-message {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===============================
   Animaciones
   =============================== */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===============================
   Responsivo
   =============================== */
@media (max-width: 600px) {
    .message {
        font-size: 2rem;
    }
    .sub-message {
        font-size: 1rem;
    }
    .icon span {
        font-size: 4rem;
    }
}
