        *,
        *::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, Roboto, 'Helvetica Neue', sans-serif;
            background: #f8f5f0;
            color: #2d2a24;
            line-height: 1.75;
            padding: 0 16px;
        }
        a {
            color: #4a7c59;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #2e5a3a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1e3a2f;
            margin-top: 1.6em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
            border-bottom: 3px solid #b8a99a;
            padding-bottom: 0.25em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #7aa782;
            padding-left: 16px;
            margin-top: 2em;
        }
        h3 {
            font-size: 1.35rem;
            color: #2d5a3e;
        }
        h4 {
            font-size: 1.1rem;
            color: #3d6b4f;
        }
        p {
            margin-bottom: 1.25em;
        }
        ul,
        ol {
            margin: 0.75em 0 1.5em 1.8em;
        }
        li {
            margin-bottom: 0.5em;
        }
        strong,
        b {
            color: #1e3a2f;
        }
        hr {
            border: none;
            border-top: 2px dashed #d6ccc0;
            margin: 2.5em 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        .site-header {
            background: linear-gradient(145deg, #2d4a3a, #1e3528);
            color: #f5efe8;
            padding: 18px 0;
            border-radius: 0 0 28px 28px;
            margin-bottom: 28px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            position: relative;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5efe8;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #d8e0b8;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2rem;
            color: #c7b55a;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c7b55a;
            color: #c7b55a;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #c7b55a;
            color: #1e3528;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
        }
        .main-nav a {
            color: #e8e0d0;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            color: #f5e7b0;
            border-bottom-color: #c7b55a;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
            color: #b8a87a;
        }
        .breadcrumb {
            background: #ede7de;
            padding: 10px 20px;
            border-radius: 40px;
            font-size: 0.9rem;
            margin: 12px 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
            color: #5a4e40;
        }
        .breadcrumb a {
            color: #4a7c59;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #9a8a7a;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .search-section {
            background: #fffcf7;
            border-radius: 20px;
            padding: 28px 24px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
            margin: 24px 0 32px;
            border: 1px solid #e6ddd0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 14px 20px;
            border: 2px solid #d6ccc0;
            border-radius: 60px;
            font-size: 1rem;
            background: #fcfaf7;
            transition: 0.3s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #7aa782;
            box-shadow: 0 0 0 4px rgba(122, 167, 130, 0.2);
        }
        .search-form button {
            background: #4a7c59;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form button:hover {
            background: #2e5a3a;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(46, 90, 58, 0.3);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }
        @media(min-width:820px) {
            .content-grid {
                grid-template-columns: 2.4fr 1fr;
            }
        }
        .main-article {
            background: #fffcf7;
            border-radius: 24px;
            padding: 28px 24px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
            border: 1px solid #eae2d6;
        }
        .sidebar {
            background: #fffcf7;
            border-radius: 24px;
            padding: 24px 20px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
            border: 1px solid #eae2d6;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .sidebar h3 {
            margin-top: 0.4em;
            font-size: 1.2rem;
            border-bottom: 2px solid #d6ccc0;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            margin-left: 0;
        }
        .sidebar li {
            padding: 6px 0;
            border-bottom: 1px solid #f0e8de;
        }
        .sidebar li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar li a i {
            color: #7aa782;
            width: 20px;
        }
        .featured-image {
            margin: 1.8em 0 2.2em;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            display: block;
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f0eadf;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #4d4030;
            font-style: italic;
        }
        .rating-section {
            background: #f5f0e8;
            border-radius: 20px;
            padding: 24px 20px;
            margin: 30px 0;
            border: 1px solid #ddd6c8;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            cursor: pointer;
            color: #d4c5a0;
            transition: 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #e8b84a;
            transform: scale(1.1);
        }
        .rating-form button {
            background: #4a7c59;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }
        .rating-form button:hover {
            background: #2e5a3a;
        }
        .comment-section {
            background: #f5f0e8;
            border-radius: 20px;
            padding: 24px 20px;
            margin: 30px 0;
            border: 1px solid #ddd6c8;
        }
        .comment-section textarea {
            width: 100%;
            padding: 16px 18px;
            border: 2px solid #d6ccc0;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            background: #fffcf7;
            transition: 0.3s;
            outline: none;
        }
        .comment-section textarea:focus {
            border-color: #7aa782;
            box-shadow: 0 0 0 4px rgba(122, 167, 130, 0.15);
        }
        .comment-section input[type="text"] {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #d6ccc0;
            border-radius: 60px;
            font-size: 1rem;
            background: #fffcf7;
            outline: none;
            transition: 0.3s;
        }
        .comment-section input[type="text"]:focus {
            border-color: #7aa782;
        }
        .comment-section .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin: 14px 0;
        }
        .comment-section .form-row input {
            flex: 1 1 180px;
        }
        .comment-section button {
            background: #4a7c59;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }
        .comment-section button:hover {
            background: #2e5a3a;
        }
        .site-footer {
            background: #1e3528;
            color: #d6d0c0;
            padding: 40px 20px 28px;
            border-radius: 28px 28px 0 0;
            margin-top: 48px;
            font-size: 0.95rem;
        }
        .site-footer a {
            color: #b8c8a0;
        }
        .site-footer a:hover {
            color: #e8e0c0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 28px 32px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-grid h4 {
            color: #e8e0c8;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #3a5a48;
            padding-bottom: 6px;
        }
        .footer-grid ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-grid li {
            padding: 4px 0;
        }
        friend-link {
            display: block;
            background: #2a4034;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 18px 0 0;
            font-size: 0.95rem;
            border: 1px solid #3a5a48;
        }
        friend-link a {
            display: inline-block;
            margin: 0 12px 6px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #3a5a48;
            font-size: 0.85rem;
            color: #a8a090;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #2a4034;
                padding: 18px 16px;
                border-radius: 16px;
                margin-top: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 12px;
                border-bottom: 1px solid #3a5a48;
                width: 100%;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .main-article,
            .sidebar {
                padding: 18px 14px;
            }
            .sidebar {
                position: static;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 8px 14px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media(max-width:480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .site-header {
                padding: 12px 0;
            }
            .header-inner {
                gap: 8px;
            }
        }
        .text-muted {
            color: #7a6e5e;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .badge {
            display: inline-block;
            background: #7aa782;
            color: #fff;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #6a5e4e;
            background: #f0eadf;
            padding: 6px 18px;
            border-radius: 40px;
            width: fit-content;
            margin: 12px 0 20px;
        }
        .last-updated i {
            color: #7aa782;
        }
        .tip-box {
            background: #eaf3e6;
            border-left: 5px solid #4a7c59;
            padding: 16px 20px;
            border-radius: 0 16px 16px 0;
            margin: 1.6em 0;
        }
        .tip-box i {
            color: #4a7c59;
            margin-right: 10px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5em 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fcfaf7;
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #2d4a3a;
            color: #f5efe8;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #e6ddd0;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f5f0e8;
        }
