/* Estilos para la estructura principal del layout */
.bg-overlay {
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.85));
    background-size: cover;
    background-attachment: fixed;
}

/* Estilo para la barra de navegación móvil */
.mobile-nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.75rem;
    padding: 0.5rem 0;
    width: 100%;
}

.mobile-nav-button i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.mobile-nav-button.active {
    color: #3b82f6;
}

/* Ajuste para evitar que el footer quede tapado */
@media (max-width: 768px) {
    footer {
        display: none; /* Ocultar el footer en dispositivos móviles */
    }
}

/* Fondo principal */
.bg-minecraft {
    background-image: url('/images/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}