        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f4f7f2;
            color: #1e2b1e;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #1f6e2a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #c79a2e;
            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.25;
            color: #0f3b1a;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #2d8a4e;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #2d8a4e;
            padding-left: 1rem;
            background: linear-gradient(to right, rgba(45, 138, 78, 0.08), transparent);
        }
        h3 {
            font-size: 1.35rem;
            color: #1f562a;
        }
        h4 {
            font-size: 1.1rem;
            color: #2a6e39;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong {
            color: #0c3d1a;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #3d6b3d;
        }
        hr {
            border: none;
            border-top: 2px dashed #bdd6b5;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 10px 40px rgba(0, 20, 0, 0.06);
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.8rem;
            border-bottom: 2px solid #e3efe0;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #0f3b1a;
            background: linear-gradient(145deg, #1f6e2a, #0f3b1a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #c79a2e;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            display: block;
            padding: 0.5rem 1rem;
            font-weight: 600;
            color: #1e3b1e;
            border-radius: 40px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.9rem;
        }
        .main-nav li a:hover,
        .main-nav li a.active {
            background: #1f6e2a;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e3b1e;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e3efe0;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            margin: 0 0 1.2rem 0;
            font-size: 0.85rem;
            color: #4f6b4f;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.4rem;
            color: #8aab8a;
        }
        .breadcrumb a {
            color: #1f6e2a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #3d6b3d;
            font-weight: 600;
        }
        .search-block {
            background: #f0f7ee;
            padding: 1.2rem 1.5rem;
            border-radius: 60px;
            margin: 1.2rem 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
            box-shadow: inset 0 2px 6px rgba(0, 30, 0, 0.04);
        }
        .search-block label {
            font-weight: 600;
            color: #1e4a1e;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-block input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #cde0c9;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            background: #fff;
            transition: border 0.25s;
        }
        .search-block input[type="text"]:focus {
            border-color: #1f6e2a;
        }
        .search-block button {
            background: #1f6e2a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-block button:hover {
            background: #0f4a1a;
            transform: scale(0.98);
        }
        .hero-img {
            margin: 1.5rem 0 2.2rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 40, 0, 0.08);
        }
        .hero-img img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
            margin: 1.8rem 0;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            border-left: 2px solid #e3efe0;
            padding-left: 1.8rem;
        }
        .content-sidebar .side-card {
            background: #f7fbf5;
            padding: 1.2rem 1.2rem;
            border-radius: 16px;
            margin-bottom: 1.8rem;
            border: 1px solid #d8e8d3;
        }
        .content-sidebar .side-card h4 {
            margin-top: 0;
            border-bottom: 2px solid #cde0c9;
            padding-bottom: 0.4rem;
            font-size: 1rem;
        }
        .content-sidebar .side-card ul {
            padding-left: 0;
            list-style: none;
            margin-bottom: 0;
        }
        .content-sidebar .side-card li {
            padding: 0.3rem 0;
            border-bottom: 1px dashed #dce8d8;
        }
        .content-sidebar .side-card li:last-child {
            border-bottom: none;
        }
        .content-sidebar .side-card a {
            font-weight: 500;
        }
        .rating-area,
        .comment-area {
            background: #f7fbf5;
            padding: 1.6rem 1.8rem;
            border-radius: 20px;
            margin: 2rem 0 1.5rem;
            border: 1px solid #d8e8d3;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d4c9a0;
            cursor: pointer;
            transition: color 0.2s;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
            color: #d4c9a0;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8b830;
        }
        .rating-form button,
        .comment-form button {
            background: #1f6e2a;
            color: #fff;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 0.6rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #0f4a1a;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #cde0c9;
            border-radius: 16px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #1f6e2a;
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #cde0c9;
            border-radius: 40px;
            font-size: 0.95rem;
            margin-bottom: 0.6rem;
            transition: border 0.25s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #1f6e2a;
            outline: none;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .form-row .field {
            flex: 1;
            min-width: 140px;
        }
        .site-footer {
            margin-top: 3rem;
            padding-top: 1.8rem;
            border-top: 3px solid #d8e8d3;
            font-size: 0.9rem;
            color: #3d543d;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-grid h4 {
            margin-top: 0;
            font-size: 1rem;
            color: #1a4a1a;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-grid li {
            padding: 0.2rem 0;
        }
        .footer-grid a {
            font-weight: 500;
        }
        friend-link {
            display: block;
            background: #edf5ea;
            padding: 1rem 1.4rem;
            border-radius: 16px;
            margin: 1rem 0;
            font-weight: 500;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0.4rem;
            border-top: 1px solid #d8e8d3;
            font-size: 0.8rem;
            color: #5a7a5a;
        }
        .copyright strong {
            color: #1e4a1e;
        }
        .last-update {
            display: inline-block;
            background: #eaf3e7;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #2a5a2a;
            margin: 0.5rem 0 1rem;
        }
        @media (max-width: 992px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                border-left: none;
                padding-left: 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
            .content-sidebar .side-card {
                margin-bottom: 0;
            }
            .container {
                padding: 1rem 1.2rem;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.4rem;
            }
            .container {
                padding: 0.8rem 0.8rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #f4faf2;
                padding: 0.8rem 0.4rem;
                border-radius: 16px;
                margin-top: 0.6rem;
                gap: 0.2rem;
                border: 1px solid #d8e8d3;
            }
            .main-nav li a {
                padding: 0.6rem 1rem;
                border-radius: 30px;
            }
            .hamburger {
                display: inline-block;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .nav-wrapper {
                width: 100%;
                justify-content: space-between;
            }
            .search-block {
                flex-direction: column;
                padding: 1rem;
                border-radius: 20px;
            }
            .search-block input[type="text"] {
                width: 100%;
                min-width: unset;
            }
            .search-block button {
                width: 100%;
                justify-content: center;
            }
            .content-sidebar {
                grid-template-columns: 1fr;
            }
            .star-rating {
                font-size: 1.5rem;
                justify-content: center;
            }
            .rating-area,
            .comment-area {
                padding: 1rem 1.2rem;
            }
            .form-row {
                flex-direction: column;
            }
            .form-row .field {
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .site-footer {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 0.2rem;
            }
            .container {
                padding: 0.6rem 0.6rem;
            }
            h1 {
                font-size: 1.35rem;
            }
            h2 {
                font-size: 1.15rem;
                padding-left: 0.6rem;
            }
            p {
                font-size: 0.92rem;
            }
        }
        .tag {
            display: inline-block;
            background: #dce8d8;
            padding: 0.1rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #1a4a1a;
        }
        .blockquote-custom {
            background: #f0f7ee;
            border-left: 6px solid #2d8a4e;
            padding: 1rem 1.5rem;
            border-radius: 0 16px 16px 0;
            margin: 1.5rem 0;
            font-style: italic;
            color: #1e3b1e;
        }
        .blockquote-custom cite {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #2a6e39;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stats-card {
            background: #f7fbf5;
            padding: 1rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #d8e8d3;
        }
        .stats-card .num {
            font-size: 1.8rem;
            font-weight: 900;
            color: #1f6e2a;
        }
        .stats-card .label {
            font-size: 0.8rem;
            color: #4a6a4a;
        }
        .tip-box {
            background: #fcf9ee;
            border: 1px solid #e8dba0;
            padding: 1rem 1.4rem;
            border-radius: 16px;
            margin: 1.2rem 0;
        }
        .tip-box strong {
            color: #8a6a1a;
        }
