/* =============================================================================
   VIDEO ALANI (TVS) — Kare video kartlarından oluşan, yatayda kayan şerit.
   Renk: Tema Ayarları → Video Alanı üzerinden değiştirilebilir (inline stil).
   ============================================================================= */

.tvs-strip {
    --tvs-card-size: 180px;
    display: flex;
    align-items: stretch;
    background: #9b9b9b;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 20px;
    overflow: hidden;
}

/* Sol: yer ismi */
.tvs-label {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 18px 26px;
    min-width: 150px;
}
.tvs-label-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}
a.tvs-label-link:hover { opacity: .85; }
.tvs-tv-icon { flex: none; opacity: .9; }
.tvs-tv-icon svg { width: 26px; height: 26px; display: block; }
.tvs-label-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .3px;
    word-break: break-word;
}

/* Sağ: kayan alan */
.tvs-scroll {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
}

.tvs-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding: 14px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.tvs-track::-webkit-scrollbar { display: none; }

/* Kare video kartı */
.tvs-card {
    flex: 0 0 auto;
    width: var(--tvs-card-size, 180px);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    scroll-snap-align: start;
    cursor: pointer;
}
.tvs-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: #6c757d;
    outline: 3px dashed rgba(255,255,255,.35);
    outline-offset: -6px;
}
.tvs-thumb img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.tvs-noimg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,#6c757d,#adb5bd);
    display: block;
}
.tvs-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
.tvs-play svg { width: 18px; height: 18px; fill: #fff; margin-left: 2px; }
.tvs-card:hover .tvs-play { background: var(--red, #cc0000); }
.tvs-izle {
    position: absolute;
    left: 10px; bottom: 8px;
    color: rgba(255,255,255,.85);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .5px;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.tvs-title {
    display: block;
    background: #14161c;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    line-height: 1.35;
    padding: 8px 10px;
    margin-top: -4px;
    border-radius: 0 0 4px 4px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tvs-card:hover .tvs-title { color: var(--red, #cc0000); }

/* Ok butonları */
.tvs-arrow {
    flex: none;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 0;
    background: rgba(0,0,0,.25);
    color: #fff;
    font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    margin: 0 6px;
    transition: background .15s;
}
.tvs-arrow:hover { background: rgba(0,0,0,.45); }
.tvs-arrow:disabled { opacity: .3; cursor: default; }

@media (max-width: 782px) {
    .tvs-strip { flex-direction: column; }
    .tvs-label { padding: 12px 16px; }
    .tvs-title { font-size: 11px; }
}
