        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f5f2eb;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #3a7d3a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1f4f1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.8rem 0;
        }
        li {
            margin-bottom: 0.3rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1e3a1e;
            margin-top: 1.6rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #5a8f5a;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #7cb342;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2e5e2e;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d6b3d;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1f3d1f, #2b5a2b);
            padding: 0.8rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #f1f9e9;
            text-shadow: 3px 3px 0 #3f7a3f, 0 0 10px rgba(100, 200, 100, 0.3);
            letter-spacing: 1px;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #e1f0d1;
        }
        .my-logo i {
            margin-right: 8px;
            color: #b0d68a;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f1f9e9;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 0.5rem 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8f0dd;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 4px;
        }
        .breadcrumb {
            background: #e8e2d6;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d5cdbf;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #7a6e5c;
        }
        .breadcrumb a {
            color: #4d6b4d;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #3b6e3b, #1f3d1f);
            color: #f5f2eb;
            padding: 2.5rem 0 2rem;
            text-align: center;
            border-radius: 0 0 40px 40px;
            margin-bottom: 2rem;
        }
        .hero h1 {
            color: #f5f9ee;
            border-bottom: none;
            font-size: 2.6rem;
            margin-top: 0;
            text-shadow: 2px 2px 0 #1f3d1f;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0.6rem auto 0;
            opacity: 0.9;
        }
        .hero .last-update {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.4rem 1.2rem;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 30px;
            font-size: 0.85rem;
            backdrop-filter: blur(4px);
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 2.5rem;
            border: 1px solid #e3dcd0;
        }
        .search-section h2 {
            margin-top: 0;
            border-left-color: #7cb342;
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d5cdbf;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #faf8f5;
        }
        .search-form input[type="text"]:focus {
            border-color: #7cb342;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #3a7d3a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #2d5f2d;
            transform: translateY(-1px);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2rem;
        }
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eae3d7;
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eae3d7;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #d5cdbf;
            padding-bottom: 0.4rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0.8rem 0 0;
        }
        .sidebar li {
            padding: 0.3rem 0;
            border-bottom: 1px solid #f0ebe3;
        }
        .sidebar li a {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #3a5d3a;
        }
        .sidebar li a:hover {
            color: #1f3d1f;
        }
        .featured-img {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-img img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .featured-img figcaption {
            padding: 0.8rem 1.2rem;
            background: #f0ebe3;
            font-size: 0.9rem;
            color: #4d4033;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #faf8f5;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #3a7d3a;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e3dcd0;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f0f7eb;
        }
        .feedback-section {
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 2px solid #e3dcd0;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin-top: 1.2rem;
        }
        .feedback-card {
            background: #faf8f5;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            border: 1px solid #e3dcd0;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #d5cdbf;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #7cb342;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.7rem 1.5rem;
            background: #3a7d3a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #2d5f2d;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d5cdbf;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        .site-footer {
            background: #1f2e1f;
            color: #d5dccd;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 4px solid #3a7d3a;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #b0d68a;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #bdd5a8;
        }
        .site-footer a:hover {
            color: #e1f0d1;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
            text-decoration: none;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #3a4d3a;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #8fa88f;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .main-content {
                padding: 1.5rem 1.2rem;
            }
        }
        @media (max-width: 700px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding-top: 1rem;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
            }
            .main-nav a:hover {
                background: rgba(255, 255, 255, 0.08);
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.6rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .main-content {
                padding: 1rem 0.8rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        .highlight {
            background: #f0f7eb;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .btn-mini {
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            background: #e8f0dd;
            color: #2d5f2d;
            font-size: 0.85rem;
            font-weight: 600;
            transition: background 0.2s;
        }
        .btn-mini:hover {
            background: #d0e0c0;
            text-decoration: none;
        }
        .spacer {
            height: 1rem;
        }
