/* ─── Container (wine-red console) ──────────────────────────────────── */
#game-root .pc-wrap {
    position: relative; padding: 0.85rem; max-width: 520px; margin: 0 auto;
    background: linear-gradient(180deg, #2a1010 0%, #5a1818 100%);
    border-radius: var(--jul-radius-lg, 20px); user-select: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ─── HUD pills ─────────────────────────────────────────────────────── */
#game-root .pc-header { display: flex; align-items: stretch; gap: 0.4rem; margin-bottom: 0.6rem; }
#game-root .pc-pill {
    flex: 1 1 0; min-width: 0; display: flex; align-items: center; gap: 0.4rem; padding: 0.32rem 0.6rem;
    background: linear-gradient(180deg, #fff8e1 0%, #fbf0c8 100%);
    border: 1px solid rgba(0,0,0,0.12); border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 2px 4px rgba(0,0,0,0.18);
}
#game-root .pc-pill--wide { flex: 1.5 1 0; }
#game-root .pc-pill-icon { font-size: 1.2rem; line-height: 1; }
#game-root .pc-pill-body { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
#game-root .pc-lbl { font-size: 0.58rem; letter-spacing: 0.06em; color: #8a5a1a; text-transform: uppercase; font-weight: 700; }
#game-root .pc-val { font-size: 1.25rem; font-weight: 800; color: var(--jul-red-700, #8B0000); font-variant-numeric: tabular-nums; }
#game-root .pc-audio { display: flex; align-items: center; gap: 0.3rem; padding: 0.28rem 0.45rem; background: linear-gradient(180deg, #fff8e1 0%, #fbf0c8 100%); border: 1px solid rgba(0,0,0,0.12); border-radius: 12px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 2px 4px rgba(0,0,0,0.18); }
#game-root .pc-mute { background: transparent; border: 0; width: 26px; height: 26px; cursor: pointer; font-size: 0.95rem; padding: 0; }
#game-root .pc-vol { width: 50px; cursor: pointer; accent-color: var(--jul-red-700, #8B0000); }

/* ─── Stage (cookie on bakery backdrop) ─────────────────────────────── */
#game-root .pc-stage {
    position: relative; padding: 1.2rem 1rem 1.4rem; margin-bottom: 0.7rem;
    border: 3px solid #ffd66b; border-radius: 14px; overflow: hidden; text-align: center;
    background-image: url('/games/pebernoed-clicker/background.jpg'); background-size: cover; background-position: center;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.4), inset 0 0 16px rgba(0,0,0,0.3);
}
#game-root .pc-cookie {
    width: 172px; height: 172px; border-radius: 50%; padding: 10px; cursor: pointer;
    background: radial-gradient(circle at 36% 34%, #fff7da, #f2dca6);
    border: 5px solid #8b5a2b; box-shadow: 0 8px 20px rgba(0,0,0,0.45), inset 0 2px 6px rgba(255,255,255,0.6);
    display: inline-flex; align-items: center; justify-content: center; position: relative;
    transition: transform 0.08s ease;
}
#game-root .pc-cookie img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3)); }
#game-root .pc-cookie:hover { transform: scale(1.03); }
#game-root .pc-cookie:active { transform: scale(0.95); }
#game-root .pc-cookie--pop { animation: pc-pop 0.16s ease; }
@keyframes pc-pop { 50% { transform: scale(0.92); } }
#game-root .pc-pop { position: absolute; font-weight: 800; font-size: 1.2rem; color: #fff; text-shadow: 0 1px 2px #8B0000, 0 0 6px rgba(0,0,0,0.4); pointer-events: none; animation: pc-float 750ms forwards; }
@keyframes pc-float { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-46px); } }
#game-root .pc-perclick { margin-top: 0.6rem; display: inline-block; padding: 0.2rem 0.7rem; border-radius: 999px; background: rgba(0,0,0,0.4); color: #fde9a8; font-weight: 700; font-size: 0.78rem; }

/* ─── Upgrades ──────────────────────────────────────────────────────── */
#game-root .pc-upgrades { display: grid; gap: 0.4rem; }
#game-root .pc-upgrade {
    display: flex; align-items: center; gap: 0.7rem; padding: 0.5rem 0.8rem; text-align: left; cursor: pointer;
    background: linear-gradient(180deg, #fff8e1 0%, #fbf0c8 100%); border: 1px solid rgba(0,0,0,0.12); border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 2px 4px rgba(0,0,0,0.18); transition: transform 0.08s ease, filter 0.12s ease;
}
#game-root .pc-upgrade:hover:not(.pc-upgrade--locked) { transform: translateY(-1px); filter: brightness(1.03); }
#game-root .pc-upgrade:active:not(.pc-upgrade--locked) { transform: translateY(1px); }
#game-root .pc-upgrade--locked { opacity: 0.5; cursor: not-allowed; filter: grayscale(0.4); }
#game-root .pc-up-icon { font-size: 1.7rem; line-height: 1; }
#game-root .pc-up-name { font-weight: 800; color: var(--jul-red-700, #8B0000); font-size: 0.92rem; }
#game-root .pc-up-owned { color: #9a7a4a; font-weight: 600; font-size: 0.82rem; }
#game-root .pc-up-detail { font-size: 0.76rem; color: #6a4a22; font-weight: 600; }

@media (max-width: 480px) { #game-root .pc-wrap { padding: 0.6rem; } #game-root .pc-cookie { width: 140px; height: 140px; } #game-root .pc-vol { width: 42px; } }
