/* Toast de logro desbloqueado - estilo NOWEY */
.logro-toast {
    position: fixed;
    bottom: 24px;
    right: -400px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #070f16;
    border: 1px solid #00b7ff;
    box-shadow: 0 0 12px rgba(0, 183, 255, 0.5), 0 0 24px rgba(57, 255, 20, 0.15);
    border-radius: 10px;
    padding: 12px 18px;
    z-index: 9999;
    transition: right 0.4s ease-out;
    font-family: 'Chakra Petch', sans-serif;
    color: #fff;
    max-width: 320px;
}

.logro-toast.mostrar {
    right: 24px;
}

.logro-toast-icono img {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 0 6px #39ff14);
}

.logro-toast-texto {
    display: flex;
    flex-direction: column;
}

.logro-toast-titulo {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff7b00;
    font-family: 'Orbitron', sans-serif;
}

.logro-toast-nombre {
    font-size: 15px;
    font-weight: 600;
    color: #00b7ff;
}
