:root {
            --primary: #ff5500;
            --primary-dark: #cc4400;
            --secondary: #1a1a2e;
            --accent: #00a8ff;
            --light: #f8f9fa;
            --dark: #16213e;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 2px solid var(--primary);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo i {
            color: var(--accent);
            font-size: 2rem;
        }
        .logo a {
            color: inherit;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
            margin: 0 20px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--primary);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            background-color: var(--secondary);
            padding: 0;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            display: block;
            padding: 18px 25px;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            border-bottom: 3px solid transparent;
        }
        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
            background: rgba(255, 85, 0, 0.1);
            border-bottom-color: var(--primary);
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(26, 26, 46, 0.7);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 30px 0 50px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 26, 46, 0.7);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 85, 0, 0.2);
        }
        h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        h2 {
            color: var(--accent);
            font-size: 1.8rem;
            margin: 35px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0, 168, 255, 0.3);
        }
        h3 {
            color: #ffcc00;
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,85,0,0.2), transparent);
            padding: 15px;
            border-left: 4px solid var(--primary);
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 25px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border: 2px solid var(--primary);
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .tip-card {
            background: rgba(0, 168, 255, 0.1);
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 168, 255, 0.3);
            transition: var(--transition);
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .tip-card i {
            color: var(--accent);
            font-size: 2rem;
            margin-bottom: 15px;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 30px 0;
            gap: 20px;
        }
        .stat-box {
            text-align: center;
            padding: 20px;
            background: rgba(255, 85, 0, 0.1);
            border-radius: var(--border-radius);
            min-width: 150px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--gray);
        }
        .interview {
            background: rgba(255, 204, 0, 0.05);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border-left: 5px solid #ffcc00;
        }
        .question {
            color: #ffcc00;
            font-weight: 600;
            margin-top: 20px;
        }
        .answer {
            color: #cbd5e1;
            padding-left: 15px;
            border-left: 2px solid #ffcc00;
            margin: 10px 0 20px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(26, 26, 46, 0.7);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-top: 0;
            font-size: 1.3rem;
        }
        .download-box {
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 30px 20px;
        }
        .download-box .btn {
            background: white;
            color: var(--primary);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            display: inline-block;
            margin-top: 20px;
            transition: var(--transition);
        }
        .download-box .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .requirements ul {
            list-style: none;
            padding-left: 0;
        }
        .requirements li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
        }
        .user-interaction {
            margin-top: 40px;
            background: rgba(26, 26, 46, 0.7);
            border-radius: var(--border-radius);
            padding: 30px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .rating-form .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid rgba(0, 168, 255, 0.3);
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.2);
        }
        .btn-submit {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 85, 0, 0.3);
        }
        .web-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0 20px;
            justify-content: center;
        }
        .web-link {
            background: rgba(255, 85, 0, 0.1);
            padding: 12px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 85, 0, 0.3);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 85, 0, 0.2);
            transform: translateY(-3px);
        }
        footer {
            background: var(--secondary);
            color: white;
            padding-top: 40px;
            margin-top: 50px;
            border-top: 3px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 85, 0, 0.3);
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .copyright {
            text-align: center;
            padding: 25px;
            background: rgba(0, 0, 0, 0.3);
            color: var(--gray);
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                flex: 1 1 100%;
                margin: 15px 0 0;
            }
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--secondary);
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-list {
                flex-direction: column;
            }
            .nav-link {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav.active {
                display: block;
            }
            .stats {
                flex-direction: column;
                align-items: center;
            }
            .stat-box {
                width: 100%;
                max-width: 300px;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 2px;
        }
        .text-bold {
            font-weight: 800;
            color: var(--primary);
        }
        .text-accent {
            color: var(--accent);
        }
        .text-center {
            text-align: center;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .flex {
            display: flex;
        }
        .justify-center {
            justify-content: center;
        }
