/* --- Postranní panel hry - Moderní UI --- */
#kng-side-panel {
    position: fixed;
    left: -320px;
    top: 50%; /* Dokonalé vycentrování na střed obrazovky */
    transform: translateY(-50%);
    width: 300px;
    max-height: 95vh; /* Zabrání přetečení na malých displejích */
    background: #ffffff;
    box-shadow: 4px 0 25px rgba(0,0,0,0.18);
    transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2147483645; /* Obrovské číslo, aby panel překryl widgety (např. Heureku) */
    border-radius: 0 16px 16px 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    border-top: 5px solid #d35400;
    display: flex;
    flex-direction: column;
}
#kng-side-panel.open { left: 0; }

/* Záložka */
#kng-tab {
    position: absolute;
    right: -45px;
    top: 30px;
    width: 45px;
    background: #d35400;
    color: #ffffff;
    writing-mode: vertical-rl;
    padding: 22px 0;
    cursor: pointer;
    border-radius: 0 12px 12px 0;
    text-align: center;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 4px 0 12px rgba(211, 84, 0, 0.25);
    transition: background 0.3s, padding 0.3s;
}
#kng-tab:hover {
    background: #e65c00;
    padding: 25px 0; /* Drobný interaktivní efekt při najetí */
}

/* Kontejner obsahu s vnitřním scrollováním (jako pojistkou) */
#kng-content { 
    padding: 20px; 
    overflow-y: auto; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* --- ČASOVAČ (Nový modul pro Teaser / FOMO) --- */
#kng-timer-box {
    background: #fff5e6;
    color: #d35400;
    border: 1px dashed #d35400;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.3;
    box-shadow: inset 0 2px 5px rgba(211,84,0,0.05);
}
#kng-timer-box span {
    font-size: 18px;
    display: block;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* Obrázek grilu (Dynamické přizpůsobení výšce) */
#kng-grill-image {
    height: 12vh; /* Dynamická výška - smrskne se na notebooku */
    min-height: 80px;
    max-height: 130px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.kng-grill-unlit { 
    background-image: url('/user/documents/upload/vyhasly-gril.png'); 
    filter: grayscale(100%); 
    opacity: 0.5; 
}
.kng-grill-lit { 
    background-image: url('/user/documents/upload/horici-gril.png'); 
    filter: drop-shadow(0 4px 10px rgba(211, 84, 0, 0.3)); 
    opacity: 1; 
    transform: scale(1.05); /* Lehký zoom, když gril hoří */
}

/* Inventář - Podzimní styl */
.kng-slot {
    border: 2px solid #e2e8f0;
    margin-bottom: 8px;
    padding: 8px 12px;
    text-align: center;
    border-radius: 8px;
    background: #f8fafc;
    color: #64748b;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.kng-slot.found {
    border: 2px solid #d35400;
    background: #fff5e6;
    color: #d35400;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(211, 84, 0, 0.1);
}

/* --- HLEDANÉ PŘEDMĚTY NA WEBU --- */

/* Klikací obal (Mobile-first UX) */
.kng-hidden-wrapper {
    position: absolute;
    z-index: 9998;
    cursor: pointer;
    padding: 20px; /* Zvětšuje oblast dotyku na mobilu */
    top: 10px;
    right: 10px;
}

/* Samotný předmět */
.kng-hidden-item {
    width: clamp(50px, 8vw, 75px); /* Na malém displeji menší, na velkém do 75px */
    animation: kngPulse 2.5s infinite ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
    transition: transform 0.3s, filter 0.3s;
}
.kng-hidden-wrapper:hover .kng-hidden-item {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(211, 84, 0, 0.5)); /* Oranžová záře při najetí */
}

@keyframes kngPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* WOW Efekt - Létající animace při sebrání */
.kng-flying {
    position: fixed !important;
    z-index: 2147483647 !important; /* Absolutní maximum, letí nad vším */
    transition: all 0.85s cubic-bezier(0.25, 1, 0.3, 1) !important;
    pointer-events: none; /* Během letu na něj nejde omylem kliknout */
}

/* Nápověda (Toast notifikace), když uživatel tápe */
.kng-toast {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #d35400;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    z-index: 2147483647; /* Absolutní maximum, aby nápovědu nezakryla lišta */
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.5px;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    width: max-content;
    max-width: 90%;
}

/* --- VLASTNÍ ELEGANTNÍ SCROLLBAR (ROLLER) --- */
/* Chrome, Edge, Safari */
#kng-content::-webkit-scrollbar {
    width: 5px; /* Velmi tenký a nenápadný posuvník */
}
#kng-content::-webkit-scrollbar-track {
    background: transparent; /* Průhledné pozadí dráhy */
}
#kng-content::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* Jemná šedá barva jezdce */
    border-radius: 10px;
}
#kng-content::-webkit-scrollbar-thumb:hover {
    background: #d35400; /* Při najetí myší zoranžoví */
}

/* Firefox */
#kng-content {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

/* --- EXTRÉMNÍ PŘIZPŮSOBENÍ PRO MALÉ DISPLEJE --- */
/* Pokud má uživatel malý notebook (výška displeje pod 750px), smrskneme obsah, aby se zamezilo scrollování */
@media (max-height: 750px) {
    #kng-side-panel {
        max-height: 98vh; /* Využijeme maximum obrazovky */
    }
    #kng-content {
        padding: 12px; /* Zmenšení okrajů */
    }
    #kng-timer-box {
        margin-bottom: 8px;
        padding: 5px;
        font-size: 11px;
    }
    #kng-timer-box span {
        font-size: 15px;
    }
    #kng-grill-image {
        min-height: 60px; /* Gril může být ještě menší */
        height: 8vh;
        margin-bottom: 8px;
    }
    h3 {
        font-size: 15px !important;
        margin-bottom: 5px !important;
    }
    .kng-slot {
        padding: 5px 8px;
        margin-bottom: 5px;
        font-size: 12px;
    }
}