.tv-section {
    padding: 80px 0;
}
.tv-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 24px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}
.tv-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-4px);
}
.tv-card-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 16px;
}
.tv-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.tv-card-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin: 0;
}
.tv-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.tv-card-link:hover .tv-card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-4px);
}
