/* Contenedor del mensaje */
.neon-hytale-msg {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;

    padding: 12px 18px;
    border-radius: 8px;

    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: #7CFF00;
    background: rgba(10, 20, 10, 0.75);

    border: 1px solid rgba(124, 255, 0, 0.6);

    box-shadow:
        0 0 6px rgba(124, 255, 0, 0.6),
        0 0 12px rgba(124, 255, 0, 0.4),
        inset 0 0 6px rgba(124, 255, 0, 0.3);

    backdrop-filter: blur(6px);
    animation: neonPulse 2.5s infinite alternate;
}

/* Animación neón */
@keyframes neonPulse {
    from {
        box-shadow:
            0 0 6px rgba(124, 255, 0, 0.5),
            0 0 12px rgba(124, 255, 0, 0.3),
            inset 0 0 6px rgba(124, 255, 0, 0.2);
    }
    to {
        box-shadow:
            0 0 10px rgba(124, 255, 0, 0.9),
            0 0 22px rgba(124, 255, 0, 0.6),
            inset 0 0 10px rgba(124, 255, 0, 0.4);
    }
}