:root {
            --primary-color: #1a5276;
            --secondary-color: #d35400;
            --accent-color: #28b463;
            --text-dark: #2c3e50;
            --text-light: #f8f9fa;
            --bg-light: #f4f6f7;
            --bg-card: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
            font-size: 16px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--bg-light);
            text-align: justify;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0e3a5c 100%);
            color: var(--text-light);
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--text-light);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #ff9a3c, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: var(--transition);
        }
        .logo a:hover {
            transform: scale(1.03);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 10%;
            width: 80%;
            height: 3px;
            background-color: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .desktop-nav a:hover::after {
            transform: scaleX(1);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-color);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-light);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: var(--bg-card);
            padding: 1rem 0;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        .breadcrumb .separator {
            margin: 0 0.5rem;
            color: #888;
        }
        .search-box {
            background-color: var(--bg-card);
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 2rem auto;
            max-width: 800px;
        }
        .search-box h2 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: var(--radius);
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--accent-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(40, 180, 99, 0.2);
        }
        .search-btn {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(26, 82, 118, 0.3);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--bg-card);
            padding: 3rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 3px solid var(--accent-color);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        .meta-info {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
        }
        .meta-info i {
            margin-right: 0.5rem;
            color: var(--accent-color);
        }
        .article-image {
            width: 100%;
            margin: 2.5rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .article-image img:hover {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background-color: #f9f9f9;
            border-bottom-left-radius: var(--radius);
            border-bottom-right-radius: var(--radius);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ddd;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #444;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e8f4ff 0%, #f0f9ff 100%);
            border-left: 5px solid var(--accent-color);
            padding: 2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 2.5rem 0;
        }
        .highlight-box h3 {
            color: var(--primary-color);
            margin-top: 0;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .tip {
            background-color: #fff9e6;
            border: 1px solid #ffd166;
            border-radius: var(--radius);
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
        }
        .tip::before {
            content: "💡";
            position: absolute;
            left: -15px;
            top: -15px;
            background-color: #ffd166;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        .warning {
            background-color: #ffeaea;
            border: 1px solid #ff6b6b;
            border-radius: var(--radius);
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
        }
        .warning::before {
            content: "⚠️";
            position: absolute;
            left: -15px;
            top: -15px;
            background-color: #ff6b6b;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        .stat-box {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-item {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        .stat-item:hover {
            border-color: var(--accent-color);
            transform: translateY(-5px);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stat-label {
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: var(--radius);
            overflow: hidden;
        }
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 1.2rem;
            text-align: left;
        }
        .comparison-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid #eee;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .comparison-table tr:hover {
            background-color: #f0f7ff;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #eee;
            font-size: 1.5rem;
        }
        .tier-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .tier-item {
            display: flex;
            align-items: center;
            padding: 0.8rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: var(--transition);
        }
        .tier-item:hover {
            background-color: #e9ecef;
            transform: translateX(5px);
        }
        .tier-rank {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            font-weight: bold;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        .rank-s { background-color: #ff6b6b; }
        .rank-a { background-color: #ff9a3c; }
        .rank-b { background-color: #4ecdc4; }
        .rank-c { background-color: #1a5276; }
        .quick-links a {
            display: block;
            padding: 0.8rem 1rem;
            margin-bottom: 0.8rem;
            background-color: #f8f9fa;
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
        }
        .quick-links a:hover {
            background-color: #e9ecef;
            padding-left: 1.3rem;
        }
        .rating-section, .comments-section {
            background-color: var(--bg-card);
            padding: 3rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 3rem 0;
        }
        .rating-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            margin: 2rem 0;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #ffc107;
        }
        .rating-form {
            flex: 1;
            min-width: 300px;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--accent-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(40, 180, 99, 0.2);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(211, 84, 0, 0.3);
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1.8rem 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary-color);
        }
        .comment-date {
            color: #888;
            font-size: 0.9rem;
        }
        .footer-links {
            background-color: #2c3e50;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem 0.8rem 0;
            padding: 0.8rem 1.5rem;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ddd;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #1a252f;
            color: #bdc3c7;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ecf0f1;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links-list {
            list-style: none;
        }
        .footer-links-list li {
            margin-bottom: 0.8rem;
        }
        .footer-links-list a {
            color: #bdc3c7;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links-list a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .copyright {
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            :root {
                font-size: 14px;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-content, .rating-section, .comments-section {
                padding: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                padding: 1rem;
            }
            .rating-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .stat-box {
                grid-template-columns: 1fr;
            }
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .meta-info {
                flex-direction: column;
                gap: 0.5rem;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
        @media print {
            header, .sidebar, .search-box, .rating-section, .comments-section, .footer-links, footer {
                display: none;
            }
            body {
                color: black;
                background: white;
                font-size: 12pt;
            }
            .container {
                max-width: 100%;
                padding: 0;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
