/* Custom styling for Poker Bet Trainer WebAssembly */

.glass-panel {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-modal {
    background: rgba(10, 13, 20, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-t: 1px solid rgba(255, 255, 255, 0.15);
}

/* Card Suit Colors */
.suit-hearts, .suit-diamonds {
    color: #ef4444; /* Crimson Red */
}

.suit-spades, .suit-clubs {
    color: #f8fafc; /* Crisp White */
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.6);
}

/* Range Matrix Grid Custom Animations */
.range-cell {
    transition: all 0.15s ease-in-out;
}

.range-cell:hover {
    transform: scale(1.15);
    z-index: 10;
}

/* Bottom Sheet Slide Up Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Pulse Glows */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
    }
}

.pulse-glow-active {
    animation: pulseGlow 2s infinite ease-in-out;
}