:root {
            --primary-green: #1e7e34;
            --secondary-green: #28a745;
            --accent-gold: #ffc107;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #e9ecef;
            --border-color: #dee2e6;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary-green);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: var(--text-light);
            display: block;
            padding: 0.5rem;
            font-weight: 600;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: var(--primary-green);
        }
        .search-section {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary-green);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2rem;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--dark-bg);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.95rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-section h2 {
            font-size: 1.8rem;
            color: var(--primary-green);
            margin: 1.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .content-section h3 {
            font-size: 1.4rem;
            color: var(--dark-bg);
            margin: 1.2rem 0 0.8rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #6c757d;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .inline-link {
            font-weight: 600;
            text-decoration: underline;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
            font-size: 1.3rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .stars .active {
            color: var(--accent-gold);
        }
        .rating-widget button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background-color: var(--secondary-green);
        }
        .comment-widget textarea {
            width: 100%;
            height: 120px;
            padding: 0.8rem;
            border: 2px solid var(--border-color);
            border-radius: 5px;
            margin-bottom: 1rem;
            resize: vertical;
            font-family: inherit;
        }
        .comment-widget button {
            background-color: var(--dark-bg);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-widget button:hover {
            background-color: #333;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted var(--border-color);
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .related-links i {
            color: var(--secondary-green);
        }
        .longtail-links {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 3rem 0 2rem;
        }
        .longtail-links h2 {
            text-align: center;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: 5px;
            border-left: 3px solid var(--secondary-green);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #e9ecef;
            transform: translateY(-3px);
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #adb5bd;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-italic { font-style: italic; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .article-header h1 { font-size: 2rem; }
            .article-content { padding: 1.5rem; }
            .main-content { gap: 1.5rem; }
        }
