        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.8;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        button, input, textarea {
            font-family: inherit;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1.2rem 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #f59e0b;
            font-size: 2rem;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover {
            background-color: #334155;
            color: #fbbf24;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fbbf24;
            background: none;
            border: none;
            cursor: pointer;
        }
        .search-form {
            display: flex;
            margin-left: 2rem;
        }
        .search-input {
            padding: 0.6rem 1rem;
            border: 1px solid #475569;
            border-radius: 30px 0 0 30px;
            background: #1e293b;
            color: #e2e8f0;
            width: 220px;
        }
        .search-btn {
            background: #f59e0b;
            color: #0f172a;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0.6rem 1.2rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #fbbf24;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #1e293b;
            font-size: 0.9rem;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #fbbf24;
        }
        main {
            padding: 2rem 0;
            background-color: #0f172a;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(90deg, #1e293b, #334155);
            border-radius: 12px;
            border-left: 6px solid #f59e0b;
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .article-meta {
            color: #94a3b8;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .article-meta i {
            margin-right: 5px;
            color: #f59e0b;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: #1e293b;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
        }
        h2 {
            color: #60a5fa;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #475569;
            font-size: 1.8rem;
        }
        h3 {
            color: #38bdf8;
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #d1d5db;
        }
        .highlight {
            background-color: rgba(245, 158, 11, 0.15);
            border-left: 4px solid #f59e0b;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background: #0c4a6e;
            border: 1px solid #38bdf8;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .tip-icon {
            color: #7dd3fc;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .image-wrapper {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .image-wrapper img {
            border-radius: 12px;
            border: 2px solid #475569;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
            transition: transform 0.4s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #94a3b8;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
            color: #d1d5db;
        }
        li {
            margin-bottom: 0.8rem;
        }
        strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        aside {
            background: #1e293b;
            padding: 2rem;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 120px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .sidebar-section {
            margin-bottom: 2.5rem;
        }
        .sidebar-title {
            color: #fbbf24;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #475569;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 0.8rem;
        }
        .sidebar-links a {
            display: block;
            padding: 0.8rem 1rem;
            background: #0f172a;
            border-radius: 8px;
            transition: all 0.3s;
            color: #cbd5e1;
            border-left: 3px solid transparent;
        }
        .sidebar-links a:hover {
            background: #334155;
            border-left-color: #f59e0b;
            color: #fbbf24;
        }
        .ad-box {
            background: linear-gradient(135deg, #334155, #1e293b);
            border: 1px dashed #64748b;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            color: #94a3b8;
            margin-top: 2rem;
        }
        .interactive-section {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 3rem;
            border: 1px solid #475569;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #cbd5e1;
            font-weight: 600;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            direction: ltr;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #fbbf24;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #475569;
            background: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
            color: #0f172a;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(245, 158, 11, 0.4);
        }
        .long-tail-links {
            margin: 4rem 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: #1e293b;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #60a5fa;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #334155;
            transform: translateX(5px);
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 600;
            display: block;
        }
        footer {
            background: #0f172a;
            border-top: 2px solid #334155;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: #fbbf24;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #cbd5e1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
                margin-top: 2rem;
            }
            h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links, .search-form {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: #1e293b;
                flex-direction: column;
                padding: 2rem;
                border-top: 1px solid #334155;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
                z-index: 999;
                display: none;
            }
            .mobile-nav.active {
                display: flex;
            }
            .mobile-nav li {
                width: 100%;
            }
            .mobile-nav a {
                padding: 1rem;
                border-radius: 8px;
                justify-content: center;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .article-header {
                padding: 1.5rem;
            }
            article, aside {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .long-tail-links {
                grid-template-columns: 1fr;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .rating-stars label {
                font-size: 1.6rem;
            }
        }
