
        /* ========== MAX TV LIVE - LIGHT THEME with RED, BLUE, YELLOW ========== */
        :root {
            --primary-red: #E3222E;
            --primary-blue: #1E3A8A;
            --primary-yellow: #F5B81B;
            --bg-light: #FEF9F0;
            --card-bg: #FFFFFF;
            --text-dark: #1F2937;
            --text-muted: #4B5563;
            --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
            --border-light: #E5E7EB;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        /* Spinner */
        #spinner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-light);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .custom-spinner {
            width: 70px;
            height: 70px;
            border: 5px solid rgba(227, 34, 46, 0.2);
            border-top: 5px solid var(--primary-red);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        /* Navbar - Light with red/blue accents */
        .navbar-max {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(4px);
            border-bottom: 2px solid var(--primary-yellow);
            padding: 1rem 0;
            box-shadow: var(--shadow-sm);
            position: relative;
            z-index: 10;
        }
        .navbar-brand-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        .navbar-logo-img {
            width: 100px;
            height: auto;
            transition: transform 0.3s ease;
            display: block;
        }
        .navbar-logo-img:hover {
            transform: scale(1.05);
        }
        .nav-link-max {
            color: var(--text-dark) !important;
            font-weight: 600;
            margin: 0 0.8rem;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .nav-link-max:hover, .nav-link-max.active {
            color: var(--primary-red) !important;
        }
        .btn-primary-max {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
            color: white;
            font-weight: 600;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-block;
            border: none;
            font-size: 1rem;
        }
        .btn-primary-max:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(227, 34, 46, 0.3);
            color: white;
        }
        .btn-outline-max {
            background: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1rem;
        }
        .btn-outline-max:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }

        /* Hero Section */
        .hero-max {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        .hero-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
            z-index: 1;
        }
        .hero-content-max {
            position: relative;
            z-index: 5;
            width: 100%;
            padding: 2rem;
            animation: fadeInUp 0.8s ease-out;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-title-max {
            font-size: 4.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        .hero-title-max .gradient-main {
            background: linear-gradient(135deg, #FFFFFF, var(--primary-yellow), #FFD966);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        .hero-title-max .white-sub {
            color: #FFFFFF;
            display: inline-block;
            font-weight: 700;
        }
        .hero-desc-max {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 2rem;
            font-weight: 500;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }
        .hero-buttons-wrapper {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }
        .btn-hero-primary {
            background: linear-gradient(135deg, var(--primary-red), #C41E3A);
            color: white;
            font-weight: 600;
            padding: 1rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: none;
        }
        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(227, 34, 46, 0.5);
            color: white;
        }
        .btn-hero-outline {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 2px solid var(--primary-yellow);
            color: white;
            font-weight: 600;
            padding: 1rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
        }
        .btn-hero-outline:hover {
            background: var(--primary-yellow);
            color: var(--primary-blue);
            border-color: var(--primary-yellow);
            transform: translateY(-3px);
        }
        .hero-stats-max {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }
        .stat-item-max {
            background: rgba(0,0,0,0.55);
            backdrop-filter: blur(12px);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            border: 1px solid rgba(245,184,27,0.6);
            text-align: center;
            transition: all 0.3s ease;
            min-width: 130px;
        }
        .stat-number-max {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-yellow);
        }
        .stat-label-max {
            color: white;
            font-weight: 500;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        /* Cards & Sections - Increased Size */
        .section-header-max {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-header-max h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: inline-block;
            border-bottom: 4px solid var(--primary-yellow);
            padding-bottom: 10px;
        }
        .card-max {
            background: var(--card-bg);
            border-radius: 28px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            height: 100%;
        }
        .app-icon-max {
            width: 85px;
            height: 85px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            background: transparent;
        }
        .app-icon-max img {
            width: 120px;
            height: auto;
        }
        .card-max h5 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            word-break: normal;
            white-space: normal;
            line-height: 1.3;
        }
        .btn-app-max {
            background: #F3F4F6;
            padding: 0.45rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: var(--text-dark);
            text-decoration: none;
            display: inline-block;
            margin: 0.2rem;
            font-weight: 500;
        }
        .feature-img-small {
            max-width: 75%;
            height: auto;
        }
        .pricing-card-max {
            background: var(--card-bg);
            border-radius: 28px;
            padding: 1.5rem;
            transition: 0.3s;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            height: 100%;
        }
        .plan-price-max {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary-blue);
        }
        .plan-price-max small {
            font-size: 1rem;
            color: var(--text-muted);
        }
        .features-list-max {
            list-style: none;
            padding-left: 0;
            margin: 1.2rem 0;
        }
        .features-list-max li {
            margin-bottom: 0.6rem;
            font-size: 0.95rem;
            color: var(--text-muted);
        }
        .features-list-max li i {
            color: var(--primary-red);
            margin-right: 8px;
            font-size: 0.9rem;
        }
        .btn-pricing-max {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
            width: 100%;
            text-align: center;
            display: inline-block;
            padding: 0.8rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            color: white;
            font-size: 1rem;
        }
        .faq-item-max {
            background: var(--card-bg);
            border-radius: 24px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .faq-question-max {
            padding: 1.2rem 1.5rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary-blue);
            font-size: 1.1rem;
        }
        .faq-answer-max {
            padding: 0 1.5rem 1.2rem 1.5rem;
            color: var(--text-muted);
            display: none;
            line-height: 1.6;
            font-size: 1rem;
        }
        .faq-item-max.active .faq-answer-max {
            display: block;
        }
        .footer-max {
            background: #1E293B;
            color: #E2E8F0;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-max h5 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .footer-links-max a {
            color: #CBD5E1;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .whatsapp-float i {
            font-size: 2rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 105px;
            right: 30px;
            background: var(--primary-red);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            visibility: hidden;
            transition: 0.2s;
            z-index: 999;
            text-decoration: none;
        }
        .back-to-top i {
            font-size: 1.3rem;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        /* Partners Section */
        .partners-section {
            margin: 2.5rem 0;
        }
        .partners-iframe {
            background: #FFFFFF;
            border-radius: 1rem;
            width: 100%;
            min-height: 180px;
        }
        
        /* ========== DESKTOP OPTIMIZED - LARGER SIZES ========== */
        
        /* Desktop Large (1200px+) */
        @media (min-width: 1200px) {
            .container {
                max-width: 1300px;
                padding-left: 20px;
                padding-right: 20px;
            }
            .hero-title-max {
                font-size: 4.5rem;
            }
            .hero-desc-max {
                font-size: 1.4rem;
            }
            .section-header-max h2 {
                font-size: 3rem;
            }
            .py-4 {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }
            .my-5 {
                margin-top: 3rem !important;
                margin-bottom: 3rem !important;
            }
            .g-4 {
                --bs-gutter-y: 2rem;
                --bs-gutter-x: 2rem;
            }
            .g-3 {
                --bs-gutter-y: 1.5rem;
                --bs-gutter-x: 1.5rem;
            }
            .card-max {
                padding: 1.8rem;
            }
            .pricing-card-max {
                padding: 1.8rem;
            }
            .partners-iframe {
                min-height: 190px;
            }
            .plan-price-max {
                font-size: 2.6rem;
            }
            .features-list-max li {
                font-size: 1rem;
            }
        }
        
        /* Desktop Medium (992px - 1199px) */
        @media (min-width: 992px) and (max-width: 1199px) {
            .container {
                max-width: 960px;
                padding-left: 15px;
                padding-right: 15px;
            }
            .hero-title-max {
                font-size: 3.8rem;
            }
            .hero-desc-max {
                font-size: 1.2rem;
            }
            .my-5 {
                margin-top: 2.5rem !important;
                margin-bottom: 2.5rem !important;
            }
            .partners-iframe {
                min-height: 170px;
            }
        }
        
        /* Tablet (768px - 991px) */
        @media (max-width: 991px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }
            .hero-title-max {
                font-size: 3rem;
            }
            .hero-title-max br {
                display: none;
            }
            .hero-title-max .white-sub {
                display: block;
                margin-top: 0.3rem;
            }
            .navbar-nav {
                margin: 1rem 0;
                text-align: center;
            }
            .nav-link-max {
                text-align: center;
                padding: 0.6rem !important;
                display: inline-block;
            }
            .d-flex.ms-lg-3 {
                justify-content: center;
                margin-bottom: 1rem;
            }
            .my-5 {
                margin-top: 2rem !important;
                margin-bottom: 2rem !important;
            }
            .section-header-max h2 {
                font-size: 2.2rem;
            }
            .partners-iframe {
                min-height: 150px;
            }
            .card-max h5 {
                font-size: 1rem;
            }
            .btn-app-max {
                font-size: 0.75rem;
                padding: 0.35rem 0.8rem;
            }
        }
        
        /* Mobile (577px - 767px) - Fixed Download App Section */
        @media (max-width: 767px) {
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            .hero-title-max {
                font-size: 2.2rem;
            }
            .hero-desc-max {
                font-size: 1rem;
            }
            .hero-stats-max {
                gap: 0.8rem;
            }
            .stat-item-max {
                padding: 0.5rem 1rem;
                min-width: 90px;
            }
            .stat-number-max {
                font-size: 1.3rem;
            }
            .stat-label-max {
                font-size: 0.7rem;
            }
            .btn-hero-primary, .btn-hero-outline {
                padding: 0.7rem 1.5rem;
                font-size: 0.95rem;
            }
            .navbar-logo-img {
                width: 110px;
            }
            .feature-img-small {
                max-width: 60%;
                margin: 0 auto 1rem auto;
                display: block;
            }
            .row.align-items-center {
                text-align: center;
            }
            .row.align-items-center h3 {
                margin-top: 1rem;
                font-size: 1.4rem;
            }
            .row.align-items-center p {
                font-size: 0.9rem;
            }
            .app-icon-max img {
                width: 50px;
            }
            .app-icon-max {
                width: 70px;
                height: 70px;
            }
            .pricing-card-max {
                padding: 1rem;
            }
            .plan-price-max {
                font-size: 1.8rem;
            }
            .features-list-max li {
                font-size: 0.85rem;
            }
            .section-header-max {
                margin-bottom: 1.5rem;
            }
            .section-header-max h2 {
                font-size: 1.8rem;
            }
            .card-max {
                padding: 1rem;
            }
            .hero-buttons-wrapper {
                gap: 0.8rem;
            }
            .footer-max .row > div {
                text-align: center;
                margin-bottom: 1.2rem;
            }
            .my-5 {
                margin-top: 1.8rem !important;
                margin-bottom: 1.8rem !important;
            }
            .py-4 {
                padding-top: 1.2rem !important;
                padding-bottom: 1.2rem !important;
            }
            .g-4 {
                --bs-gutter-y: 1rem;
                --bs-gutter-x: 1rem;
            }
            .partners-iframe {
                min-height: 130px;
            }
            /* Fix for download app section text - ensure full visibility */
            .card-max h5 {
                font-size: 0.9rem;
                word-break: break-word;
                white-space: normal;
                line-height: 1.3;
                min-height: 2.5rem;
            }
            .btn-app-max {
                font-size: 0.7rem;
                padding: 0.3rem 0.6rem;
                white-space: normal;
                word-break: keep-all;
            }
            .col-md-3.col-6 {
                padding-left: 8px;
                padding-right: 8px;
            }
        }
        
        /* Mobile Small (up to 576px) - Fixed Download App Section Text */
        @media (max-width: 576px) {
            .container {
                padding-left: 12px;
                padding-right: 12px;
            }
            .hero-title-max {
                font-size: 1.9rem;
            }
            .hero-desc-max {
                font-size: 0.9rem;
            }
            .stat-item-max {
                min-width: 75px;
                padding: 0.4rem 0.8rem;
            }
            .stat-number-max {
                font-size: 1.1rem;
            }
            .btn-hero-primary, .btn-hero-outline {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
            .btn-app-max {
                font-size: 0.65rem;
                padding: 0.25rem 0.5rem;
            }
            .plan-price-max {
                font-size: 1.5rem;
            }
            .btn-pricing-max {
                padding: 0.6rem;
                font-size: 0.85rem;
            }
            .section-header-max h2 {
                font-size: 1.5rem;
            }
            .my-5 {
                margin-top: 1.2rem !important;
                margin-bottom: 1.2rem !important;
            }
            .partners-iframe {
                min-height: 110px;
            }
            /* Fix for download app section text - ensure full visibility on small mobile */
            .card-max h5 {
                font-size: 0.8rem;
                word-break: break-word;
                white-space: normal;
                line-height: 1.2;
                min-height: 2.2rem;
            }
            .app-icon-max img {
                width: 40px;
            }
            .app-icon-max {
                width: 60px;
                height: 60px;
            }
        }
        
        .qr-code-wrapper {
            display: inline-block;
        }
        .qr-code-wrapper img {
            max-width: 100%;
            height: auto;
        }
        
        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }
        img, iframe, video {
            max-width: 100%;
            height: auto;
        }
        
        .row.align-items-center {
            margin-bottom: 2rem;
        }
        @media (min-width: 992px) {
            .row.align-items-center {
                margin-bottom: 3rem;
            }
        }
        
        /* Ensure download app section text is fully visible on all devices */
        .col-md-3.col-6 {
            flex: 0 0 auto;
            width: 50%;
        }
        @media (min-width: 768px) {
            .col-md-3.col-6 {
                width: 25%;
            }
        }
        .card-max {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .card-max .btn-app-max {
            margin-top: auto;
        }
    
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .1rem;
        padding-left: .1rem;
    }
}