        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
            color: #f5f5f5;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .header {
            background: rgba(12, 36, 97, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff9a00, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
            color: #ff9a00;
        }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-desktop a:hover {
            background: rgba(255, 154, 0, 0.2);
            transform: translateY(-3px);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #ff9a00;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100vh;
            background: #0c2461;
            padding: 4rem 2rem;
            transition: left 0.5s ease;
            z-index: 999;
            box-shadow: 5px 0 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            left: 0;
        }
        .nav-mobile a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1.2rem 0;
            font-size: 1.3rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: padding-left 0.3s ease;
        }
        .nav-mobile a:hover {
            padding-left: 20px;
            color: #ff9a00;
        }
        .close-menu {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #ffcc00;
            text-decoration: none;
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 10px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #00d4ff;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(0, 212, 255, 0.3);
        }
        h3 {
            font-size: 1.6rem;
            color: #9bcaff;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
            color: #e0e0ff;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-item {
            background: rgba(30, 55, 153, 0.7);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #3a6eff;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-8px);
            border-color: #ffcc00;
        }
        .stat-item i {
            font-size: 2.5rem;
            color: #00d4ff;
            margin-bottom: 1rem;
        }
        .stat-item h4 {
            font-size: 1.8rem;
            color: #ffcc00;
            margin-bottom: 0.5rem;
        }
        .article-img {
            width: 100%;
            border-radius: 15px;
            margin: 2.5rem 0;
            border: 3px solid #3a6eff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            height: fit-content;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: #ff9a00;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            background: linear-gradient(to right, #ff9a00, #ffcc00);
            color: #0c2461;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #ffcc00, #ff9a00);
            transform: scale(1.05);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffcc00;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 5px;
            transition: transform 0.2s ease;
        }
        .stars i:hover {
            transform: scale(1.3);
        }
        .rating-btn {
            background: #00d4ff;
            color: #0c2461;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }
        .rating-btn:hover {
            background: #0099cc;
            transform: translateY(-3px);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            background: linear-gradient(to right, #3a6eff, #00d4ff);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }
        .comment-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(58, 110, 255, 0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
            margin: 3rem auto;
            max-width: 1400px;
            padding: 0 2rem;
        }
        .web-link {
            background: rgba(30, 55, 153, 0.6);
            padding: 1.2rem;
            border-radius: 12px;
            border-left: 4px solid #ff9a00;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(58, 110, 255, 0.7);
            transform: translateX(10px);
        }
        .web-link a {
            color: #ffcc00;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .footer {
            background: #0a1a4a;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #ff9a00;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            .article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article > * {
            animation: fadeIn 0.8s ease forwards;
        }
        .emoji {
            font-size: 1.5rem;
            margin: 0 5px;
            vertical-align: middle;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
