        *,
        *::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, Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #2e7d32;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #1b5e20;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1b3b1b;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.2rem;
            border-left: 6px solid #4caf50;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.7rem;
            border-bottom: 2px solid #a5d6a7;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #2e5a2e;
        }
        h4 {
            font-size: 1.1rem;
            color: #3a6e3a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1b3b1b, #2e7d32);
            color: #fff;
            padding: 0.6rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            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.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.08);
            padding: 0.2rem 1rem 0.2rem 0.8rem;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: background 0.3s;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.18);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #ffd54f;
        }
        .my-logo span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #c8e6c9;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: #e8f5e9;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.25s, color 0.25s;
            display: block;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 6px;
        }
        .hamburger {
            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: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb-nav {
            background: #e8f0e3;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #c8dcc8;
        }
        .breadcrumb-nav ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb-nav ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6b8f6b;
            font-weight: 700;
        }
        .breadcrumb-nav a {
            color: #2e7d32;
        }
        .breadcrumb-nav .current {
            color: #1e3a1e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(120deg, #1b3b1b 0%, #2e7d32 60%, #388e3c 100%);
            color: #fff;
            padding: 2.5rem 0 2rem;
            text-align: center;
            border-bottom: 6px solid #ffd54f;
        }
        .hero h1 {
            color: #fff;
            border-left: none;
            padding-left: 0;
            font-size: 2.6rem;
            margin-top: 0;
            text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 780px;
            margin: 0.6rem auto 0;
            opacity: 0.92;
        }
        .hero .hero-badge {
            display: inline-block;
            background: #ffd54f;
            color: #1b3b1b;
            padding: 0.25rem 1.2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #a5d6a7;
            background: #fff;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #2e7d32;
        }
        .search-form input[type="text"] {
            flex: 1;
            border: none;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
        }
        .search-form button {
            background: #2e7d32;
            color: #fff;
            border: none;
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #1b5e20;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #a5d6a7;
            padding-bottom: 0.5rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #eef3ee;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul li a i {
            color: #4caf50;
            width: 1.2rem;
        }
        .feature-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
            background: #e8f0e3;
            text-align: center;
        }
        .feature-image img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: #3a5a3a;
            background: #f0f7ee;
            font-style: italic;
        }
        .highlight-box {
            background: #f0f7ee;
            border-left: 6px solid #4caf50;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #1b5e20;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th {
            background: #2e7d32;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 0.65rem 1rem;
            border-bottom: 1px solid #dde8dd;
        }
        table tr:nth-child(even) {
            background: #f5faf4;
        }
        table tr:hover {
            background: #e8f5e9;
        }
        .comment-section {
            margin-top: 3rem;
            border-top: 2px solid #dde8dd;
            padding-top: 2rem;
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 600px;
            margin-top: 1rem;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form select,
        .score-form input {
            padding: 0.7rem 1rem;
            border: 2px solid #dde8dd;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.25s;
            background: #fafcfa;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form select:focus,
        .score-form input:focus {
            border-color: #4caf50;
            outline: none;
            background: #fff;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            background: #2e7d32;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            max-width: fit-content;
        }
        .btn-primary:hover {
            background: #1b5e20;
            transform: translateY(-1px);
        }
        .btn-primary i {
            font-size: 1.1rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ffb300;
            cursor: default;
        }
        .star-rating i {
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background: #1b3b1b;
            color: #e8f5e9;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #ffd54f;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #a5d6a7;
        }
        .footer-inner a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid #2e5a2e;
            padding-top: 1.2rem;
            margin-top: 1.8rem;
            text-align: center;
            font-size: 0.9rem;
            color: #9cb99c;
        }
        friend-link {
            display: block;
            background: #1e3a1e;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            margin-top: 1rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
        }
        friend-link a i {
            margin-right: 5px;
            color: #ffd54f;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #e8f5e9;
            color: #1b5e20;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(27, 59, 27, 0.97);
                padding: 1rem 0.5rem;
                border-radius: 0 0 16px 16px;
                margin-top: 0.6rem;
                gap: 0.1rem;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content {
                padding: 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
                padding: 0.1rem 0.8rem 0.1rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form button {
                border-radius: 0 0 14px 14px;
                justify-content: center;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .btn-primary {
                width: 100%;
                justify-content: center;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .text-green {
            color: #2e7d32;
        }
        .fw-700 {
            font-weight: 700;
        }
        .small {
            font-size: 0.85rem;
            color: #4a6a4a;
        }
