* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff9800;
            --accent: #4caf50;
            --dark: #121212;
            --light: #f5f5f5;
            --text: #333333;
            --text-light: #666666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f9f9f9;
            color: var(--text);
            line-height: 1.7;
            font-size: 18px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #283593 100%);
            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;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary);
        }
        .search-box {
            flex: 1;
            max-width: 400px;
            margin: 0 20px;
        }
        .search-form {
            display: flex;
            position: relative;
        }
        .search-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ff8a00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            margin-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 15px;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
            transition: var(--transition);
        }
        .nav-menu a:hover {
            color: var(--secondary);
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .nav-menu a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: var(--light);
            background: rgba(0, 0, 0, 0.1);
            margin-top: 10px;
            border-radius: 5px;
            padding-left: 15px;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            min-height: 1500px;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 4px solid var(--secondary);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--accent);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
            border-left: 5px solid var(--secondary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background: #f0f7ff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid #e0e0e0;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
        }
        .stat-card h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .bracket-container {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid var(--primary);
            overflow-x: auto;
        }
        .bracket-table {
            width: 100%;
            min-width: 800px;
            border-collapse: collapse;
        }
        .bracket-table th {
            background: var(--primary);
            color: white;
            padding: 18px;
            text-align: left;
        }
        .bracket-table td {
            padding: 15px;
            border-bottom: 1px solid #ddd;
        }
        .bracket-table tr:nth-child(even) {
            background: #f2f2f2;
        }
        .bracket-table tr:hover {
            background: #e3f2fd;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border: 5px solid white;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-form, .rating-form {
            background: #f5f5f5;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #ddd;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ccc;
            border-radius: 8px;
            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), #283593);
            color: white;
            border: none;
            padding: 16px 35px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        button[type="submit"]:hover {
            background: linear-gradient(to right, #283593, var(--primary));
            transform: scale(1.03);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            direction: rtl;
        }
        .star {
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star:hover ~ .star {
            color: #ff9800;
        }
        .star.active {
            color: #ff9800;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
            border-left: 5px solid var(--accent);
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
        }
        .footer-logo span {
            color: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .search-box {
                max-width: 100%;
                width: 100%;
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 20px;
                top: 25px;
            }
            nav {
                display: none;
                width: 100%;
            }
            .nav-menu {
                flex-direction: column;
                gap: 0;
            }
            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-menu a {
                display: block;
                padding: 15px;
            }
            .nav-active {
                display: block;
            }
            article {
                padding: 25px;
            }
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            body {
                font-size: 16px;
            }
            h1 {
                font-size: 1.9rem;
            }
            .container {
                padding: 0 15px;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            header, footer, .interactive-section, .web-links {
                display: none;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
