        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary-color: #1a237e;
            --secondary-color: #ff6f00;
            --accent-color: #4fc3f7;
            --dark-bg: #0d1220;
            --light-bg: #f5f5f5;
            --text-dark: #212121;
            --text-light: #f5f5f5;
            --border-color: #37474f;
            --success-color: #4caf50;
            --warning-color: #ff9800;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(26, 35, 126, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(255, 111, 0, 0.1) 0%, transparent 20%);
        }
        h1, h2, h3, h4, h5, h6 {
            color: #ffb74d;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ff6f00, #ffca28);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #4fc3f7;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        strong {
            color: #ffca28;
            font-weight: 700;
        }
        em {
            color: #81c784;
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(13, 18, 32, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 2px solid var(--secondary-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ff6f00;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .logo a {
            color: inherit;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo-icon {
            color: #4fc3f7;
            margin-right: 10px;
            font-size: 2.2rem;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 4px;
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 111, 0, 0.2);
            text-decoration: none;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            right: 15px;
            height: 2px;
            background-color: var(--secondary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .desktop-nav a:hover::after {
            transform: scaleX(1);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            position: fixed;
            top: 80px;
            right: -100%;
            width: 280px;
            height: calc(100vh - 80px);
            background-color: var(--dark-bg);
            padding: 30px 20px;
            transition: right 0.4s ease;
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            display: block;
            color: var(--text-light);
            padding: 15px 20px;
            margin-bottom: 10px;
            border-radius: 6px;
            background-color: rgba(255, 255, 255, 0.05);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 111, 0, 0.3);
            text-decoration: none;
        }
        .breadcrumb {
            background-color: rgba(26, 35, 126, 0.3);
            padding: 12px 0;
            margin-bottom: 30px;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 10px;
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--accent-color);
        }
        .breadcrumb a {
            color: #bbdefb;
        }
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        .search-container {
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.7), rgba(13, 18, 32, 0.9));
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 1px solid rgba(79, 195, 247, 0.3);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 16px 20px;
            border: 2px solid var(--accent-color);
            border-radius: 8px 0 0 8px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .search-input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
        }
        .search-button {
            background: linear-gradient(90deg, var(--accent-color), #29b6f6);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-button:hover {
            background: linear-gradient(90deg, #29b6f6, var(--accent-color));
            box-shadow: 0 0 15px rgba(79, 195, 247, 0.7);
        }
        .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: rgba(13, 18, 32, 0.7);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 111, 0, 0.2);
        }
        .sidebar {
            background-color: rgba(13, 18, 32, 0.7);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(79, 195, 247, 0.2);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .sidebar-widget:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffb74d;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 111, 0, 0.5);
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 3px solid var(--secondary-color);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 15px;
            font-style: italic;
            color: #b0bec5;
            font-size: 0.95rem;
        }
        .content-highlight {
            background: linear-gradient(90deg, rgba(26, 35, 126, 0.5), rgba(255, 111, 0, 0.3));
            border-left: 5px solid var(--secondary-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background-color: rgba(33, 150, 243, 0.1);
            border: 1px solid #2196f3;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            position: relative;
            padding-left: 70px;
        }
        .tip-box::before {
            content: '\f0eb';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 20px;
            top: 20px;
            font-size: 2rem;
            color: #ffca28;
        }
        .warning-box {
            background-color: rgba(255, 152, 0, 0.1);
            border: 1px solid var(--warning-color);
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            position: relative;
            padding-left: 70px;
        }
        .warning-box::before {
            content: '\f071';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 20px;
            top: 20px;
            font-size: 2rem;
            color: var(--warning-color);
        }
        .user-interaction {
            background-color: rgba(26, 35, 126, 0.3);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .rating-form, .comment-form {
            margin-bottom: 40px;
        }
        .rating-form h3, .comment-form h3 {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #ffca28;
            transform: scale(1.2);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #bbdefb;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(90deg, var(--secondary-color), #ff9800);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .submit-button:hover {
            background: linear-gradient(90deg, #ff9800, var(--secondary-color));
            box-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
            transform: translateY(-3px);
        }
        .web-links-section {
            margin: 50px 0;
            padding: 40px 0;
            border-top: 2px solid rgba(255, 111, 0, 0.3);
            border-bottom: 2px solid rgba(255, 111, 0, 0.3);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.4), rgba(13, 18, 32, 0.7));
            border-radius: 8px;
            padding: 20px;
            transition: var(--transition);
            border: 1px solid rgba(79, 195, 247, 0.2);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border-color: var(--accent-color);
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.6), rgba(13, 18, 32, 0.9));
        }
        .web-link a {
            color: #e3f2fd;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: var(--secondary-color);
            text-decoration: none;
        }
        footer {
            background-color: var(--dark-bg);
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 3px solid var(--secondary-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffb74d;
            font-size: 1.5rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 111, 0, 0.5);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bbdefb;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 10px;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #90a4ae;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .header-container {
                padding: 12px 0;
            }
            .logo {
                font-size: 2rem;
            }
            .article-content, .sidebar {
                padding: 25px;
            }
            .main-content {
                gap: 30px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 8px 8px 0 0;
                margin-bottom: 0;
            }
            .search-button {
                border-radius: 0 0 8px 8px;
                padding: 16px;
            }
            .content-highlight, .tip-box, .warning-box {
                padding: 20px;
            }
            .tip-box, .warning-box {
                padding-left: 20px;
            }
            .tip-box::before, .warning-box::before {
                position: relative;
                left: 0;
                top: 0;
                margin-bottom: 15px;
                display: block;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .mt-50 { margin-top: 50px; }
        .py-30 { padding-top: 30px; padding-bottom: 30px; }
        .emoji { font-size: 1.2em; margin: 0 5px; }
