* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #d32f2f;
            transition: color 0.3s;
        }
        a:hover {
            color: #9a0007;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e, #283593);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: #fff;
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: #ff9800;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ef6c00;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 10px 0;
            transition: all 0.3s ease;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-menu li {
            margin: 0 15px;
        }
        .nav-menu a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            display: block;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #bdbdbd;
            background-color: rgba(0,0,0,0.05);
        }
        .breadcrumb a {
            color: #ffeb3b;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            color: #1a237e;
            font-size: 2.5rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #ff9800;
            padding-bottom: 10px;
        }
        h2 {
            color: #283593;
            font-size: 1.8rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #d32f2f;
        }
        h3 {
            color: #5c6bc0;
            font-size: 1.4rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 15px;
            border-left: 4px solid #ff9800;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 20px 0;
            border: 5px solid #e0e0e0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .stat-card {
            background: #e3f2fd;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border-top: 5px solid #2196f3;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #2196f3;
            margin-bottom: 10px;
        }
        .emoji {
            font-size: 1.3rem;
            margin: 0 3px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #d32f2f;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: inherit;
        }
        .rating-form label,
        .comment-form label {
            display: block;
            margin: 10px 0 5px;
            font-weight: bold;
        }
        .rating-form input,
        .rating-form select,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: #388e3c;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            width: 100%;
            transition: background 0.3s;
        }
        .btn-submit:hover {
            background: #2e7d32;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffd600;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .longtail-links {
            background: #1a237e;
            color: white;
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffeb3b;
            font-weight: 600;
            display: block;
        }
        footer {
            background: #0d153a;
            color: #bdbdbd;
            padding: 30px 0;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #bbdefb;
        }
        .copyright {
            font-size: 0.9rem;
            border-top: 1px solid #37474f;
            padding-top: 20px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                margin: 15px 0 0;
                max-width: 100%;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #283593;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 15px 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu li {
                margin: 5px 0;
                text-align: center;
            }
            h1 {
                font-size: 2rem;
            }
            .article-content,
            .widget {
                padding: 20px;
            }
        }
