:root {
            --primary: #1a237e;
            --secondary: #ff9800;
            --accent: #4caf50;
            --light: #f5f7fa;
            --dark: #121212;
            --text: #333333;
            --text-light: #666666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.8;
            color: var(--text);
            background-color: #fff;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #283593);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            background: linear-gradient(to right, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .search-box {
            display: flex;
            max-width: 400px;
            flex-grow: 1;
            margin: 0 30px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #ff8a00;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        nav {
            margin-top: 1rem;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .nav-links a {
            padding: 8px 16px;
            border-radius: var(--radius);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover, .nav-links a.active {
            background: rgba(255, 255, 255, 0.15);
            color: var(--secondary);
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: #ccc;
            margin-top: 10px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        main {
            padding: 2rem 0;
            background: var(--light);
            min-height: 80vh;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        article h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 6px solid var(--secondary);
            padding-left: 20px;
        }
        article h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 8px;
            border-bottom: 2px dashed var(--accent);
        }
        article h3 {
            color: #555;
            font-size: 1.4rem;
            margin: 1.8rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: var(--primary);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .schedule-table th, .schedule-table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .schedule-table th {
            background: var(--primary);
            color: white;
            font-weight: 600;
        }
        .schedule-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        .schedule-table tr:hover {
            background: #e8f4fd;
        }
        .live-badge {
            background: #f44336;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            display: inline-block;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .feature-img {
            width: 100%;
            border-radius: var(--radius);
            margin: 2rem 0;
            border: 5px solid white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .interaction-section {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: var(--radius);
            margin-top: 3rem;
            border: 1px solid #eaeaea;
        }
        .interaction-section h3 {
            color: var(--primary);
            margin-top: 0;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 1rem 0;
            flex-wrap: wrap;
        }
        .stars {
            color: #ffc107;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .stars span:hover, .stars span:hover ~ span {
            color: #ff9800;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        input, textarea, select {
            padding: 14px;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
        }
        button[type="submit"] {
            background: linear-gradient(to right, var(--primary), #3949ab);
            color: white;
            border: none;
            padding: 15px;
            border-radius: var(--radius);
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background: linear-gradient(to right, #151d6b, #283593);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        aside h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .sidebar-list li {
            padding: 12px 0;
            border-bottom: 1px dotted #eee;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .sidebar-list li:before {
            content: "▶";
            color: var(--secondary);
            font-size: 0.8rem;
        }
        .sidebar-list a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .live-now {
            background: #fff8e1;
            padding: 1.2rem;
            border-radius: var(--radius);
            margin-top: 2rem;
            border-left: 5px solid #ffb300;
        }
        footer {
            background: var(--dark);
            color: #ddd;
            padding-top: 3rem;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 2rem 0;
            border-bottom: 1px solid #444;
        }
        @media (max-width: 768px) {
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            color: #b3e5fc;
            font-weight: 500;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        .footer-bottom {
            padding: 2rem 0;
            text-align: center;
            font-size: 0.95rem;
            color: #aaa;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 1.5rem 0;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #ccc;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--secondary);
            transform: scale(1.2);
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                margin: 20px 0 0;
                max-width: 100%;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0,0,0,0.95);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 var(--radius) var(--radius);
            }
            .nav-links.active {
                display: flex;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2rem;
            }
            .schedule-table th, .schedule-table td {
                padding: 10px;
                font-size: 0.9rem;
            }
        }
