:root {
            --primary-color: #d32f2f;
            --primary-dark: #9a0007;
            --primary-light: #ff6659;
            --secondary-color: #1a237e;
            --accent-color: #ffab00;
            --text-dark: #212121;
            --text-light: #757575;
            --bg-light: #f5f5f5;
            --bg-dark: #121212;
            --border-color: #e0e0e0;
            --success-color: #388e3c;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
            --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .text-center {
            text-align: center;
        }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .mb-5 { margin-bottom: 3rem; }
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }
        .mt-5 { margin-top: 3rem; }
        .py-2 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
        .py-4 { padding-top: 2rem; padding-bottom: 2rem; }
        .px-2 { padding-left: 1rem; padding-right: 1rem; }
        .px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
        .d-none { display: none; }
        @media (min-width: 768px) {
            .d-md-block { display: block; }
            .d-md-flex { display: flex; }
        }
        header {
            background-color: var(--bg-dark);
            color: white;
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .logo:hover {
            color: var(--accent-color);
        }
        .logo i {
            color: var(--primary-color);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .search-form {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-family: var(--font-body);
            font-size: 1rem;
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        .search-input::placeholder {
            color: rgba(255,255,255,0.7);
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0 var(--radius) var(--radius) 0;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--primary-dark);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        nav {
            padding: 1rem 0;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-link {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-color);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 0.75rem 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            padding-left: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 0.5rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                margin-top: 1rem;
                max-width: 100%;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                order: 2;
            }
            .nav-list {
                flex-direction: column;
                gap: 0;
                align-items: flex-start;
            }
            .nav-link {
                display: block;
                width: 100%;
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-show {
                display: block;
            }
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .hero-tags {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        .tag {
            background-color: rgba(255,255,255,0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid rgba(255,255,255,0.3);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
        main {
            padding: 2rem 0;
        }
        .article-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .author img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary-dark);
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary-color);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary-color);
            border-left: 4px solid var(--accent-color);
            padding-left: 1rem;
            margin: 2rem 0;
        }
        .highlight {
            background-color: rgba(255, 171, 0, 0.1);
            padding: 1.5rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent-color);
            margin: 2rem 0;
        }
        .note {
            background-color: rgba(26, 35, 126, 0.05);
            padding: 1.5rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--secondary-color);
            margin: 2rem 0;
        }
        .tip {
            background-color: rgba(56, 142, 60, 0.05);
            padding: 1.5rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--success-color);
            margin: 2rem 0;
        }
        .image-wrapper {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            padding: 0.5rem;
            background-color: var(--bg-light);
            font-size: 0.9rem;
        }
        .table-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 1rem;
        }
        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        th {
            background-color: var(--bg-light);
            font-weight: 700;
            color: var(--secondary-color);
        }
        tr:hover {
            background-color: rgba(0,0,0,0.02);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background-color: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            border-top: 4px solid var(--primary-color);
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
        }
        .rating-section, .comments-section, .search-section {
            background-color: var(--bg-light);
            border-radius: var(--radius);
            padding: 2rem;
            margin: 3rem 0;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }
        .section-title i {
            color: var(--primary-color);
        }
        .rating-form, .comment-form {
            margin-bottom: 2rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-color);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: var(--radius);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
        }
        .btn-secondary:hover {
            background-color: #0d1a66;
        }
        .comments-list {
            margin-top: 2rem;
        }
        .comment {
            background-color: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--secondary-color);
        }
        .comment-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .comment-rating {
            color: var(--accent-color);
        }
        .comment-body {
            color: var(--text-dark);
        }
        .internal-links {
            background-color: var(--bg-dark);
            color: white;
            padding: 3rem 0;
        }
        .internal-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: white;
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .web-link a:last-child {
            border-bottom: none;
        }
        .web-link a:hover {
            color: var(--accent-color);
            padding-left: 0.5rem;
        }
        footer {
            background-color: #000;
            color: rgba(255,255,255,0.7);
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-link {
            color: rgba(255,255,255,0.7);
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-link:hover {
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        @media print {
            header, nav, .breadcrumb, .rating-section, .comments-section, .internal-links, footer {
                display: none;
            }
            body {
                font-size: 12pt;
                color: #000;
                background: #fff;
            }
            h1, h2, h3 {
                page-break-after: avoid;
            }
            p, h2, h3 {
                orphans: 3;
                widows: 3;
            }
            .image-wrapper {
                page-break-inside: avoid;
            }
        }
