:root {
            --primary-jungle: #1a472a;
            --secondary-gold: #d4af37;
            --accent-red: #8b0000;
            --dark-bg: #0c120c;
            --light-text: #f0f0f0;
            --mid-gray: #2a2a2a;
            --card-bg: #1e1e1e;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.8;
            color: var(--light-text);
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2e1a 100%);
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a {
            color: var(--secondary-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(12, 18, 12, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--secondary-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
            font-size: 2.8rem;
            color: var(--secondary-gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 0 var(--accent-red), 4px 4px 0 rgba(0,0,0,0.5);
            background: linear-gradient(to right, #1a472a, #2e8b57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 5px 0;
            transition: all 0.4s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-shadow: 3px 3px 0 var(--accent-red), 6px 6px 0 rgba(0,0,0,0.5);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(26, 71, 42, 0.7);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--secondary-gold);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--mid-gray);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--secondary-gold);
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #2e8b57;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 5px solid var(--secondary-gold);
        }
        h3 {
            font-size: 1.7rem;
            color: #4caf7a;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #6bc49c;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: bold;
            color: #d4d4d4;
            background: rgba(26, 71, 42, 0.2);
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid var(--secondary-gold);
            margin-bottom: 35px;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(26, 71, 42, 0.3), rgba(139, 0, 0, 0.2));
            border: 1px solid var(--secondary-gold);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--secondary-gold);
            margin: 30px auto;
            display: block;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--mid-gray);
        }
        .widget h3 {
            color: var(--secondary-gold);
            margin-top: 0;
            font-size: 1.5rem;
            border-bottom: 2px solid var(--accent-red);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border-radius: 6px;
            border: 1px solid var(--mid-gray);
            background-color: #2a2a2a;
            color: var(--light-text);
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, var(--primary-jungle), var(--accent-red));
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(to right, var(--accent-red), var(--primary-jungle));
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.3);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 1.8rem;
            color: #555;
        }
        .stars .fa-star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars .fa-star:hover,
        .stars .fa-star.active {
            color: var(--secondary-gold);
        }
        .site-footer {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid var(--mid-gray);
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 25px 0;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        .friend-links a {
            background-color: var(--mid-gray);
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .friend-links a:hover {
            background-color: var(--primary-jungle);
            transform: translateY(-5px);
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 20px;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            article {
                padding: 25px;
            }
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
            vertical-align: middle;
        }
        .keyword {
            font-weight: bold;
            color: var(--secondary-gold);
            background: rgba(212, 175, 55, 0.1);
            padding: 0 5px;
            border-radius: 3px;
        }
        .update-time {
            display: inline-block;
            background-color: var(--accent-red);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
