/* ═══════════════════════════════════════════════
   LLWS 2026 Countdown Bar — v2.0
   KEY FIX: position:relative — koi bhi layout
   disturb nahi hoti, admin bar ke saath bhi theek
   ═══════════════════════════════════════════════ */

#llws-auto-bar {
    /* position: relative — ye sirf apni jagah leta hai
       position: fixed/sticky se layout nahi totega */
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0f1f2e;
    border-bottom: 2px solid #f0a500;
    box-sizing: border-box;
}

/* Agar WordPress admin bar hai (logged-in users) */
.admin-bar #llws-auto-bar {
    top: 0;
    /* Admin bar 32px hoti hai desktop pe, 46px mobile pe
       Bar ko push down karne ki zaroorat nahi kyunki
       position:relative hai */
}

#llws-auto-bar .llws-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 7px 20px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
}

#llws-auto-bar .llws-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #a8c0e8;
    text-transform: uppercase;
    white-space: nowrap;
}

#llws-auto-bar .llws-label strong {
    color: #ffffff;
}

#llws-auto-bar .llws-divider {
    display: inline-block;
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

#llws-auto-bar .llws-boxes {
    display: flex;
    align-items: center;
    gap: 4px;
}

#llws-auto-bar .llws-box {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 5px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    min-width: 42px;
    justify-content: center;
}

#llws-auto-bar .llws-box span:first-child {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    min-width: 24px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
}

#llws-auto-bar .llws-unit {
    font-size: 9px;
    color: #a8c0e8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#llws-auto-bar .llws-colon {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    line-height: 1;
}

#llws-auto-bar .llws-date {
    font-size: 11px;
    color: #f0a500;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    #llws-auto-bar .llws-inner {
        padding: 6px 12px;
        gap: 7px;
    }
    #llws-auto-bar .llws-label {
        font-size: 10px;
    }
    #llws-auto-bar .llws-box {
        padding: 2px 7px;
        min-width: 36px;
    }
    #llws-auto-bar .llws-box span:first-child {
        font-size: 13px;
    }
    #llws-auto-bar .llws-date {
        font-size: 10px;
    }
    /* Mobile pe dividers hide karo space ke liye */
    #llws-auto-bar .llws-divider {
        display: none;
    }
}
