        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f7ff;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(106, 17, 203, 0.2);
        }
        .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: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: #ffcc00;
            font-size: 2.5rem;
        }
        .logo-text {
            background: linear-gradient(to right, #ffcc00, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #6a11cb;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: #e9e1ff;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #d5c8ff;
        }
        .breadcrumb a {
            color: #6a11cb;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px dashed #e9e1ff;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .publish-date, .author {
            color: #666;
            font-size: 0.95rem;
        }
        .author {
            font-weight: 600;
            color: #6a11cb;
        }
        h1 {
            font-size: 2.8rem;
            color: #2d0b6e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: #6a11cb;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.5rem;
            color: #2575fc;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff8cc;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .lead {
            font-size: 1.3rem;
            color: #444;
            font-weight: 600;
            background-color: #f0f7ff;
            padding: 1.5rem;
            border-left: 5px solid #2575fc;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        .note {
            background-color: #e1f7ff;
            border-left: 5px solid #00bcd4;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .warning {
            background-color: #ffeaa7;
            border-left: 5px solid #fdcb6e;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        ul.custom-list {
            list-style: none;
            padding-left: 0;
        }
        ul.custom-list li {
            padding: 0.7rem 0 0.7rem 2.5rem;
            position: relative;
        }
        ul.custom-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0.7rem;
            background-color: #6a11cb;
            color: white;
            width: 1.8rem;
            height: 1.8rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        .article-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-image img {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        .interactive-box {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
            text-align: center;
            box-shadow: 0 10px 20px rgba(240, 147, 251, 0.3);
        }
        .interactive-box h3 {
            color: white;
            margin-top: 0;
        }
        .interactive-box p {
            margin-bottom: 1.5rem;
        }
        .search-form {
            display: flex;
            margin: 2rem 0;
        }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #6a11cb;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: #6a11cb;
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #5809b5;
        }
        .rating-section, .comment-section {
            background-color: #f8f5ff;
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
            border: 1px solid #e9e1ff;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 1rem 0 1.5rem;
            justify-content: center;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #d5c8ff;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #6a11cb;
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(106, 17, 203, 0.3);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .sidebar {
                order: -1;
            }
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #6a11cb;
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffcc00;
        }
        .code-list {
            list-style: none;
            padding-left: 0;
        }
        .code-list li {
            padding: 1rem;
            background-color: #f0f7ff;
            margin-bottom: 0.8rem;
            border-radius: 10px;
            border-left: 5px solid #2575fc;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .copy-btn {
            background-color: #6a11cb;
            color: white;
            border: none;
            padding: 0.3rem 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background-color 0.3s;
        }
        .copy-btn:hover {
            background-color: #5809b5;
        }
        .footer-links {
            background-color: #2d0b6e;
            color: white;
            padding: 3rem 2rem;
            margin-top: 3rem;
        }
        .links-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.15);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background-color: #1a0644;
            color: #bbb;
            padding: 2rem;
            text-align: center;
            font-size: 0.95rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: #6a11cb;
            transform: scale(1.1);
        }
        .copyright {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .divider {
            height: 3px;
            background: linear-gradient(to right, transparent, #6a11cb, transparent);
            margin: 2.5rem 0;
            border: none;
        }
        .tag {
            display: inline-block;
            background-color: #e9e1ff;
            color: #6a11cb;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
