        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #2563eb; 
            --secondary: #7c3aed; 
            --accent: #f59e0b; 
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
            --success: #10b981;
            --border-radius: 12px;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f1f5f9;
            color: var(--dark);
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary);
            font-style: italic;
        }
        .logo i {
            color: var(--accent);
        }
        nav ul {
            display: flex;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
        }
        nav a:hover {
            color: var(--primary);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 12px 0;
            font-size: 0.95rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb i {
            font-size: 0.8rem;
            color: var(--gray);
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 6px solid var(--accent);
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #cbd5e1;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            background-color: #f0f9ff;
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 5px 10px;
            border-radius: 6px;
            font-weight: 600;
            color: #92400e;
        }
        .emoji {
            font-size: 1.3em;
            margin: 0 5px;
        }
        blockquote {
            border-left: 4px solid var(--success);
            background-color: #ecfdf5;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-style: italic;
            color: #065f46;
        }
        .article-img {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 30px auto;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .float-left {
            float: left;
            margin: 15px 30px 15px 0;
            max-width: 400px;
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #cbd5e1;
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .search-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #1d4ed8;
        }
        .rating {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #fbbf24;
            margin: 15px 0;
            display: flex;
            justify-content: center;
            gap: 5px;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-btn {
            background-color: var(--success);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            font-size: 1.1rem;
            transition: var(--transition);
            margin-top: 10px;
        }
        .rating-btn:hover {
            background-color: #0da271;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 2px solid #cbd5e1;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #6d28d9;
        }
        .footer-links {
            background-color: #1e293b;
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background-color: #334155;
            padding: 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border-left: 4px solid var(--accent);
        }
        .web-link:hover {
            background-color: #475569;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background-color: #0f172a;
            color: #cbd5e1;
            text-align: center;
            padding: 25px 0;
            font-size: 1rem;
        }
        .copyright {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        .copyright-links a:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: white;
                position: absolute;
                top: 100%;
                left: 0;
                box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
                padding: 20px;
                gap: 15px;
                border-top: 2px solid #e2e8f0;
            }
            nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .float-left {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
            article {
                padding: 25px;
            }
            .footer-links .container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .footer-links .container {
                grid-template-columns: 1fr;
            }
            .copyright-links {
                flex-direction: column;
                gap: 15px;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
