        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #1f6e43;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #0f4b2c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1e4228 0%, #2b5a3a 100%);
            color: #f5faf5;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5faf5;
            background: rgba(255, 255, 255, 0.08);
            padding: 0.3rem 1rem 0.3rem 1.2rem;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: background 0.25s ease, transform 0.2s ease;
            display: inline-block;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: scale(1.01);
            text-decoration: none;
            color: #f5faf5;
        }
        .my-logo i {
            margin-right: 0.4rem;
            color: #b8e6c2;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f5faf5;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s ease;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem;
        }
        .main-nav a {
            color: #d9f0df;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            text-decoration: none;
        }
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.18);
            color: #ffffff;
        }
        .breadcrumb-wrap {
            background: #eaf0e7;
            padding: 0.6rem 0;
            border-bottom: 1px solid #d4ddd0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.9rem;
            color: #3f5a3f;
        }
        .breadcrumb a {
            color: #1f6e43;
        }
        .breadcrumb a:hover {
            color: #0f4b2c;
        }
        .breadcrumb span.sep {
            color: #7f9a7f;
            font-weight: 300;
        }
        .breadcrumb span.current {
            color: #1e2a1e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #e1efe0 0%, #c8dec5 100%);
            padding: 2.5rem 0 2rem;
            border-radius: 0 0 40px 40px;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #15331e;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        .hero p {
            font-size: 1.2rem;
            color: #2a4730;
            max-width: 780px;
            font-weight: 400;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
            font-size: 0.95rem;
            color: #3d5c3d;
        }
        .hero-meta i {
            margin-right: 0.4rem;
            color: #1f6e43;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 1.5rem 0 3rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .section-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e3ece1;
            transition: box-shadow 0.3s ease;
        }
        .section-card:hover {
            box-shadow: 0 8px 32px rgba(0, 40, 20, 0.06);
        }
        .section-card h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #15331e;
            margin-bottom: 1rem;
            border-bottom: 3px solid #b8dbb4;
            padding-bottom: 0.5rem;
        }
        .section-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e4228;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        .section-card h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2b5a3a;
            margin-top: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .section-card p {
            margin-bottom: 1rem;
            color: #1f2a1f;
        }
        .section-card p:last-child {
            margin-bottom: 0;
        }
        .featured-img-wrap {
            margin: 1.5rem 0 1.8rem;
            border-radius: 16px;
            overflow: hidden;
            background: #eaf3e8;
            padding: 0.6rem;
        }
        .featured-img-wrap img {
            border-radius: 12px;
            width: 100%;
        }
        .featured-img-wrap figcaption {
            padding: 0.6rem 0.4rem 0.2rem;
            font-size: 0.9rem;
            color: #3f5a3f;
            font-style: italic;
            text-align: center;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }
        .link-list-inline li::before {
            content: "🍃";
            margin-right: 0.3rem;
        }
        .link-list-inline a {
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin: 1.2rem 0;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #c8dcc5;
            border-radius: 40px;
            font-size: 1rem;
            background: #f9fcf8;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            outline: none;
        }
        .search-form input:focus {
            border-color: #1f6e43;
            box-shadow: 0 0 0 4px rgba(31, 110, 67, 0.12);
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #1f6e43;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
        }
        .search-form button:hover {
            background: #0f4b2c;
            transform: scale(1.02);
        }
        .search-form button i {
            margin-right: 0.4rem;
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin: 1.2rem 0;
        }
        .comment-form textarea,
        .score-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #c8dcc5;
            border-radius: 18px;
            font-size: 1rem;
            font-family: inherit;
            background: #f9fcf8;
            resize: vertical;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            outline: none;
        }
        .comment-form textarea:focus,
        .score-form textarea:focus {
            border-color: #1f6e43;
            box-shadow: 0 0 0 4px rgba(31, 110, 67, 0.1);
        }
        .comment-form input,
        .score-form input {
            padding: 0.7rem 1.2rem;
            border: 2px solid #c8dcc5;
            border-radius: 40px;
            font-size: 1rem;
            background: #f9fcf8;
            transition: border-color 0.2s ease;
            outline: none;
        }
        .comment-form input:focus,
        .score-form input:focus {
            border-color: #1f6e43;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .form-row input {
            flex: 1;
            min-width: 140px;
        }
        .comment-form button,
        .score-form button {
            align-self: flex-start;
            padding: 0.7rem 2.2rem;
            background: #1f6e43;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #0f4b2c;
            transform: scale(1.02);
        }
        .score-stars {
            display: flex;
            gap: 0.25rem;
            font-size: 2rem;
            color: #d4d4d4;
            cursor: pointer;
            transition: color 0.1s ease;
        }
        .score-stars i {
            transition: color 0.1s ease, transform 0.1s ease;
        }
        .score-stars i:hover,
        .score-stars i.hovered {
            color: #f5b342;
            transform: scale(1.05);
        }
        .score-stars i.selected {
            color: #f5b342;
        }
        .sidebar-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
            margin-bottom: 1.5rem;
            border: 1px solid #e3ece1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #15331e;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #cde0c9;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #edf3eb;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-weight: 500;
            display: block;
            padding: 0.2rem 0;
        }
        .sidebar-card ul li a::before {
            content: "🌿 ";
            font-size: 0.8rem;
        }
        .site-footer {
            background: #1a2f1a;
            color: #d4e8d4;
            padding: 2.5rem 0 1.8rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #b8e0b8;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-grid p,
        .footer-grid a {
            color: #c8dec5;
            font-size: 0.95rem;
        }
        .footer-grid a:hover {
            color: #ffffff;
        }
        friend-link {
            display: block;
            margin: 1.2rem 0 0.6rem;
            padding: 0.8rem 1.2rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            color: #b8e0b8;
            font-weight: 500;
            margin-right: 1.2rem;
            display: inline-block;
            padding: 0.2rem 0;
        }
        friend-link a:hover {
            color: #ffffff;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2f4a2f;
            font-size: 0.9rem;
            color: #8fac8f;
        }
        .copyright strong {
            color: #c8dec5;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .sidebar {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1e4228;
                padding: 0.8rem 0.4rem;
                border-radius: 20px;
                margin-top: 0.5rem;
                gap: 0.1rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1.2rem;
                width: 100%;
                border-radius: 12px;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-card {
                padding: 1.4rem 1.2rem;
            }
            .section-card h2 {
                font-size: 1.6rem;
            }
            .section-card h3 {
                font-size: 1.25rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.3rem;
                padding: 0.2rem 0.8rem 0.2rem 1rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .search-form input {
                min-width: 120px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .section-card {
                padding: 1rem 0.9rem;
                border-radius: 16px;
            }
            .search-form button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .form-row {
                flex-direction: column;
            }
            .form-row input {
                min-width: unset;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-accent {
            color: #1f6e43;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #cde0c9;
            padding: 0.1rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #15331e;
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
        .eeat-author {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: #eaf3e8;
            padding: 0.8rem 1.2rem;
            border-radius: 16px;
            margin: 1rem 0;
        }
        .eeat-author i {
            font-size: 2.2rem;
            color: #1f6e43;
        }
        .eeat-author strong {
            color: #15331e;
        }
