        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Arial, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d1117;
            color: #e6edf3;
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            color: #58a6ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1f6feb;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .site-header {
            background-color: #161b22;
            border-bottom: 1px solid #30363d;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo a:hover {
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e6edf3;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #161b22;
            border-top: 1px solid #30363d;
            display: none;
            flex-direction: column;
            padding: 20px;
            gap: 15px;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 10px;
            border-bottom: 1px solid #30363d;
            font-size: 1.2rem;
        }
        .breadcrumb {
            background-color: #1a1f29;
            padding: 12px 20px;
            font-size: 0.95rem;
            border-bottom: 1px solid #30363d;
        }
        .breadcrumb a {
            color: #8b949e;
        }
        .breadcrumb span {
            color: #8b949e;
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(circle at center, #1f2a3a 0%, #0d1117 100%);
            border-bottom: 1px solid #30363d;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff6b6b, #ffd93d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #c9d1d9;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto 0;
            background: #161b22;
            border-radius: 50px;
            padding: 5px;
            display: flex;
            border: 1px solid #30363d;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 15px 20px;
            color: #e6edf3;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(90deg, #238636, #2ea043);
            border: none;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #2ea043, #3fb950);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #161b22;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #30363d;
        }
        .article-content h2, .article-content h3 {
            margin-top: 40px;
            margin-bottom: 20px;
            color: #ffd93d;
        }
        .article-content h2 {
            font-size: 2.2rem;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
        }
        .article-content h3 {
            font-size: 1.8rem;
            border-left: 5px solid #6bcf7f;
            padding-left: 15px;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: #ffb347;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1f29, #252b3a);
            border-left: 5px solid #58a6ff;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            border-radius: 12px;
            border: 2px solid #30363d;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #8b949e;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: #161b22;
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #30363d;
        }
        .widget h3 {
            color: #ff6b6b;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd93d;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-group input, .form-group textarea {
            padding: 12px 15px;
            background-color: #0d1117;
            border: 1px solid #30363d;
            border-radius: 8px;
            color: #e6edf3;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #8957e5, #b87cf2);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #b87cf2, #d9a9ff);
        }
        .internal-links {
            background-color: #1a1f29;
            padding: 50px 20px;
            border-top: 1px solid #30363d;
            border-bottom: 1px solid #30363d;
        }
        .internal-links h2 {
            text-align: center;
            margin-bottom: 40px;
            color: #6bcf7f;
            font-size: 2.2rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: linear-gradient(135deg, #252b3a, #161b22);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #30363d;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #58a6ff;
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            display: block;
        }
        .site-footer {
            background-color: #161b22;
            padding: 60px 20px 30px;
            border-top: 1px solid #30363d;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
        }
        .footer-logo {
            flex: 1;
            min-width: 300px;
        }
        .footer-logo .logo {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .footer-links {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
        }
        .footer-links h4 {
            color: #ffd93d;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #30363d;
            color: #8b949e;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .text-center {
            text-align: center;
        }
        .mb-4 {
            margin-bottom: 2rem;
        }
