body {
    margin:0;
    background:#0b0b0b;
    color:#f2f2f2;
}

.tv-section {
    margin-top:24px;
}

.tv-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin:0 0 18px;
}

.tv-header h2 {
    margin:0;
    font-size:30px;
}

.tv-hint {
    color:#9f9f9f;
    font-size:14px;
}

.tv-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:22px;
}

.tv-card {
    background:linear-gradient(180deg, rgba(36,36,36,0.95), rgba(22,22,22,0.95));
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    overflow:hidden;
    transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    box-shadow:0 10px 28px rgba(0,0,0,0.28);
}

.tv-card:hover {
    transform:translateY(-3px) scale(1.01);
    border-color:rgba(255,255,255,0.22);
    box-shadow:0 18px 34px rgba(0,0,0,0.38);
}

.tv-poster {
    width:100%;
    aspect-ratio:2/3;
    object-fit:cover;
    background:#101010;
}

.tv-info {
    padding:15px;
}

.tv-title {
    font-size:18px;
    font-weight:700;
}

.tv-meta {
    color:#bbbbbb;
    margin-top:8px;
}

@media (max-width: 720px) {
    .tv-header {
        flex-direction:column;
        align-items:flex-start;
    }

    .tv-header h2 {
        font-size:24px;
    }
}
