/* Neon Effect */
.neon-text {
    text-shadow: 0 0 5px #e67e22, 0 0 10px #e67e22, 0 0 20px #e67e22;
    animation: neon-pulse 1.5s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    from { text-shadow: 0 0 5px #e67e22, 0 0 10px #e67e22; }
    to { text-shadow: 0 0 10px #f39c12, 0 0 20px #f39c12, 0 0 30px #f39c12; }
}

.glow {
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% { text-shadow: 0 0 5px rgba(230,126,34,0.5); }
    50% { text-shadow: 0 0 20px rgba(230,126,34,0.8); }
    100% { text-shadow: 0 0 5px rgba(230,126,34,0.5); }
}

/* Card Neon Border Effect */
.product-card, .saldo-card, .admin-section {
    transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover, .saldo-card:hover, .admin-section:hover {
    box-shadow: 0 0 20px rgba(230,126,34,0.3);
}