/* hotpot.css */

.bg-pot {
    background-color: #1a0a05;
    background-image: radial-gradient(#3a1505 1px, transparent 1px);
    background-size: 20px 20px;
}

.hotpot-card {
    width: 60px;
    height: 90px;
    background-color: #fff;
    border: 3px solid #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    user-select: none;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hotpot-card {
        width: 80px;
        height: 120px;
        font-size: 48px;
        border-width: 4px;
        border-radius: 12px;
    }
}

.hotpot-card.back {
    background: linear-gradient(135deg, #ea580c, #9a3412);
    border-color: #7c2d12;
}

.hotpot-card.back .inner {
    font-size: 32px;
    color: rgba(255,255,255,0.8);
}
@media (min-width: 640px) {
    .hotpot-card.back .inner {
        font-size: 48px;
    }
}

.hotpot-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.hotpot-card.selectable:hover {
    cursor: pointer;
    border-color: #f97316;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

.hotpot-card.hidden-card {
    background: linear-gradient(135deg, #334155, #0f172a);
    border-color: #1e293b;
}

/* Category backgrounds and borders */
.hotpot-card[data-category="fruits"] { background: #14532d; border-color: #22c55e; color: #fff; }
.hotpot-card[data-category="berries"] { background: #7f1d1d; border-color: #ef4444; color: #fff; }
.hotpot-card[data-category="vegetables"] { background: #713f12; border-color: #eab308; color: #fff; }
.hotpot-card[data-category="bakery"] { background: #7c2d12; border-color: #f97316; color: #fff; }
.hotpot-card[data-category="meat"] { background: #831843; border-color: #ec4899; color: #fff; }
.hotpot-card[data-category="sweets"] { background: #581c87; border-color: #a855f7; color: #fff; }
.hotpot-card[data-category="drinks"] { background: #1e3a8a; border-color: #3b82f6; color: #fff; }
.hotpot-card[data-category="greens"] { background: #3f6212; border-color: #84cc16; color: #fff; }
.hotpot-card[data-category="seafood"] { background: #164e63; border-color: #06b6d4; color: #fff; }

/* Custom Scrollbar for Hand */
.hide-scroll::-webkit-scrollbar {
    display: none;
}
.hide-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Modal Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 8px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #0f172a; border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #475569; }
