*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --green-dark: #2c5f2d;
            --green-mid: #4a7c4f;
            --green-light: #7caa7e;
            --green-pale: #e2f0cb;
            --brown-dark: #5a3e2b;
            --brown-mid: #8b6f47;
            --brown-light: #c4a882;
            --cream: #fdf8ed;
            --off-white: #faf9f6;
            --text-dark: #1e2b1c;
            --text-mid: #3d4f3a;
            --text-light: #6a7f66;
            --shadow: 0 4px 20px rgba(44, 95, 45, 0.12);
            --radius: 14px;
            --radius-sm: 8px;
            --transition: all 0.25s ease;
            --max-width: 1200px;
            --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-main);
            background: var(--cream);
            color: var(--text-dark);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--green-dark);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--green-mid);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            font-size: 1.4rem;
            color: var(--green-pale);
        }
        .my-logo:hover {
            color: var(--green-pale);
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo span {
            font-weight: 300;
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: rgba(255, 255, 255, 0.9);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: rgba(255, 255, 255, 0.22);
            color: #fff;
            font-weight: 600;
        }
        .breadcrumb-wrap {
            background: var(--off-white);
            padding: 10px 0;
            border-bottom: 1px solid rgba(74, 124, 79, 0.12);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--green-mid);
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: var(--green-dark);
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-mid);
            font-weight: 400;
        }
        .breadcrumb i {
            font-size: 0.65rem;
            color: var(--text-light);
        }
        .main-wrap {
            flex: 1;
            padding: 30px 0 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-body h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--green-dark);
            line-height: 1.2;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }
        .content-body .subtitle {
            font-size: 1.05rem;
            color: var(--text-light);
            margin-bottom: 24px;
            border-left: 4px solid var(--green-light);
            padding-left: 16px;
        }
        .content-body .meta-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 30px;
            font-size: 0.9rem;
            color: var(--text-mid);
            margin-bottom: 28px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(74, 124, 79, 0.15);
        }
        .meta-bar i {
            color: var(--green-mid);
            width: 20px;
        }
        .content-body h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--green-dark);
            margin-top: 48px;
            margin-bottom: 14px;
            padding-bottom: 6px;
            border-bottom: 2px solid var(--green-pale);
        }
        .content-body h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--brown-dark);
            margin-top: 32px;
            margin-bottom: 10px;
        }
        .content-body h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-mid);
            margin-top: 22px;
            margin-bottom: 8px;
        }
        .content-body p {
            margin-bottom: 16px;
            color: var(--text-mid);
        }
        .content-body strong {
            color: var(--green-dark);
            font-weight: 600;
        }
        .content-body ul,
        .content-body ol {
            margin: 12px 0 20px 24px;
            color: var(--text-mid);
        }
        .content-body li {
            margin-bottom: 6px;
        }
        .content-body .highlight-box {
            background: var(--off-white);
            border-left: 4px solid var(--green-mid);
            padding: 18px 22px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 24px 0;
            box-shadow: var(--shadow);
        }
        .content-body .highlight-box i {
            color: var(--green-mid);
            margin-right: 8px;
        }
        .content-body .insight-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 20px 24px;
            box-shadow: var(--shadow);
            margin: 24px 0;
            border: 1px solid rgba(74, 124, 79, 0.1);
        }
        .content-body .insight-card h4 {
            margin-top: 0;
            color: var(--green-dark);
        }
        .featured-image {
            margin: 28px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--off-white);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--text-light);
            font-style: italic;
            background: var(--off-white);
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
            border: 1px solid rgba(74, 124, 79, 0.08);
        }
        .sidebar-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 8px;
            font-size: 0.92rem;
        }
        .sidebar-card li a {
            color: var(--text-mid);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .sidebar-card li a:hover {
            color: var(--green-dark);
        }
        .sidebar-card li a i {
            font-size: 0.7rem;
            color: var(--green-light);
        }
        .sidebar-card .score-display {
            text-align: center;
            padding: 8px 0;
        }
        .sidebar-card .score-display .stars {
            color: #f5b342;
            font-size: 1.3rem;
            letter-spacing: 4px;
        }
        .sidebar-card .score-display .avg {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--green-dark);
            line-height: 1.2;
        }
        .search-form {
            display: flex;
            gap: 8px;
            width: 100%;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid var(--green-pale);
            border-radius: 30px;
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition);
            background: var(--off-white);
            min-width: 0;
        }
        .search-form input:focus {
            border-color: var(--green-mid);
            box-shadow: 0 0 0 3px rgba(74, 124, 79, 0.15);
        }
        .search-form button {
            padding: 10px 20px;
            background: var(--green-dark);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        .search-form button:hover {
            background: var(--green-mid);
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--green-pale);
            border-radius: var(--radius-sm);
            font-family: var(--font-main);
            font-size: 0.92rem;
            resize: vertical;
            min-height: 90px;
            transition: var(--transition);
            background: var(--off-white);
        }
        .comment-form textarea:focus {
            border-color: var(--green-mid);
            box-shadow: 0 0 0 3px rgba(74, 124, 79, 0.12);
            outline: none;
        }
        .comment-form .row {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        .comment-form .row input {
            flex: 1;
            padding: 10px 14px;
            border: 2px solid var(--green-pale);
            border-radius: 30px;
            font-size: 0.9rem;
            background: var(--off-white);
            transition: var(--transition);
            min-width: 0;
        }
        .comment-form .row input:focus {
            border-color: var(--green-mid);
            outline: none;
        }
        .comment-form button {
            padding: 10px 24px;
            background: var(--green-dark);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--green-mid);
            transform: scale(1.02);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .rating-form .star-select {
            display: flex;
            direction: row-reverse;
            justify-content: flex-end;
            gap: 2px;
        }
        .rating-form .star-select input {
            display: none;
        }
        .rating-form .star-select label {
            font-size: 1.6rem;
            color: #d1d5db;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form .star-select label:hover,
        .rating-form .star-select label:hover~label,
        .rating-form .star-select input:checked~label {
            color: #f5b342;
        }
        .rating-form button {
            padding: 8px 20px;
            background: var(--green-dark);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .rating-form button:hover {
            background: var(--green-mid);
        }
        friend-link {
            display: block;
            padding: 20px 0 4px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: var(--green-dark);
        }
        .site-footer {
            background: var(--green-dark);
            color: rgba(255, 255, 255, 0.85);
            padding: 30px 0 20px;
            margin-top: 20px;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            opacity: 0.85;
        }
        .site-footer .copyright i {
            margin: 0 4px;
        }
        .site-footer a {
            color: rgba(255, 255, 255, 0.8);
        }
        .site-footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .sidebar .sidebar-card {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(0, 0, 0, 0.15);
                border-radius: var(--radius-sm);
                padding: 10px 0;
                margin-top: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 20px;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .nav-menu a:last-child {
                border-bottom: none;
            }
            .content-body h1 {
                font-size: 1.8rem;
            }
            .content-body h2 {
                font-size: 1.35rem;
            }
            .content-body h3 {
                font-size: 1.1rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form input {
                min-width: 140px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1rem;
            }
            .content-body h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 14px;
            }
            .meta-bar {
                flex-direction: column;
                gap: 6px;
            }
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--green-dark);
            color: #fff;
            padding: 8px 20px;
            z-index: 9999;
            border-radius: 0 0 var(--radius-sm) 0;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
