* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-image {
            width: 100px;
            height: 50px;
            /* border-radius: 50%; */
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .logo-image:hover {
            transform: scale(1.1);
            border-color: #ff6b35;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #ffd700;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background-image: url('assets/photo-1739343338040-2dae68f6bdf5.avif');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 2;
            opacity: 0.5;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 15, 35, 0.85) 0%, rgba(26, 26, 62, 0.85) 50%, rgba(45, 27, 105, 0.85) 100%);
            z-index: 2;
        }

        .hero .container {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 100%;
            padding: 0;
            margin: 0;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .hero h3{
            font-size: clamp(1rem, 6vw, 2rem);
        }


        .hero h1 {
            font-size: clamp(5rem, 10vw, 10rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #ffd700, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease 0.2s both;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.4s both;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-primary:hover, .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #ffffff, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffd700;
        }

        .feature-card p {
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Language Support */
        .languages {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .language-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .language-tag {
            background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 215, 0, 0.2));
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 50px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .language-tag:hover {
            transform: scale(1.05);
            background: linear-gradient(45deg, rgba(255, 107, 53, 0.4), rgba(255, 215, 0, 0.4));
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
        }

        .cta-section h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #ffffff, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        footer {
            background: rgba(15, 15, 35, 0.95);
            padding: 50px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content {
                padding: 2rem 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .logo-image {
                width: 32px;
                height: 32px;
            }

            .logo {
                font-size: 1.5rem;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: relative;
            background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 100%);
            margin: 5% auto;
            padding: 2rem;
            width: 90%;
            max-width: 600px;
            border-radius: 20px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .close-modal {
            position: absolute;
            right: 20px;
            top: 15px;
            font-size: 28px;
            font-weight: bold;
            color: #fff;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: #ff6b35;
        }

        .modal h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: #fff;
            font-size: 2rem;
            background: linear-gradient(45deg, #ffffff, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #fff;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
        }

        .plan-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .plan-option {
            position: relative;
            cursor: pointer;
        }

        .plan-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .plan-option span {
            display: block;
            padding: 12px;
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            transition: all 0.3s ease;
        }

        .plan-option input[type="radio"]:checked + span {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-color: transparent;
            color: #fff;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border: none;
            border-radius: 8px;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        @media (max-width: 768px) {
            .modal-content {
                margin: 10% auto;
                width: 95%;
                padding: 1.5rem;
            }

            .plan-options {
                grid-template-columns: 1fr;
            }
        }

        .channels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .channel-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: #fff;
            display: block;
        }

        .channel-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .channel-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .channel-card:hover img {
            transform: scale(1.05);
        }

        .channel-card h3 {
            color: #ffd700;
            font-size: 1.5rem;
            margin: 1rem;
        }

        .channel-card p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0 1rem 1rem;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .channels-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1rem;
            }

            .channel-card img {
                height: 150px;
            }
        }

        .channel-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .channel-modal .modal-content {
            position: relative;
            background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 100%);
            margin: 5% auto;
            padding: 2rem;
            width: 90%;
            max-width: 1000px;
            border-radius: 20px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: modalSlideIn 0.3s ease-out;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-modal:hover {
            transform: scale(1.2);
        }

        .channel-title {
            font-size: 2.5rem;
            color: #ffd700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .channel-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .detail-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .detail-image:hover {
            transform: scale(1.02);
        }

        .channel-info {
            color: rgba(255, 255, 255, 0.9);
        }

        .channel-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .channel-features h3 {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .features-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .features-list li {
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .features-list li::before {
            content: '✓';
            color: #ff6b35;
            margin-right: 0.5rem;
        }

        @media (max-width: 768px) {
            .channel-modal .modal-content {
                margin: 10% auto;
                padding: 1.5rem;
            }

            .channel-images {
                grid-template-columns: 1fr;
            }

            .detail-image {
                height: 200px;
            }

            .channel-title {
                font-size: 2rem;
            }
        }

        /* Channels Page Styles */
        .channels-page {
            padding: 2rem;
            background: linear-gradient(135deg, #0f0f1f 0%, #1a1a3e 100%);
            min-height: 100vh;
        }

        .channel-hero {
            text-align: center;
            padding: 4rem 0;
            color: #fff;
        }

        .channel-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffd700, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .channel-hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .channel-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .category-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .category-content {
            padding: 2rem;
            color: #fff;
        }

        .category-content h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }

        .category-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .view-details-btn {
            background: linear-gradient(45deg, #ffd700, #ff6b35);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            color: #fff;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .view-details-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .category-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            padding: 0.5rem;
        }

        .category-images img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .category-images img:hover {
            transform: scale(1.05);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeIn 1s ease-out;
        }

        .animate-fade-in-delay {
            animation: fadeIn 1s ease-out 0.5s both;
        }

        .animate-slide-up {
            animation: slideUp 0.8s ease-out both;
        }

        .category-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .category-card:nth-child(3) {
            animation-delay: 0.4s;
        }

        .category-card:nth-child(4) {
            animation-delay: 0.6s;
        }

        .animate-zoom {
            animation: zoomIn 0.8s ease-out;
        }

        .animate-zoom-delay {
            animation: zoomIn 0.8s ease-out 0.3s both;
        }

        .animate-modal {
            animation: modalSlideIn 0.5s ease-out;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .channel-hero h1 {
                font-size: 2.5rem;
            }

            .channel-hero p {
                font-size: 1rem;
            }

            .category-content h2 {
                font-size: 1.5rem;
            }

            .category-images img {
                height: 120px;
            }
        }

        @media (max-width: 480px) {
            .channels-page {
                padding: 1rem;
            }

            .channel-hero {
                padding: 2rem 0;
            }

            .channel-hero h1 {
                font-size: 2rem;
            }

            .category-content {
                padding: 1.5rem;
            }
        }

        /* Remove all channels page styles */
        .channels-page,
        .channel-hero,
        .channel-categories,
        .category-card,
        .category-content,
        .category-images,
        .channel-modal,
        .modal-content,
        .close-modal,
        .channel-title,
        .channel-images,
        .detail-image,
        .channel-info,
        .channel-description,
        .channel-features,
        .features-list {
            display: none;
        }

        /* Keep only the essential animations that might be used elsewhere */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-fade-in {
            animation: fadeIn 1s ease-out;
        }

        .animate-fade-in-delay {
            animation: fadeIn 1s ease-out 0.5s both;
        }

        .animate-slide-up {
            animation: slideUp 0.8s ease-out both;
        }

        .animate-zoom {
            animation: zoomIn 0.8s ease-out;
        }

        .animate-zoom-delay {
            animation: zoomIn 0.8s ease-out 0.3s both;
        }

        /* Channel Detail Page Styles */
        .channel-detail-page {
            padding: 2rem;
            background: linear-gradient(135deg, #0f0f1f 0%, #1a1a3e 100%);
            min-height: 100vh;
        }

        .channel-hero {
            text-align: center;
            padding: 4rem 0;
            color: #fff;
        }

        .channel-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffd700, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .channel-hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .channel-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 2rem;
            align-items: start;
        }

        .channel-images {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .channel-images img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .channel-info {
            color: #fff;
            padding: 1rem;
        }

        .channel-info h2 {
            font-size: 2.2rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
        }

        .channel-info p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .features-section {
            margin-bottom: 2rem;
        }

        .features-section h3 {
            font-size: 1.6rem;
            color: #ffd700;
            margin-bottom: 1rem;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.8rem;
            list-style: none;
        }

        .features-list li {
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        .schedule-section {
            margin-top: 2rem;
        }

        .schedule-section h3 {
            font-size: 1.6rem;
            color: #ffd700;
            margin-bottom: 1rem;
        }

        .event-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .event-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
        }

        .event-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .event-card h4 {
            color: #ffd700;
            font-size: 1.1rem;
            padding: 0.8rem;
            margin: 0;
        }

        .event-card p {
            color: rgba(255, 255, 255, 0.8);
            padding: 0 0.8rem 0.8rem;
            margin: 0;
            font-size: 0.9rem;
        }

        @media (max-width: 992px) {
            .channel-content {
                grid-template-columns: 1fr;
            }

            .channel-images {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .channel-hero h1 {
                font-size: 2.5rem;
            }

            .channel-images {
                grid-template-columns: 1fr;
            }

            .channel-images img {
                height: 200px;
            }

            .channel-info h2 {
                font-size: 2rem;
            }

            .features-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .channel-detail-page {
                padding: 1rem;
            }

            .channel-hero {
                padding: 2rem 0;
            }

            .channel-hero h1 {
                font-size: 2rem;
            }

            .channel-content {
                padding: 1rem;
            }

            .channel-images img {
                height: 180px;
            }
        }

        /* Navigation Styles */
        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            color: #ffd700;
            background: rgba(255, 255, 255, 0.1);
        }

        nav ul li a.active {
            color: #ffd700;
            background: rgba(255, 255, 255, 0.1);
        }

        .subscribe-btn {
            background: linear-gradient(45deg, #ffd700, #ff6b35);
            color: #fff !important;
            padding: 0.8rem 1.5rem !important;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }

        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
            background: linear-gradient(45deg, #ff6b35, #ffd700) !important;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 2px;
            background: #fff;
            transition: all 0.3s ease;
        }

        @media (max-width: 992px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 26, 62, 0.95);
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
                backdrop-filter: blur(10px);
            }

            nav ul.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu-btn.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }

            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
        }

        @media (max-width: 480px) {
            nav ul {
                padding: 0.5rem;
            }

            nav ul li a {
                font-size: 1rem;
                padding: 0.4rem 0.8rem;
            }

            .subscribe-btn {
                padding: 0.6rem 1.2rem !important;
            }
        }

        /* Entertainment Channel Specific Styles */
        .entertainment-page .channel-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .entertainment-page .channel-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .entertainment-page .channel-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
            border-radius: 15px 15px 0 0;
        }

        .entertainment-page .channel-item:hover img {
            transform: scale(1.05);
        }

        .entertainment-page .channel-item h3 {
            font-size: 1.5rem;
            margin: 15px 0;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            padding: 0 20px;
        }

        .entertainment-page .channel-item p {
            color: rgba(255, 255, 255, 0.9);
            padding: 0 20px 20px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .entertainment-page .channel-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding: 40px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .entertainment-page .channel-item {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .entertainment-page .channel-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .entertainment-page .channel-item img {
            width: 400px;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.5s ease;
        }

        .entertainment-page .channel-item:hover img {
            transform: scale(1.02);
        }

        .entertainment-page .channel-item .content {
            flex: 1;
            padding: 20px;
        }

        .entertainment-page .channel-item h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .entertainment-page .channel-item p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Alternating layout */
        .entertainment-page .channel-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .entertainment-page .channel-item {
                flex-direction: column;
                text-align: center;
            }

            .entertainment-page .channel-item:nth-child(even) {
                flex-direction: column;
            }

            .entertainment-page .channel-item img {
                width: 100%;
                height: 250px;
            }

            .entertainment-page .channel-item .content {
                padding: 15px;
            }

            .entertainment-page .channel-item h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .entertainment-page .channel-grid {
                gap: 30px;
                padding: 20px 10px;
            }

            .entertainment-page .channel-item img {
                height: 220px;
            }

            .entertainment-page .channel-item h3 {
                font-size: 1.3rem;
            }

            .entertainment-page .channel-item p {
                font-size: 1rem;
            }
        }

        /* Channel Pages Common Styles */
        .entertainment-page .channel-grid,
        .movies-page .channel-grid,
        .sports-page .channel-grid,
        .music-page .channel-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding: 40px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .entertainment-page .channel-item,
        .movies-page .channel-item,
        .sports-page .channel-item,
        .music-page .channel-item {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .entertainment-page .channel-item:hover,
        .movies-page .channel-item:hover,
        .sports-page .channel-item:hover,
        .music-page .channel-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .entertainment-page .channel-item img,
        .movies-page .channel-item img,
        .sports-page .channel-item img,
        .music-page .channel-item img {
            width: 400px;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.5s ease;
        }

        .entertainment-page .channel-item:hover img,
        .movies-page .channel-item:hover img,
        .sports-page .channel-item:hover img,
        .music-page .channel-item:hover img {
            transform: scale(1.02);
        }

        .entertainment-page .channel-item .content,
        .movies-page .channel-item .content,
        .sports-page .channel-item .content,
        .music-page .channel-item .content {
            flex: 1;
            padding: 20px;
        }

        .entertainment-page .channel-item h3,
        .movies-page .channel-item h3,
        .sports-page .channel-item h3,
        .music-page .channel-item h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .entertainment-page .channel-item p,
        .movies-page .channel-item p,
        .sports-page .channel-item p,
        .music-page .channel-item p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Alternating layout for all channel pages */
        .entertainment-page .channel-item:nth-child(even),
        .movies-page .channel-item:nth-child(even),
        .sports-page .channel-item:nth-child(even),
        .music-page .channel-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        /* Responsive adjustments for all channel pages */
        @media (max-width: 992px) {
            .entertainment-page .channel-item,
            .movies-page .channel-item,
            .sports-page .channel-item,
            .music-page .channel-item {
                flex-direction: column;
                text-align: center;
            }

            .entertainment-page .channel-item:nth-child(even),
            .movies-page .channel-item:nth-child(even),
            .sports-page .channel-item:nth-child(even),
            .music-page .channel-item:nth-child(even) {
                flex-direction: column;
            }

            .entertainment-page .channel-item img,
            .movies-page .channel-item img,
            .sports-page .channel-item img,
            .music-page .channel-item img {
                width: 100%;
                height: 250px;
            }

            .entertainment-page .channel-item .content,
            .movies-page .channel-item .content,
            .sports-page .channel-item .content,
            .music-page .channel-item .content {
                padding: 15px;
            }

            .entertainment-page .channel-item h3,
            .movies-page .channel-item h3,
            .sports-page .channel-item h3,
            .music-page .channel-item h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .entertainment-page .channel-grid,
            .movies-page .channel-grid,
            .sports-page .channel-grid,
            .music-page .channel-grid {
                gap: 30px;
                padding: 20px 10px;
            }

            .entertainment-page .channel-item img,
            .movies-page .channel-item img,
            .sports-page .channel-item img,
            .music-page .channel-item img {
                height: 220px;
            }

            .entertainment-page .channel-item h3,
            .movies-page .channel-item h3,
            .sports-page .channel-item h3,
            .music-page .channel-item h3 {
                font-size: 1.3rem;
            }

            .entertainment-page .channel-item p,
            .movies-page .channel-item p,
            .sports-page .channel-item p,
            .music-page .channel-item p {
                font-size: 1rem;
            }
        }

        /* Header Layout for Channel Pages */
        .entertainment-page header,
        .movies-page header,
        .sports-page header,
        .music-page header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        .entertainment-page .logo-container,
        .movies-page .logo-container,
        .sports-page .logo-container,
        .music-page .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .entertainment-page nav,
        .movies-page nav,
        .sports-page nav,
        .music-page nav {
            margin-left: auto;
        }

        .entertainment-page nav ul,
        .movies-page nav ul,
        .sports-page nav ul,
        .music-page nav ul {
            display: flex;
            gap: 30px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .entertainment-page nav a,
        .movies-page nav a,
        .sports-page nav a,
        .music-page nav a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .entertainment-page nav a:hover,
        .movies-page nav a:hover,
        .sports-page nav a:hover,
        .music-page nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Responsive adjustments for header */
        @media (max-width: 768px) {
            .entertainment-page header,
            .movies-page header,
            .sports-page header,
            .music-page header {
                padding: 15px 20px;
            }

            .entertainment-page nav ul,
            .movies-page nav ul,
            .sports-page nav ul,
            .music-page nav ul {
                gap: 15px;
            }

            .entertainment-page nav a,
            .movies-page nav a,
            .sports-page nav a,
            .music-page nav a {
                font-size: 1rem;
                padding: 6px 12px;
            }
        }

        /* Feature List Styles for All Channel Pages */
        .entertainment-page .feature-list,
        .movies-page .feature-list,
        .sports-page .feature-list,
        .music-page .feature-list {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }

        .entertainment-page .feature-list li,
        .movies-page .feature-list li,
        .sports-page .feature-list li,
        .music-page .feature-list li {
            color: rgba(255, 255, 255, 0.9);
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 1rem;
            line-height: 1.4;
        }

        .entertainment-page .feature-list li:before,
        .movies-page .feature-list li:before,
        .sports-page .feature-list li:before,
        .music-page .feature-list li:before {
            content: "•";
            color: #4a90e2;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .entertainment-page .channel-item .content p,
        .movies-page .channel-item .content p,
        .sports-page .channel-item .content p,
        .music-page .channel-item .content p {
            margin-bottom: 10px;
            font-size: 1.1rem;
            color: #fff;
        }

        /* Responsive adjustments for feature lists */
        @media (max-width: 768px) {
            .entertainment-page .feature-list li,
            .movies-page .feature-list li,
            .sports-page .feature-list li,
            .music-page .feature-list li {
                font-size: 0.95rem;
                padding: 6px 0;
                padding-left: 20px;
            }

            .entertainment-page .channel-item .content p,
            .movies-page .channel-item .content p,
            .sports-page .channel-item .content p,
            .music-page .channel-item .content p {
                font-size: 1rem;
            }
        }

        /* Pricing Section Styles */
        .pricing-section {
            padding: 80px 20px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .pricing-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            width: 100%;
        }

        .compatibility {
            text-align: center;
            margin-bottom: 50px;
        }

        .compatibility p {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .compatibility-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .compatibility-list li {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(300px, 1fr));
            gap: 40px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            justify-content: center;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 50px 40px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
            box-sizing: border-box;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .pricing-card.premium {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(74, 144, 226, 0.1));
            border: 1px solid rgba(74, 144, 226, 0.3);
        }

        .pricing-card h3 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-card .price {
            font-size: 3rem;
            color: #4a90e2;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .pricing-card .duration {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            margin-bottom: 35px;
        }

        .pricing-card .buy-button {
            display: inline-block;
            padding: 12px 40px;
            background: linear-gradient(135deg, #4a90e2, #357abd);
            color: #fff;
            text-decoration: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pricing-card .buy-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
        }

        .pricing-card .features-list {
            margin: 30px 0;
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .pricing-card .features-list li {
            color: rgba(255, 255, 255, 0.9);
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
        }

        .pricing-card .features-list li:before {
            content: "✓";
            color: #4a90e2;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Responsive adjustments for pricing section */
        @media (max-width: 1400px) {
            .pricing-grid {
                grid-template-columns: repeat(2, minmax(300px, 1fr));
                max-width: 900px;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: minmax(300px, 1fr);
                max-width: 400px;
                gap: 25px;
                padding: 0 20px;
            }

            .pricing-card {
                padding: 40px 30px;
            }

            .pricing-card h3 {
                font-size: 1.8rem;
            }

            .pricing-card .price {
                font-size: 2.5rem;
            }

            .pricing-card .features-list li {
                font-size: 1rem;
            }
        }

        html {
            scroll-behavior: smooth;
        }