        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f7f5f0;
            color: #1a1a2e;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #2d6a4f;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #1b4332;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1a1a2e;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #6aaa64;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            color: #2d6a4f;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d3d5c;
        }
        p {
            margin-bottom: 1.2rem;
        }
        :root {
            --green: #6aaa64;
            --green-dark: #538d4e;
            --yellow: #c9b458;
            --yellow-dark: #b59f3a;
            --gray: #787c7e;
            --gray-light: #d3d6da;
            --bg-cream: #f7f5f0;
            --bg-white: #ffffff;
            --text-dark: #1a1a2e;
            --text-muted: #4a4a5a;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: 0.25s ease;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--bg-white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0 20px;
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            flex-wrap: nowrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--green-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            text-decoration: none;
            color: var(--green);
        }
        .my-logo i {
            font-size: 1.8rem;
            color: var(--yellow);
        }
        .my-logo span {
            background: linear-gradient(135deg, var(--green), var(--yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            padding: 0;
            margin: 0;
            align-items: center;
        }
        .nav-list li a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.95rem;
            transition: background var(--transition), color var(--transition);
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: var(--green);
            color: #fff;
            text-decoration: none;
        }
        .nav-list li a i {
            font-size: 0.9rem;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0ede5;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            background: var(--bg-white);
            padding: 10px 20px;
            border-bottom: 1px solid #e8e3d9;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb-inner a {
            color: var(--green-dark);
        }
        .breadcrumb-inner i {
            font-size: 0.7rem;
            color: var(--gray);
        }
        .breadcrumb-inner .current {
            color: var(--text-muted);
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #f7f5f0 0%, #e8f0e4 100%);
            padding: 50px 20px 40px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 0.6rem;
        }
        .hero h1 i {
            color: var(--yellow);
        }
        .hero .subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 1.5rem;
        }
        .hero .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--green);
            color: #fff;
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .hero .badge i {
            color: #fff;
        }
        .main-content {
            flex: 1;
            padding: 30px 20px 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .content-body {
            background: var(--bg-white);
            padding: 30px 35px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .content-body .featured-image {
            margin: 1.8rem 0;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }
        .content-body .featured-image figcaption {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 8px;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 22px 20px;
            box-shadow: var(--shadow);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--gray-light);
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ede5;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .sidebar-card ul li a i {
            color: var(--yellow);
            font-size: 0.85rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 140px;
            padding: 10px 14px;
            border: 2px solid var(--gray-light);
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color var(--transition);
        }
        .search-form input:focus {
            border-color: var(--green);
        }
        .search-form button {
            background: var(--green);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: var(--green-dark);
        }
        .comment-section,
        .rating-section {
            margin-top: 2.5rem;
            padding-top: 1.8rem;
            border-top: 2px solid var(--gray-light);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 600px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            padding: 10px 14px;
            border: 2px solid var(--gray-light);
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border-color var(--transition);
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: var(--green);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            background: var(--green);
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: var(--green-dark);
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: var(--gray-light);
            cursor: pointer;
        }
        .rating-stars i.active {
            color: var(--yellow);
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: var(--yellow-dark);
        }
        .site-footer {
            background: #1a1a2e;
            color: #d3d6da;
            padding: 40px 20px 20px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            color: #fff;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid var(--green);
            padding-bottom: 6px;
            display: inline-block;
        }
        .footer-inner p,
        .footer-inner a {
            color: #b0b0c0;
            font-size: 0.95rem;
        }
        .footer-inner a:hover {
            color: var(--yellow);
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 30px auto 0;
            padding-top: 20px;
            border-top: 1px solid #2d2d4a;
            text-align: center;
            font-size: 0.9rem;
            color: #7a7a8a;
        }
        .footer-bottom .copyright {
            margin-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 4px 14px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            font-size: 0.9rem;
            color: #b0b0c0;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: var(--green);
            color: #fff;
            text-decoration: none;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--bg-white);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
                padding: 16px 20px;
                gap: 4px;
                border-top: 2px solid var(--gray-light);
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 16px;
                border-radius: 8px;
                width: 100%;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
            .content-body {
                padding: 20px 18px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .header-inner {
                height: 60px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 30px 12px 24px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 8px 12px;
            }
            .search-form input {
                min-width: 100px;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 8px 14px;
                font-size: 0.85rem;
            }
            .rating-stars {
                font-size: 1.3rem;
            }
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag {
            display: inline-block;
            background: #e8f0e4;
            color: var(--green-dark);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            color: var(--green);
        }
        .reveal {
            animation: fadeInUp 0.5s ease forwards;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
