        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: #0c0c0c;
            background-image: radial-gradient(circle at 15% 50%, rgba(28, 58, 12, 0.15) 0%, transparent 55%);
        }
        a {
            color: #4CAF50;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #8BC34A;
            transform: translateY(-1px);
        }
        .header {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a3d0a 100%);
            padding: 1.2rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 30, 0, 0.7);
            border-bottom: 2px solid #2E7D32;
        }
        .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, #4CAF50, #8BC34A);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
            letter-spacing: 1px;
        }
        .logo span {
            color: #FF9800;
            font-weight: 700;
        }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #FF9800;
            transition: width 0.4s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4CAF50;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #1a1a1a;
            flex-direction: column;
            padding: 1.5rem 5%;
            border-top: 1px solid #333;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem 0;
            border-bottom: 1px solid #333;
            font-size: 1.2rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: #151515;
            padding: 0.8rem 5%;
            font-size: 0.95rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb a {
            color: #AAAAAA;
        }
        .breadcrumb a:hover {
            color: #4CAF50;
        }
        .breadcrumb span {
            color: #777;
            margin: 0 8px;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .main-content {
            background: rgba(20, 20, 20, 0.9);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 20, 0, 0.5);
            border: 1px solid #333;
        }
        article h1 {
            font-size: 2.8rem;
            color: #4CAF50;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 5px solid #FF9800;
            padding-left: 1.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: #8BC34A;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2E7D32;
        }
        article h3 {
            font-size: 1.6rem;
            color: #CDDC39;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
            color: #ddd;
        }
        article strong {
            color: #FF9800;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(30, 60, 20, 0.7), rgba(20, 40, 10, 0.9));
            border-left: 5px solid #FF9800;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 10px 10px 0;
            box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-image {
            max-width: 100%;
            border-radius: 10px;
            border: 3px solid #2E7D32;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #aaa;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(25, 25, 25, 0.9);
            border-radius: 10px;
            padding: 1.8rem;
            border: 1px solid #333;
        }
        .widget h3 {
            color: #4CAF50;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: #FF9800;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem;
            background: #111;
            border: 1px solid #333;
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: #fff;
            font-size: 1rem;
        }
        .search-button {
            background: #2E7D32;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #4CAF50;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1.2rem 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #FFD700;
        }
        .submit-rating {
            background: #FF9800;
            color: #000;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
            width: 100%;
        }
        .submit-rating:hover {
            background: #FFB74D;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            background: #111;
            border: 1px solid #333;
            border-radius: 5px;
            color: #fff;
            font-family: inherit;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            background: #2196F3;
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
            width: 100%;
        }
        .comment-form button:hover {
            background: #64B5F6;
        }
        .long-tail-links {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding: 0 5%;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: rgba(30, 30, 30, 0.8);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #4CAF50;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(5px);
            background: rgba(40, 40, 40, 0.9);
        }
        .footer {
            background: #111;
            padding: 3rem 5% 2rem;
            margin-top: 4rem;
            border-top: 2px solid #2E7D32;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            color: #777;
            font-size: 0.95rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .logo a {
                font-size: 1.9rem;
            }
            .main-content {
                padding: 1.8rem;
            }
            .long-tail-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-content, .sidebar .widget {
            animation: fadeIn 0.8s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .section-divider {
            height: 3px;
            background: linear-gradient(to right, transparent, #4CAF50, transparent);
            margin: 3rem 0;
            border: none;
        }
