:root {
            --primary-dark: #1a472a;
            --primary-green: #2e8b57;
            --accent-gold: #daa520;
            --accent-rust: #b3541e;
            --neutral-light: #f5f5f5;
            --neutral-dark: #222;
            --neutral-gray: #444;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0c1f14 0%, #1a331f 100%);
            color: var(--neutral-light);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(26, 71, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-gold);
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #daa520, #ffd700, #f0e68c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover {
            background: rgba(218, 165, 32, 0.2);
            color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #ccc;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .search-container {
            background: rgba(34, 34, 34, 0.7);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 25px 0;
            border: 1px solid var(--primary-green);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--primary-green);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background: #111;
            color: white;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(to right, var(--primary-green), var(--accent-rust));
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: linear-gradient(to right, var(--accent-rust), var(--primary-green));
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        .article-content {
            background: rgba(34, 34, 34, 0.8);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(218, 165, 32, 0.2);
        }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 0 #000;
            border-bottom: 3px solid var(--primary-green);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #2e8b57;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid var(--accent-gold);
        }
        h3 {
            font-size: 1.7rem;
            color: #daa520;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #b3541e;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background: rgba(179, 84, 30, 0.1);
            border-left: 5px solid var(--accent-rust);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(46, 139, 87, 0.15);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid rgba(46, 139, 87, 0.3);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            display: block;
        }
        .sidebar {
            background: rgba(34, 34, 34, 0.8);
            border-radius: var(--border-radius);
            padding: 25px;
            align-self: start;
            border: 1px solid rgba(218, 165, 32, 0.2);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-title {
            font-size: 1.3rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-green);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li:before {
            content: '▶';
            color: var(--accent-gold);
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        .interaction-section {
            background: rgba(34, 34, 34, 0.8);
            border-radius: var(--border-radius);
            padding: 40px;
            margin: 40px 0;
            border: 1px solid rgba(218, 165, 32, 0.2);
        }
        .rating-container {
            text-align: center;
            margin-bottom: 40px;
        }
        .stars {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            margin: 15px 0;
        }
        .stars .fas {
            margin: 0 5px;
            transition: var(--transition);
        }
        .stars .fas:hover,
        .stars .fas.active {
            color: var(--accent-gold);
            text-shadow: 0 0 10px gold;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-input,
        .form-textarea {
            padding: 15px;
            border-radius: var(--border-radius);
            border: 1px solid var(--primary-green);
            background: #111;
            color: white;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-green), var(--accent-rust));
            color: white;
            border: none;
            padding: 18px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
            align-self: flex-start;
            min-width: 180px;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, var(--accent-rust), var(--primary-green));
            transform: scale(1.05);
        }
        .site-footer {
            background: rgba(17, 17, 17, 0.95);
            padding: 50px 0 20px;
            border-top: 2px solid var(--accent-gold);
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(218, 165, 32, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--accent-gold);
            font-style: italic;
            margin-top: 30px;
            text-align: right;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(26, 71, 42, 0.98);
                padding: 20px;
                box-shadow: var(--shadow);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content,
            .sidebar {
                padding: 25px;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
            }
            .search-input,
            .search-btn {
                width: 100%;
                border-radius: var(--border-radius);
                margin-bottom: 10px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
