:root {
            --primary-dark: #1a472a;
            --primary-medium: #2a623d;
            --primary-light: #3c7a5b;
            --accent-warning: #f0ad4e;
            --accent-danger: #d9534f;
            --text-primary: #333333;
            --text-secondary: #555555;
            --background-light: #f8f9fa;
            --background-white: #ffffff;
            --border-color: #e1e5eb;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--text-primary);
            background-color: var(--background-light);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo-icon {
            color: var(--accent-warning);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            border-bottom-color: var(--accent-warning);
            color: var(--accent-warning);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--primary-medium);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            max-width: 1280px;
            margin: 1rem auto;
            padding: 0 1.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-medium);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-secondary);
        }
        .main-container {
            max-width: 1280px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--background-white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-content h1 {
            color: var(--primary-dark);
            font-size: 2.4rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 5px solid var(--accent-warning);
            padding-left: 1rem;
        }
        .article-content h2 {
            color: var(--primary-medium);
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--border-color);
        }
        .article-content h3 {
            color: var(--primary-light);
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            color: var(--text-primary);
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--accent-warning);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background-color: #e8f4fd;
            border-left: 4px solid #4dabf7;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .warning-box {
            background-color: #fde8e8;
            border-left: 4px solid var(--accent-danger);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .talent-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .talent-table th {
            background-color: var(--primary-medium);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .talent-table td {
            padding: 0.9rem 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .talent-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .talent-table tr:hover {
            background-color: #f0f7f0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--background-white);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-medium);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: var(--primary-dark);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget label {
            font-weight: 600;
            color: var(--text-secondary);
        }
        .rating-widget select,
        .rating-widget textarea {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-size: 1rem;
        }
        .rating-widget button {
            background-color: var(--accent-warning);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-widget button:hover {
            background-color: #ec971f;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ddd;
            margin-bottom: 0.5rem;
        }
        .star-rating span {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating span:hover,
        .star-rating span.active {
            color: #ffc107;
        }
        .comments-section {
            margin-top: 3rem;
            background-color: var(--background-white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .comments-section h2 {
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--text-secondary);
        }
        .form-group input,
        .form-group textarea {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-size: 1rem;
        }
        .comment-form button {
            align-self: flex-start;
            background-color: var(--primary-medium);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background-color: var(--primary-dark);
        }
        .comment {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 1rem;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary-dark);
        }
        .comment-date {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .footer-links {
            max-width: 1280px;
            margin: 3rem auto 0;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: var(--background-white);
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary-medium);
            text-decoration: none;
            font-weight: 500;
            display: block;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }
        .copyright {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            color: #ccc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 0 1rem;
            }
            .main-container {
                padding: 0 1rem;
                gap: 1.5rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 1.9rem;
            }
            .article-content h2 {
                font-size: 1.5rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
