/* Base class for the neon card layout */
.pinball-neon-card {
    border: 2px solid #fff !important; /* Crisp white inner cabinet edge */
    transition: all 0.3s ease-in-out;
}

/* Color Variant: Cosmic Blue Glow (Added !important) */
.neon-glow-blue {
    box-shadow: 0 0 10px #007bff, 0 0 20px #0056b3, inset 0 0 5px #007bff !important;
}
.neon-glow-blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #fff, 0 0 30px #007bff, inset 0 0 10px #007bff !important;
}

/* Color Variant: High-Score Orange Glow (Added !important) */
.neon-glow-orange {
    box-shadow: 0 0 10px #fd7e14, 0 0 20px #b65002, inset 0 0 5px #fd7e14 !important;
}
.neon-glow-orange:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #fff, 0 0 30px #fd7e14, inset 0 0 10px #fd7e14 !important;
}