* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Arial, sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #0f172a;
            color: #cbd5e1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            text-decoration: none;
            color: #60a5fa;
            transition: color 0.3s;
        }
        a:hover {
            color: #93c5fd;
            text-decoration: underline;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 1.5rem 0;
            border-bottom: 3px solid #f59e0b;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 1rem;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #f59e0b, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
            color: #f59e0b;
        }
        .search-form {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #475569;
            border-radius: 30px 0 0 30px;
            background: #1e293b;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #1d4ed8, #1e40af);
        }
        nav {
            margin-top: 1.5rem;
            position: relative;
        }
        .breadcrumb {
            padding: 0.8rem 1rem;
            background-color: #1e293b;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #fbbf24;
        }
        .main-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            background: linear-gradient(90deg, #1e293b, #334155);
            padding: 1.2rem;
            border-radius: 12px;
            border: 1px solid #475569;
        }
        .main-nav a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        .main-nav a:hover {
            background-color: #3b82f6;
            color: white;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f59e0b;
            cursor: pointer;
            padding: 0.5rem;
        }
        main {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            border: 1px solid #334155;
        }
        h1 {
            color: #fbbf24;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            color: #60a5fa;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #475569;
        }
        h3 {
            color: #34d399;
            font-size: 1.6rem;
            margin: 1.8rem 0 1rem;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2.5rem;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .featured-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 15px;
            margin: 2rem auto;
            display: block;
            border: 3px solid #f59e0b;
            box-shadow: 0 8px 20px rgba(0,0,0,0.6);
            transition: transform 0.5s;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            color: #d1d5db;
        }
        .highlight {
            background-color: rgba(59, 130, 246, 0.15);
            border-left: 4px solid #3b82f6;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        .tip-box {
            background: linear-gradient(135deg, #065f46 0%, #047857 100%);
            color: #d1fae5;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid #10b981;
            position: relative;
        }
        .tip-box::before {
            content: '💡';
            position: absolute;
            top: -15px;
            left: 20px;
            font-size: 1.8rem;
            background: #0f172a;
            padding: 0 10px;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
            color: #d1d5db;
        }
        li {
            margin-bottom: 0.8rem;
        }
        strong {
            color: #fbbf24;
        }
        em {
            color: #a78bfa;
        }
        .interaction-section {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #475569;
        }
        .interaction-section h2 {
            text-align: center;
            color: #f59e0b;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .interaction-form {
            background: #0f172a;
            padding: 1.8rem;
            border-radius: 12px;
            border: 1px solid #475569;
        }
        .interaction-form label {
            display: block;
            margin-bottom: 0.5rem;
            color: #cbd5e1;
            font-weight: 600;
        }
        .interaction-form input,
        .interaction-form textarea,
        .interaction-form select {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1.2rem;
            background-color: #1e293b;
            border: 1px solid #475569;
            border-radius: 8px;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .interaction-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.2rem;
            direction: rtl;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: #fbbf24;
        }
        .submit-btn {
            background: linear-gradient(to right, #10b981, #059669);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            width: 100%;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #059669, #047857);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(5, 150, 105, 0.4);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: linear-gradient(135deg, #1e293b, #334155);
            padding: 1.2rem;
            border-radius: 10px;
            border-left: 4px solid #f59e0b;
            transition: all 0.3s;
        }
        .web-link:hover {
            transform: translateX(10px);
            background: linear-gradient(135deg, #334155, #475569);
        }
        .web-link a {
            color: #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        footer {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 3rem 2rem 1.5rem;
            border-top: 3px solid #f59e0b;
            margin-top: 3rem;
            border-radius: 20px 20px 0 0;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #fbbf24;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .header-top {
                flex-direction: column;
                gap: 1.5rem;
            }
            .search-form {
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            main {
                padding: 1.5rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: -60px;
                right: 10px;
            }
            .main-nav {
                flex-direction: column;
                display: none;
                animation: slideDown 0.5s ease;
            }
            .main-nav.active {
                display: flex;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.8rem;
                align-items: center;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
