        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #faf7f2;
            color: #2c2c2c;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d4a017;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.4rem;
            margin: 0.6rem 0 1.2rem 0;
        }
        li {
            margin-bottom: 0.3rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1e3c2c;
            margin-top: 0;
        }
        h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            border-bottom: 4px solid #d4a017;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.7rem;
            margin: 2.2rem 0 1rem 0;
            border-left: 6px solid #1a6b3c;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.3rem;
            margin: 1.8rem 0 0.8rem 0;
            color: #2a5a3a;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.4rem 0 0.5rem 0;
            color: #3a6a4a;
        }
        p {
            margin: 0 0 1.2rem 0;
        }
        strong {
            color: #1a3e2a;
        }
        blockquote {
            border-left: 4px solid #d4a017;
            background: #f3efe8;
            padding: 0.8rem 1.2rem;
            margin: 1.2rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1e3c2c 0%, #2a5a3a 100%);
            color: #fff;
            padding: 0.8rem 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;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5e7c8;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-shadow: 2px 2px 0 #1a2e1a;
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd966;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #d4a017;
        }
        .my-logo .logo-sub {
            font-size: 0.6rem;
            font-weight: 400;
            letter-spacing: 0.3em;
            display: block;
            color: #b8d4b8;
            text-transform: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5e7c8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8f0e8;
            font-weight: 500;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #d4a017;
            color: #1e3c2c;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #ede8df;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dcd5c8;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #8a7a6a;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb .current {
            color: #6a5a4a;
            font-weight: 600;
        }
        .hero-img-wrap {
            margin: 1.8rem 0 2.2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #e8e0d4;
        }
        .hero-img-wrap img {
            width: 100%;
            aspect-ratio: 1200/500;
            object-fit: cover;
        }
        .search-section {
            background: #e8e0d4;
            padding: 1.6rem 1.8rem;
            border-radius: 16px;
            margin: 2rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #c4b8a8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffdfa;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #1a6b3c;
        }
        .search-form button {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #d4a017;
            transform: scale(1.02);
        }
        .rating-section {
            background: #f3efe8;
            padding: 1.6rem 1.8rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #dcd5c8;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d4a017;
            cursor: pointer;
            direction: rtl;
            justify-content: center;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: transform 0.1s, color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #b8860b;
            transform: scale(1.1);
        }
        .rating-stars label i {
            pointer-events: none;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }
        .rating-form input[type="submit"] {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 0.5rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form input[type="submit"]:hover {
            background: #d4a017;
        }
        .comments-section {
            background: #fffdfa;
            padding: 1.8rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #e0d8cc;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 0.8rem 1rem;
            border: 2px solid #dcd5c8;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            background: #fcf9f5;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #1a6b3c;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 0.8rem 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #dcd5c8;
            border-radius: 30px;
            font-size: 0.95rem;
            background: #fcf9f5;
        }
        .comment-form .form-row input:focus {
            border-color: #1a6b3c;
            outline: none;
        }
        .comment-form button {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #d4a017;
        }
        friend-link {
            display: block;
            background: #f3efe8;
            padding: 1.8rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #dcd5c8;
        }
        friend-link h3 {
            margin-top: 0;
            border-left: 6px solid #d4a017;
            padding-left: 1rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        friend-link li a {
            color: #1a6b3c;
            font-weight: 500;
        }
        friend-link li a:hover {
            color: #d4a017;
        }
        .site-footer {
            background: #1e3c2c;
            color: #d8e8d8;
            padding: 2rem 0 1.2rem 0;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            border-top: 1px solid #3a5a4a;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            font-size: 0.85rem;
            color: #a8b8a8;
        }
        .site-footer a {
            color: #f5e7c8;
        }
        .site-footer a:hover {
            color: #d4a017;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #e8f0e8;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #1a5a3a;
            font-weight: 500;
            margin-bottom: 1rem;
            border: 1px solid #b8d4b8;
        }
        .update-badge i {
            color: #1a6b3c;
        }
        .text-highlight {
            background: #fdf4d8;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
        }
        .stat-card {
            background: #f3efe8;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1rem 0;
            border-left: 6px solid #d4a017;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a6b3c;
            line-height: 1.2;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 1.6rem 0;
        }
        @media (max-width: 700px) {
            .two-col {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        @media (max-width: 860px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.3rem;
                padding: 1rem 0 0.4rem 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.8rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 1rem;
                border-radius: 8px;
                width: 100%;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .search-section,
            .rating-section,
            .comments-section,
            friend-link {
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media print {
            .site-header {
                position: static;
                background: #fff;
                color: #000;
            }
            .nav-toggle,
            .main-nav {
                display: none !important;
            }
            .site-footer {
                background: #fff;
                color: #000;
            }
        }
