/* Custom Styling for Spatial AR Potion Bar */

body {
    background-color: #0A0A0E;
    font-family: 'Outfit', sans-serif;
    user-select: none;
    -webkit-user-select: none;
}

/* Glassmorphism utility */
.bg-glassBg {
    background: rgba(15, 15, 25, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Custom Scrollbar for Ingredient Deck */
::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.8);
}

/* Ingredient Card Glow Effects */
.ingredient-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ingredient-card:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.25);
}

/* Pulse Glow Animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
    }
}

.glow-active {
    animation: pulseGlow 2s infinite;
}

.topHeader {
    top: 4rem;
    position: relative;
}