        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        body {
            background: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #a5d8ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section, header, footer {
            padding: 40px 0;
        }
        .header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            border-bottom: 2px solid #2a3a5a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo span {
            color: #4dabf7;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background: rgba(77, 171, 247, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e0e0e0;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background: #1a2332;
            border-radius: 10px;
            margin-top: 20px;
            padding: 20px;
            gap: 15px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            background: radial-gradient(circle at 50% 50%, #1a2b3a, #0f1419);
            padding: 60px 20px;
            border-bottom: 1px solid #2a3a5a;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ffa726, #4dabf7);
            -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: #ccc;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background: #1e2a3a;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-button {
            padding: 0 30px;
            background: linear-gradient(90deg, #4dabf7, #339af0);
            border: none;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #339af0, #228be6);
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: #161e29;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .article h2, .article h3 {
            color: #4dabf7;
            margin: 30px 0 15px;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
        }
        .article h2 {
            font-size: 2rem;
        }
        .article h3 {
            font-size: 1.6rem;
        }
        .article p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 107, 107, 0.1);
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .code-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .code-item {
            background: #1e2a3a;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 2px dashed #4dabf7;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .code-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(77, 171, 247, 0.3);
        }
        .code-item .code {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffa726;
            margin: 10px 0;
            letter-spacing: 2px;
        }
        .sidebar {
            background: #161e29;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            align-self: start;
        }
        .sidebar h3 {
            color: #ffa726;
            border-bottom: 2px solid #2a3a5a;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar li:before {
            content: '►';
            color: #4dabf7;
            position: absolute;
            left: 0;
        }
        .comment-rating {
            background: #161e29;
            border-radius: 15px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ccc;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background: #1e2a3a;
            border: 1px solid #2a3a5a;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .rating-stars i {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars i.active {
            color: #ffa726;
        }
        .submit-button {
            background: linear-gradient(90deg, #40c057, #2f9e44);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-button:hover {
            background: linear-gradient(90deg, #2f9e44, #237032);
            transform: scale(1.05);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: #1e2a3a;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #4dabf7;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateX(10px);
        }
        .footer {
            background: #0a0e14;
            border-top: 2px solid #2a3a5a;
            text-align: center;
            padding: 50px 20px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 30px;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .bold {
            font-weight: bold;
            color: #ffa726;
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
