@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(244, 114, 182, 0.5); }
    50% { text-shadow: 0 0 20px rgba(244, 114, 182, 0.8), 0 0 30px rgba(244, 114, 182, 0.6); }
}

.glow-text {
    animation: glow 2s ease-in-out infinite;
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.scanning-active {
    display: block !important;
    animation: scanLine 2s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Custom checkbox styling for menu */
.menu-item-checkbox:checked + div {
    background-color: rgba(244, 114, 182, 0.2);
    border-color: rgba(244, 114, 182, 0.8);
}

.menu-item-checkbox:checked + div .check-icon {
    opacity: 1;
    transform: scale(1);
}

.check-icon {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease-in-out;
}

.perspective-1000 { perspective: 1000px; }
.transform-style-3d { transform-style: preserve-3d; }
.backface-hidden { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.transform-rotateY-180 { transform: rotateY(180deg); }
.flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }
.touch-none { touch-action: none; }
