
    /* Scoped styles for this section */
    .iptv-feature-section {
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        background-color: #0a0a0a;
        color: #e5e7eb;
    }
    
    .iptv-gradient-text {
        background: linear-gradient(to right, #60a5fa, #22d3ee);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Smooth fade-up animation classes */
    .iptv-animate-up {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .iptv-animate-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }
    .delay-300 { transition-delay: 0.3s; }
