/* ─────────────────────────────────────────────────────────────
   Sticky CANLI bar — site-wide
   Sadece aktif LiveEvent (Status=Live) varsa render edilir.
   ─────────────────────────────────────────────────────────── */

.lb-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, #0f1722 0%, #1a2538 50%, #0f1722 100%);
    border-top: 2px solid rgba(176, 48, 32, 0.55);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 0 18px rgba(176, 48, 32, 0.18) inset;
    font-family: 'Sora', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.lb-sticky-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 44px 10px 22px;
}
.lb-sticky-inner:hover .lb-sticky-cta { color: #e4b387; }

.lb-sticky-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #b03020;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    padding: 4px 10px 4px 8px;
    border-radius: 3px;
    flex-shrink: 0;
    text-transform: uppercase;
    line-height: 1;
}
.lb-sticky-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: lb-sticky-blink 1.4s ease infinite;
}
@keyframes lb-sticky-blink { 0%, 100% { opacity: 1; } 55% { opacity: 0.25; } }

.lb-sticky-text {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}
.lb-sticky-text strong {
    font-weight: 700;
    color: #fff;
    margin-right: 6px;
}
.lb-sticky-spot {
    color: rgba(255, 255, 255, 0.48);
    font-weight: 400;
}

.lb-sticky-cta {
    flex-shrink: 0;
    color: #c9986a;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.15s;
}
.lb-sticky-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.lb-sticky-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.15s;
}
.lb-sticky-close:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 720px) {
    .lb-sticky-inner { padding: 8px 36px 8px 12px; gap: 8px; flex-wrap: nowrap; }
    .lb-sticky-spot { display: none; }
    .lb-sticky-cta { font-size: 10.5px; white-space: nowrap; }
    .lb-sticky-cta .lb-sticky-count { font-size: 9.5px; }
    .lb-sticky-close { right: 4px; font-size: 18px; padding: 4px 8px; }
}
