        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #d4af37; 
            --secondary-color: #138808; 
            --accent-color: #0047ab; 
            --dark-color: #2c2c2c;
            --light-color: #f8f9fa;
            --text-color: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --border-radius: 8px;
            --transition: all 0.3s ease;
            --max-width: 1280px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            font-size: 1.05rem;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; border-bottom: 3px solid var(--primary-color); padding-bottom: 0.5rem; }
        h3 { font-size: 1.5rem; }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo span {
            color: white;
        }
        .logo i {
            font-size: 2.2rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--primary-color);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-color);
            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: 0.5rem;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: var(--dark-color);
            padding: 2rem 1.5rem;
            transition: left 0.4s ease;
            z-index: 1100;
            overflow-y: auto;
            box-shadow: 5px 0 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            left: 0;
        }
        .nav-mobile a {
            display: block;
            color: white;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: var(--primary-color);
            padding-left: 0.5rem;
        }
        .close-menu {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            cursor: pointer;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1050;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            background-color: #f5f5f5;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        .search-section {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 2rem 0;
            margin-bottom: 3rem;
            border-radius: var(--border-radius);
            text-align: center;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 0;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #ccc;
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--accent-color);
        }
        .search-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #003580;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-section {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            color: var(--text-light);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta-item i {
            margin-right: 0.5rem;
            color: var(--primary-color);
        }
        .featured-img {
            margin: 2rem 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .highlight-box {
            background: linear-gradient(to right, #fff9e6, #ffefb3);
            border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight-box h3 {
            margin-top: 0;
            color: #b8860b;
        }
        .event-schedule {
            margin: 3rem 0;
            overflow-x: auto;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        .schedule-table th, .schedule-table td {
            border: 1px solid #ddd;
            padding: 1rem;
            text-align: left;
        }
        .schedule-table th {
            background-color: var(--accent-color);
            color: white;
            font-weight: 600;
        }
        .schedule-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .schedule-table tr:hover {
            background-color: #f1f7ff;
        }
        .strategy-tips {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .tip-card {
            background: white;
            border: 1px solid #eee;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .tip-card h4 {
            color: var(--secondary-color);
            margin-bottom: 0.8rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .popular-links ul {
            list-style: none;
        }
        .popular-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted #eee;
        }
        .popular-links a {
            display: block;
            color: var(--text-color);
        }
        .popular-links a:hover {
            color: var(--accent-color);
            padding-left: 0.5rem;
        }
        .rating-section, .comment-section {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star {
            transition: var(--transition);
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffc107;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-control {
            padding: 0.9rem 1rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--accent-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: #0e6d07;
        }
        .comments-list {
            margin-top: 2.5rem;
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1.5rem 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-author {
            font-weight: 600;
            color: var(--dark-color);
        }
        .comment-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .footer-links-section {
            background: #f8f9fa;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background: white;
            margin: 0.8rem 1rem 0.8rem 0;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            transition: var(--transition);
            border: 1px solid #eaeaea;
        }
        .web-link:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }
        .web-link:hover a {
            color: white;
        }
        .site-footer {
            background: var(--dark-color);
            color: #ccc;
            padding: 3rem 0 2rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-col h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #aaa;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: #aaa;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 700; color: var(--dark-color); }
        .tag {
            display: inline-block;
            background: #e9f5ff;
            color: var(--accent-color);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .article-section, .rating-section, .comment-section {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: var(--border-radius);
                border-right: 2px solid #ccc;
                margin-bottom: 0.5rem;
            }
            .search-btn {
                border-radius: var(--border-radius);
                padding: 1rem;
            }
        }
