/* ========================================
   Talego - TalegoTV 页面
   ======================================== */
.taptv-page {
    padding: 80px 24px 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.taptv-hero {
    text-align: center;
    padding: 40px 20px 56px;
    margin-bottom: 32px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.06), transparent);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}
.taptv-hero h2 {
    font-family: 'Outfit';
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}
.taptv-hero p {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
}
.tv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
}
.tv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s var(--ease-out);
}
.tv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.tv-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #151a2e, #0d1220);
    position: relative;
}
.tv-play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(0, 212, 255, .85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 212, 255, .35);
    transition: transform .25s var(--ease-out);
}
.tv-card:hover .tv-play-icon { transform: translate(-50%, -50%) scale(1.08); }
.tv-info { padding: 14px 16px; }
.tv-info h3 {
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 4px;
}
.tv-info p {
    font-size: 12.5px;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .taptv-page { padding: 68px 16px 32px; }
    .tv-grid { grid-template-columns: 1fr; }
}
