:root {
            --primary: #ff6b35;
            --primary-dark: #e55a2b;
            --secondary: #2a4365;
            --dark: #1a202c;
            --light: #f7fafc;
            --gray: #718096;
            --success: #38a169;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #d1d5db;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff8e64;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(15, 20, 25, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary);
        }
        .logo span {
            background: linear-gradient(90deg, #ff6b35, #ff8e64);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #cbd5e0;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: white;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile a {
            display: block;
            color: #cbd5e0;
            padding: 15px 0;
            border-bottom: 1px solid #2d3748;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .nav-mobile a:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        .breadcrumb {
            background-color: #1a202c;
            padding: 12px 0;
            margin-bottom: 30px;
            border-radius: var(--radius);
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb i {
            font-size: 0.8rem;
            color: var(--gray);
        }
        .hero {
            background: linear-gradient(rgba(15, 20, 25, 0.9), rgba(15, 20, 25, 0.9)), url('https://images.unsplash.com/photo-1552820728-8b83bb6b773f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 60px 0;
            border-radius: var(--radius);
            margin-bottom: 40px;
            text-align: center;
            border: 1px solid #2d3748;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cbd5e0;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: #1a202c;
            padding: 25px;
            border-radius: var(--radius);
            border: 1px solid #2d3748;
        }
        .search-box h2 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #4a5568;
            background-color: #2d3748;
            color: white;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background-color: var(--primary-dark);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #1a202c;
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid #2d3748;
        }
        .article-content h2, .article-content h3 {
            color: white;
            margin-top: 30px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        .article-content h2 {
            font-size: 1.8rem;
        }
        .article-content h3 {
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: var(--primary);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #2a4365, #1a202c);
            border-left: 5px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .feature-img {
            width: 100%;
            border-radius: var(--radius);
            margin: 30px 0;
            border: 2px solid #4a5568;
            transition: transform 0.5s;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: #1a202c;
            padding: 25px;
            border-radius: var(--radius);
            border: 1px solid #2d3748;
        }
        .widget h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--primary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        .stars i {
            color: #4a5568;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffc107;
        }
        .rating-form input, .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background-color: #2d3748;
            border: 1px solid #4a5568;
            color: white;
            border-radius: var(--radius);
        }
        .rating-form button {
            width: 100%;
            padding: 15px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .rating-form button:hover {
            background-color: var(--primary-dark);
        }
        .comments-section {
            margin-top: 60px;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 150px;
            padding: 15px;
            background-color: #2d3748;
            border: 1px solid #4a5568;
            color: white;
            border-radius: var(--radius);
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background-color: #2d3748;
            border: 1px solid #4a5568;
            color: white;
            border-radius: var(--radius);
        }
        .comment-form button {
            padding: 15px 30px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: var(--primary-dark);
        }
        .footer-links {
            background-color: #1a202c;
            padding: 40px 0;
            margin-top: 60px;
            border-top: 2px solid var(--primary);
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #2d3748;
            padding: 15px;
            border-radius: var(--radius);
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #374151;
        }
        .web-link a {
            color: #cbd5e0;
            font-weight: 500;
            display: block;
            padding: 8px 0;
        }
        .web-link a:hover {
            color: white;
            padding-left: 10px;
        }
        .site-footer {
            background-color: #0f1419;
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid #2d3748;
        }
        .copyright {
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 20px;
        }
        .copyright a {
            color: var(--primary);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .tag {
            display: inline-block;
            background-color: #2d3748;
            color: #cbd5e0;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: var(--radius);
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
