body {
    font-family: 'Outfit', sans-serif;
    background-color: #020617;
}

.glass-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(51, 65, 85, 0.4);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

button {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

button:active:not(:disabled) {
    transform: translateY(0) scale(0.96);
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.4);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}

@keyframes dice-wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg) scale(1.1);
    }

    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

.animate-dice {
    animation: dice-wiggle 0.2s ease-in-out infinite;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 0 20px 4px rgba(245, 158, 11, 0.15);
    }
}

.pulse-gold {
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin-slow {
    animation: spin-slow 3s linear infinite;
}

.lb-row-enter {
    animation: slideUp 0.3s ease-out forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes debtor-pulse {
    0%, 100% {
        text-shadow: 0 0 4px rgba(244, 63, 94, 0.4);
    }
    50% {
        text-shadow: 0 0 16px rgba(244, 63, 94, 0.8), 0 0 32px rgba(244, 63, 94, 0.3);
    }
}

.debtor-name {
    animation: debtor-pulse 2s ease-in-out infinite;
    color: #f43f5e;
}

@keyframes neon-glow {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.5)) drop-shadow(0 0 12px rgba(168, 85, 247, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 24px rgba(168, 85, 247, 0.4));
    }
}

.neon-dice {
    animation: neon-glow 2s ease-in-out infinite;
}

@keyframes confiscated-shake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px); }
    20% { transform: translateX(2px); }
    30% { transform: translateX(-1px); }
    40% { transform: translateX(1px); }
    50% { transform: translateX(0); }
}

.confiscated-item {
    animation: confiscated-shake 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes clicker-tap {
    0% { transform: scale(1); }
    50% { transform: scale(0.92); }
    100% { transform: scale(1); }
}

.clicker-tap {
    animation: clicker-tap 0.15s ease-out;
}

.debtor-badge {
    background: linear-gradient(135deg, #881337, #e11d48);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.title-badge {
    background: linear-gradient(135deg, #1e1b4b, #4338ca);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a5b4fc;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@keyframes error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.error-shake {
    animation: error-shake 0.3s ease-in-out 2;
}

@keyframes success-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); }
    100% { transform: scale(1); }
}

.success-pop {
    animation: success-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interactive-card {
    transition: all 0.3s ease;
}

.interactive-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(15, 23, 42, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}


.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
