        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a2b3e 100%);
            color: #e0e7ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-shadow: 0 0 8px rgba(116, 192, 252, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2d4059;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4d96ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo:hover {
            transform: scale(1.03);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 6px;
        }
        .desktop-nav a:hover {
            background: rgba(77, 171, 247, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4dabf7;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(12, 26, 45, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #2d4059;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #2d4059;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #a0b3d6;
        }
        .breadcrumb a {
            color: #a0b3d6;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-box {
            margin: 30px auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 1.1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #339af0, #228be6);
            border: none;
            color: white;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #228be6, #1c7ed6);
        }
        .article-header {
            text-align: center;
            padding: 40px 0;
            border-bottom: 2px solid #2d4059;
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }
        .article-meta {
            color: #a0b3d6;
            font-size: 1rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta i {
            margin-right: 8px;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        main {
            background: rgba(20, 33, 52, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #74c0fc;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #a5d8ff;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 107, 107, 0.15);
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background: rgba(77, 171, 247, 0.1);
            border: 1px solid #4dabf7;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .tip-icon {
            font-size: 1.8rem;
            color: #4dabf7;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border: 2px solid #339af0;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #a0b3d6;
            font-size: 0.95rem;
        }
        aside {
            background: rgba(20, 33, 52, 0.7);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-title {
            font-size: 1.5rem;
            color: #74c0fc;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d4059;
        }
        .widget-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #2d4059;
            list-style: none;
        }
        .widget-list li:before {
            content: "▶";
            color: #ff6b6b;
            margin-right: 10px;
            font-size: 0.9rem;
        }
        .rating-section, .comment-section {
            background: rgba(20, 33, 52, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        .rating-title, .comment-title {
            font-size: 1.8rem;
            color: #74c0fc;
            margin-bottom: 25px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0 30px;
        }
        .star {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: all 0.3s;
        }
        .star.active {
            color: #ffd43b;
            text-shadow: 0 0 15px #ffd43b;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            color: #a5d8ff;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #2d4059;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #40c057, #2f9e44);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #2f9e44, #2b8a3e);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(47, 158, 68, 0.4);
        }
        .internal-links {
            margin: 50px 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(77, 171, 247, 0.1);
            border: 1px solid #4dabf7;
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(77, 171, 247, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #a5d8ff;
            font-weight: 600;
            display: block;
        }
        footer {
            background: #0c1a2d;
            border-top: 3px solid #2d4059;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-title {
            font-size: 1.5rem;
            color: #74c0fc;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d4059;
        }
        .footer-links li {
            list-style: none;
            padding: 10px 0;
            border-bottom: 1px dashed #2d4059;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d4059;
            color: #a0b3d6;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                padding: 12px 0;
            }
            main, aside, .rating-section, .comment-section {
                padding: 25px;
            }
            .content-area {
                gap: 25px;
            }
        }
