/* ===== LIVE STRIP ===== */
#liveStrip {
    background: #000;
    padding: 10px 0 8px 0;
    border-bottom: 1px solid #1a1a1a;
    margin-top: 60px; /* below fixed navbar */
    user-select: none;
}
.live-strip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-family: Oswald, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}
.red-dot {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 1s infinite;
}
@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0.3; }
    100% { opacity: 1; }
}
/* ===== SCROLLABLE ROW ===== */
.live-video-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding: 0 10px 8px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}
.live-video-row::-webkit-scrollbar {
    display: none;
}
.live-video-row.dragging {
    cursor: grabbing;
}
/* ===== INDIVIDUAL ITEM ===== */
.live-item {
    flex: 0 0 auto;
    width: 280px;
    display: flex;
    flex-direction: column;
}
.live-video-wrap {
    position: relative;
    width: 280px;
    height: 158px;
    background: #111;
    overflow: hidden;
    border: 1px solid #222;
}
.live-video-wrap .clickableArea {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
}
.live-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}
.live-username {
    display: block;
    text-align: center;
    margin-top: 6px;
    font-family: Oswald, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.live-username:hover {
    color: #ff2a2a;
    text-decoration: underline;
}
/* ===== PAGE CONTENT — remove top gap since strip replaces navbar offset ===== */
#page {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Left-aligned active cam with peek of next on the right — nsfwmonster style.
       16px side padding for visual breathing room from screen edge. */
    #liveStrip {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .live-video-row {
        -webkit-overflow-scrolling: touch;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 8px !important;
        gap: 8px !important;
    }
    /* LIVE NOW header edge-to-edge to match cards and video */
    .live-strip-header {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .live-item {
        width: 65vw;
    }
    .live-video-wrap {
        width: 65vw;
        height: calc(65vw * 9 / 16); /* 16:9 */
        border-radius: 0;             /* sharp edges */
        border: none;
    }
    .live-username {
        font-size: 15px;
        margin-top: 8px;
    }
}