        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2a5bd7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background-color: #fffacd;
            padding: 2px 6px;
            border-radius: 3px;
        }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -1px;
        }
        .logo a {
            color: #ffcc00;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .logo a:hover {
            color: #ffdd44;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            color: #1a237e;
        }
        .search-section {
            background-color: #fff;
            padding: 2rem 0;
            border-bottom: 1px solid #dee2e6;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background-color: #2a5bd7;
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #1a4bc7;
        }
        .main-content {
            padding: 3rem 0;
            background-color: white;
        }
        .article-header {
            margin-bottom: 3rem;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 1.5rem;
        }
        .article-title {
            font-size: 2.8rem;
            color: #1a237e;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.95rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .article-body {
            font-size: 1.15rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .article-body p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .article-body h2 {
            color: #311b92;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ccc;
            font-size: 2rem;
        }
        .article-body h3 {
            color: #5a189a;
            margin: 2.5rem 0 1rem;
            font-size: 1.6rem;
        }
        .article-body ul, .article-body ol {
            margin-bottom: 1.8rem;
        }
        .article-body li {
            margin-bottom: 0.8rem;
        }
        .feature-image {
            width: 100%;
            max-width: 800px;
            margin: 3rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background-color: #f8f9fa;
            color: #666;
        }
        .interaction-section {
            margin: 4rem 0;
            padding: 3rem;
            background-color: #f1f8ff;
            border-radius: 15px;
            border-left: 5px solid #2a5bd7;
        }
        .interaction-title {
            color: #1a237e;
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 1.5rem;
            max-width: 700px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        .form-control {
            padding: 1rem;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #2a5bd7;
            box-shadow: 0 0 0 3px rgba(42, 91, 215, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            justify-self: start;
        }
        .submit-btn:hover {
            background-color: #218838;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .web-links-section {
            background-color: #f8f9fa;
            padding: 3rem 0;
            border-top: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            font-weight: 600;
            color: #1a237e;
            display: block;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background-color: #1a1a2e;
            color: #ccc;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 992px) {
            .article-title { font-size: 2.4rem; }
            .interaction-section { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #1a237e;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                padding: 1rem 0;
            }
            .header-container {
                padding: 0 15px;
            }
            .article-title { font-size: 2rem; }
            .article-body h2 { font-size: 1.7rem; }
            .article-body h3 { font-size: 1.4rem; }
            .search-form { flex-direction: column; border-radius: 10px; }
            .search-input, .search-btn { padding: 1rem; border-radius: 0; }
            .star-rating label { font-size: 2rem; }
            .web-links-container { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .logo { font-size: 1.8rem; }
            .article-title { font-size: 1.8rem; }
            .article-meta { flex-direction: column; gap: 0.5rem; }
            .interaction-section { padding: 1.5rem; }
        }
