:root {
            --primary-jungle: #2a5c3d;
            --secondary-amber: #ffbf00;
            --accent-terracotta: #e2725b;
            --dark-stone: #333333;
            --light-sand: #f5f1e6;
            --shadow-deep: rgba(0, 30, 15, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light-sand);
            color: var(--dark-stone);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-jungle);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: var(--accent-terracotta);
            transform: translateY(-1px);
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-jungle) 0%, #1a3d2a 100%);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px var(--shadow-deep);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: var(--secondary-amber);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1.5px;
        }
        .my-logo:hover {
            color: white;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--light-sand);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--primary-jungle);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px var(--shadow-deep);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #e9e2d0;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: var(--dark-stone);
        }
        .breadcrumb a:hover {
            color: var(--primary-jungle);
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        h1 {
            color: var(--primary-jungle);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary-amber);
            padding-bottom: 1rem;
        }
        h2 {
            color: #1a3d2a;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--accent-terracotta);
        }
        h3 {
            color: var(--dark-stone);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-jungle);
            background-color: #f0f7f2;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-amber);
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px dashed var(--secondary-amber);
            margin: 2rem 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border: 5px solid white;
            outline: 1px solid #ddd;
        }
        .content-link {
            font-weight: 700;
            border-bottom: 2px dotted var(--primary-jungle);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #f0f7f2, #e1ede5);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stat-card h4 {
            color: var(--primary-jungle);
            margin-top: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-jungle);
            box-shadow: 0 0 0 2px rgba(42, 92, 61, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-jungle), #1a3d2a);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #1a3d2a, var(--primary-jungle));
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(42, 92, 61, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            margin: 1rem 0;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input {
            display: none;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--secondary-amber);
        }
        .update-time {
            font-style: italic;
            color: #777;
            text-align: right;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .site-footer {
            background-color: var(--dark-stone);
            color: var(--light-sand);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .friend-link {
            background: rgba(255,255,255,0.1);
            padding: 0.7rem 1.2rem;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .friend-link:hover {
            background: rgba(255,255,255,0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-container {
                padding: 0 1rem;
            }
            article {
                padding: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
