        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            color-scheme: light dark;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: #2a5caa; transition: color 0.3s; }
        a:hover { color: #e63946; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            color: #fff;
            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 a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fbbf24;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: #e63946; }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2d3748;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #e2e8f0;
            padding: 0.75rem;
            border-bottom: 1px solid #4a5568;
        }
        .nav-mobile a:hover {
            background: #4a5568;
            color: #fbbf24;
        }
        .breadcrumb {
            background: #edf2f7;
            padding: 0.75rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #4a5568; }
        .breadcrumb a:hover { color: #2a5caa; }
        .breadcrumb span { color: #718096; }
        main { padding: 2rem 0; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article h1 {
            font-size: 2.5rem;
            color: #1a365d;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            article h1 { font-size: 2rem; }
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            color: #718096;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .featured-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        @media (max-width: 768px) {
            .featured-img img { height: 250px; }
        }
        article section {
            margin-bottom: 3rem;
        }
        article h2 {
            font-size: 1.8rem;
            color: #2d3748;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #fbbf24;
        }
        article h3 {
            font-size: 1.4rem;
            color: #4a5568;
            margin: 1.5rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #2d3748;
        }
        .highlight {
            background: #fff9db;
            border-left: 4px solid #fbbf24;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background: #e8f4fd;
            border: 1px solid #2a5caa;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .tip-box h4 {
            color: #2a5caa;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: #fff;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #1a365d;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #cbd5e0;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: #2a5caa;
            color: #fff;
            border: none;
            padding: 0 1.25rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #1a365d; }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #cbd5e0;
            cursor: pointer;
        }
        .stars .active { color: #fbbf24; }
        .rating-form input, .comment-form input,
        .comment-form textarea {
            padding: 0.75rem;
            border: 1px solid #cbd5e0;
            border-radius: 5px;
            font-family: inherit;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: #e63946;
            color: #fff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            text-align: center;
        }
        .btn:hover { background: #c1121f; }
        .footer-links {
            background: #2d3748;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            background: #4a5568;
            margin: 0.75rem 0;
            padding: 1rem;
            border-radius: 5px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #5a6578;
            transform: translateX(10px);
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 600;
            display: block;
        }
        .site-footer {
            background: #1a202c;
            color: #a0aec0;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .copyright {
            font-size: 0.9rem;
        }
        .text-bold { font-weight: 800; }
        .text-center { text-align: center; }
        .emoji { font-size: 1.2em; }
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #cbd5e0, transparent);
            margin: 2rem 0;
        }
