        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f2eb;
            color: #2c2c2c;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #3a7d44;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #2b5e33;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --mc-green: #5a8f3c;
            --mc-dark: #3c3c3c;
            --mc-brown: #8b6b4d;
            --mc-stone: #8a8a8a;
            --mc-grass: #7cb342;
            --mc-dirt: #c4a77d;
            --mc-sky: #8ecae6;
            --bg-light: #faf8f4;
            --bg-card: #ffffff;
            --border-light: #e8e2d8;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }
        .site-header {
            background: linear-gradient(135deg, #3c7a3e 0%, #5a8f3c 50%, #7cb342 100%);
            padding: 0 0 2px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #f0f7e6;
        }
        .my-logo i {
            font-size: 2rem;
            color: #ffd966;
        }
        .my-logo span {
            font-weight: 300;
            color: #e8f5e1;
            font-size: 0.9rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #fff;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.12);
            transition: background 0.25s, transform 0.2s;
            display: inline-block;
        }
        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-1px);
            text-decoration: none;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: rgba(255, 255, 255, 0.18);
            border: none;
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 40px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.30);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #f0ebe3;
            padding: 10px 20px;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0d8ce;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "▸";
            margin: 0 8px 0 4px;
            color: #9a8a7a;
        }
        .breadcrumb a {
            color: #5a7a4a;
        }
        .breadcrumb .current {
            color: #6a5a4a;
            font-weight: 500;
        }
        .page-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 36px;
            padding: 36px 0 48px;
        }
        @media(max-width:960px) {
            .page-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            padding: 28px 30px;
            margin-bottom: 28px;
            border: 1px solid var(--border-light);
            transition: box-shadow 0.25s;
        }
        .card:hover {
            box-shadow: var(--shadow-md);
        }
        .card-soft {
            background: #f8f5ef;
            border: 1px solid #e8e0d4;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #2c5a2e;
            line-height: 1.2;
            margin-bottom: 0.3rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #3c6b3e;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            border-bottom: 3px solid #d4e0c8;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #4a7a4a;
            margin-top: 1.6rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #5a6a4a;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
        }
        p {
            margin-bottom: 1rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #4a4a4a;
            font-weight: 400;
            line-height: 1.8;
        }
        .highlight {
            background: #f5f0e0;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .featured-img {
            border-radius: var(--radius);
            margin: 24px 0 20px;
            box-shadow: var(--shadow-sm);
            width: 100%;
            background: #e8e2d8;
        }
        .featured-img img {
            border-radius: var(--radius);
            width: 100%;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #7a7a6a;
            margin-top: 6px;
            font-style: italic;
        }
        .link-list {
            list-style: none;
            padding: 0;
        }
        .link-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee8de;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: #3a6a3a;
        }
        .link-list a i {
            width: 20px;
            color: #7cb342;
        }
        .link-list a:hover {
            color: #2b5e2b;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 12px 0 4px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #d4d0c8;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #7cb342;
        }
        .search-form button {
            background: #5a8f3c;
            border: none;
            color: #fff;
            padding: 0 22px;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #3c7a3e;
        }
        .comment-box textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d4d0c8;
            border-radius: var(--radius);
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
            outline: none;
        }
        .comment-box textarea:focus {
            border-color: #7cb342;
        }
        .comment-box .form-actions {
            display: flex;
            gap: 12px;
            margin-top: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        .btn {
            padding: 10px 26px;
            border: none;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-primary {
            background: #5a8f3c;
            color: #fff;
        }
        .btn-primary:hover {
            background: #3c7a3e;
            transform: translateY(-1px);
        }
        .btn-secondary {
            background: #e8e2d8;
            color: #3c3c3c;
        }
        .btn-secondary:hover {
            background: #d8d0c4;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #ccc;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            color: #d4d0c8;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .site-footer {
            background: #2c3a2c;
            color: #ddd8cc;
            padding: 32px 20px 20px;
            margin-top: 20px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        @media(max-width:700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .footer-inner h4 {
            color: #c4d4b4;
            font-size: 1.1rem;
            margin-bottom: 10px;
            border-bottom: 1px solid #4a5a3a;
            padding-bottom: 6px;
        }
        .footer-inner a {
            color: #b8c8a8;
        }
        .footer-inner a:hover {
            color: #e0f0d0;
        }
        friend-link {
            display: block;
            margin: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.14);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 20px;
            border-top: 1px solid #4a5a3a;
            font-size: 0.88rem;
            color: #9aac8a;
        }
        .copyright strong {
            color: #c4d4b4;
        }
        @media(max-width:768px) {
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(60, 90, 50, 0.95);
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 8px;
                gap: 4px;
            }
            .nav-list li a {
                display: block;
                padding: 10px 16px;
                background: transparent;
                border-radius: 8px;
            }
            .nav-list li a:hover {
                background: rgba(255, 255, 255, 0.12);
            }
            #nav-toggle:checked+.hamburger+.nav-list {
                display: flex;
            }
            .hamburger {
                display: inline-block;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .card {
                padding: 18px 16px;
            }
            .page-grid {
                padding: 20px 0 28px;
                gap: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 10px 16px;
            }
            .star-rating {
                font-size: 1.3rem;
            }
        }
        @media(min-width:769px) {
            .nav-list {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        .mt-1 {
            margin-top: 0.5rem;
        }
        .mt-2 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 0.5rem;
        }
        .mb-2 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .gap-8 {
            gap: 8px;
        }
        .text-muted {
            color: #7a7a6a;
            font-size: 0.9rem;
        }
        .badge {
            display: inline-block;
            background: #e8f0d8;
            color: #3a6a3a;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .divider {
            border: none;
            border-top: 2px dashed #ddd8ce;
            margin: 24px 0;
        }
