        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Roboto', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            color: #f5f5f5;
            line-height: 1.8;
            font-size: 18px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(26, 35, 126, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 2.5rem;
            color: #ffcc00;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
        }
        nav ul li a i {
            margin-right: 8px;
        }
        nav ul li a:hover {
            background: rgba(255, 204, 0, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background: #ffcc00;
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(48, 63, 159, 0.6);
            margin-top: 5px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.8rem;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.8rem;
            color: #ffcc00;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 204, 0, 0.1);
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        article h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: #81d4fa;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #4fc3f7;
        }
        article h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: #c5e1a5;
        }
        article p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: #ffcc00;
            font-weight: 700;
        }
        article em {
            color: #b39ddb;
            font-style: italic;
        }
        .highlight-box {
            background: rgba(255, 204, 0, 0.1);
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: rgba(33, 150, 243, 0.15);
            padding: 1.5rem;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(33, 150, 243, 0.3);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: #4fc3f7;
            margin-bottom: 1rem;
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            height: fit-content;
            border: 1px solid rgba(255, 204, 0, 0.1);
        }
        aside h3 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        aside h3 i {
            margin-right: 10px;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2.5rem;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #4fc3f7;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-box input:focus, .comment-form input:focus, .comment-form textarea:focus, .rating-form select:focus {
            outline: none;
            border-color: #ffcc00;
            box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        button {
            background: linear-gradient(to right, #ff9800, #ffcc00);
            color: #1a237e;
            border: none;
            padding: 12px 25px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        button:hover {
            background: linear-gradient(to right, #ffcc00, #ffeb3b);
            transform: scale(1.03);
        }
        button i {
            margin-right: 10px;
        }
        .stars {
            display: flex;
            justify-content: center;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffcc00;
        }
        .article-image {
            margin: 2.5rem 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
        }
        .article-image figcaption {
            font-style: italic;
            margin-top: 10px;
            color: #b0bec5;
            font-size: 0.95rem;
        }
        .web-links-section {
            background: rgba(26, 35, 126, 0.8);
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: rgba(255, 204, 0, 0.1);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 204, 0, 0.2);
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.25);
            transform: translateY(-3px);
        }
        .web-link a {
            font-weight: 600;
            font-size: 1rem;
            display: block;
        }
        footer {
            background: #0d0d3d;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            font-size: 0.95rem;
            color: #b0bec5;
            border-top: 1px solid #303f9f;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(26, 35, 126, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 0;
                width: 100%;
            }
            nav ul li a {
                padding: 1rem 2rem;
                border-radius: 0;
                justify-content: center;
            }
            .hamburger {
                display: flex;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.8rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
        }
