        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1b6b2e;
            text-decoration: none;
            transition: color 0.25s ease, background 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #0a3b14;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a3a1a;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 5px solid #2e7d32;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.3rem;
            color: #1f5a2a;
        }
        h4 {
            font-size: 1.1rem;
            color: #2d6b3a;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1b3a1b 0%, #2a5a2a 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffd966;
            letter-spacing: 1px;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #f9a825;
            font-size: 2rem;
        }
        .my-logo:hover {
            color: #fff3b0;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #c8e6c9;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8f5e9;
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
        }
        @media (max-width: 820px) {
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(20, 50, 20, 0.98);
                border-radius: 16px;
                padding: 1rem 0.5rem;
                margin-top: 0.4rem;
                gap: 0.3rem;
                backdrop-filter: blur(6px);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 30px;
                width: 100%;
            }
        }
        .breadcrumb {
            background: #e8f0e5;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #c8dbc5;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: #5a7a5a;
        }
        .breadcrumb a {
            color: #1f5a2a;
        }
        .breadcrumb .current {
            color: #3a5a3a;
            font-weight: 600;
        }
        .search-section {
            background: #dce8da;
            padding: 1.8rem 0;
            border-bottom: 2px solid #bcd4b8;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #3a6a3a;
            border-radius: 60px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #f9a825;
            box-shadow: 0 0 0 3px rgba(249, 168, 37, 0.25);
        }
        .search-form button {
            background: #2e7d32;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #1b5e20;
            transform: scale(1.02);
        }
        .search-form button i {
            font-size: 1.1rem;
        }
        .page-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        @media (max-width: 860px) {
            .page-wrap {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: relative;
        }
        .sidebar-sticky {
            position: sticky;
            top: 100px;
        }
        @media (max-width: 860px) {
            .sidebar-sticky {
                position: static;
            }
        }
        .widget {
            background: #ffffffdd;
            backdrop-filter: blur(4px);
            border-radius: 20px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #d0e0cc;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .widget h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px dashed #aac8a4;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .widget ul {
            list-style: none;
            padding: 0;
        }
        .widget li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #e2ece0;
        }
        .widget li:last-child {
            border-bottom: none;
        }
        .widget a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }
        .widget a i {
            color: #f9a825;
            width: 1.2rem;
        }
        .featured-image {
            border-radius: 20px;
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #eef5ec;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: #3a5a3a;
            font-style: italic;
        }
        .highlight-box {
            background: #eef7ec;
            border-left: 6px solid #f9a825;
            border-radius: 0 16px 16px 0;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #1b5e20;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: #2e7d32;
            color: #fff;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e2ece0;
        }
        .data-table tr:nth-child(even) {
            background: #f6faf5;
        }
        .data-table tr:hover {
            background: #e6f2e3;
        }
        .tip-card {
            background: #fffae5;
            border-radius: 16px;
            padding: 1.2rem 1.5rem;
            margin: 1.2rem 0;
            border: 1px solid #f0e3b0;
            box-shadow: 0 2px 8px rgba(249, 168, 37, 0.08);
        }
        .tip-card i {
            color: #f9a825;
            margin-right: 0.5rem;
        }
        .interview-block {
            background: #f0f7ee;
            border-radius: 20px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 6px solid #2e7d32;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #1a3a1a;
            position: relative;
            padding-left: 1.8rem;
        }
        .interview-block .quote::before {
            content: "“";
            font-size: 3rem;
            color: #2e7d32;
            position: absolute;
            left: -0.2rem;
            top: -0.8rem;
            opacity: 0.3;
        }
        .author-meta {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 1rem;
            font-weight: 500;
            color: #2a5a2a;
        }
        .author-meta i {
            font-size: 1.8rem;
            color: #2e7d32;
        }
        .btn {
            display: inline-block;
            background: #2e7d32;
            color: #fff;
            padding: 0.6rem 1.6rem;
            border-radius: 60px;
            font-weight: 600;
            transition: 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #1b5e20;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 80, 30, 0.3);
            text-decoration: none;
            color: #fff;
        }
        .btn-gold {
            background: #f9a825;
            color: #1a3a1a;
        }
        .btn-gold:hover {
            background: #e69900;
            color: #1a3a1a;
        }
        .rating-area {
            background: #eef5ec;
            border-radius: 20px;
            padding: 1.8rem;
            margin: 2rem 0;
            border: 1px solid #c8dbc5;
        }
        .rating-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating i {
            transition: 0.15s;
            color: #ddd;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f9a825;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f9a825;
        }
        .star-rating input:checked~label {
            color: #f9a825;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #c8dbc5;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: 0.2s;
            background: #fff;
        }
        .comment-form textarea:focus {
            border-color: #2e7d32;
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
            outline: none;
        }
        .comment-form .btn {
            margin-top: 0.8rem;
        }
        .site-footer {
            background: #1a3a1a;
            color: #d0e0cc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
            border-top: 4px solid #f9a825;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-grid h4 {
            color: #ffd966;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid a {
            color: #bcd4b8;
            display: block;
            padding: 0.2rem 0;
        }
        .footer-grid a:hover {
            color: #fff;
        }
        friend-link {
            display: block;
            background: #1f4a1f;
            border-radius: 12px;
            padding: 1rem 1.2rem;
            margin-top: 0.8rem;
            font-size: 0.95rem;
            line-height: 1.8;
        }
        friend-link a {
            color: #c8e6c9;
            margin: 0 0.3rem;
        }
        friend-link a:hover {
            color: #ffd966;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #2a5a2a;
            font-size: 0.9rem;
            color: #8aaa88;
        }
        .copyright strong {
            color: #c8e6c9;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #2e7d32;
            color: #fff;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .update-badge i {
            font-size: 0.9rem;
        }
        .section-icon {
            margin-right: 0.4rem;
            color: #f9a825;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0.8rem 0;
        }
        .link-list-inline li {
            margin: 0;
        }
        .link-list-inline a {
            background: #e8f0e5;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #c8dbc5;
        }
        .link-list-inline a:hover {
            background: #d0e4cc;
            text-decoration: none;
        }
        hr {
            border: none;
            border-top: 2px dashed #c8dbc5;
            margin: 2rem 0;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form button {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
                font-size: 0.85rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 821px) {
            .main-nav {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #e8f0e5;
        }
        ::-webkit-scrollbar-thumb {
            background: #5a8a5a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #2e7d32;
        }
