        *,
        *::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, sans-serif;
            background: #faf8f2;
            color: #2c2c2c;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #2d6a1e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #4a9e32;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1e3d0f;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2a5216;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-bottom: 3px solid #c5b08b;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #3d6b24;
            margin-top: 2rem;
            margin-bottom: 0.6rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4f7e34;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .text-small {
            font-size: 0.9rem;
            color: #6b6b6b;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1e3d0f 0%, #2d5a1a 100%);
            padding: 0.8rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #f5e7c8;
            letter-spacing: -0.5px;
            text-shadow: 2px 2px 0 #0f2a06;
            transition: transform 0.2s ease;
            display: inline-block;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f5e7c8;
        }
        .my-logo i {
            color: #f5c542;
            margin-right: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5e7c8;
            color: #f5e7c8;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            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: #e8dcc8;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f5e7c8;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            background: #ede7db;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6ccb8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li {
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #8a7a62;
        }
        .breadcrumb a {
            color: #4f6e3a;
        }
        .breadcrumb .current {
            color: #5c4033;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d5a1a 0%, #4a7c2e 50%, #6b9e4a 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            margin-bottom: 2rem;
            position: relative;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: repeating-linear-gradient(90deg, #c5b08b 0px, #c5b08b 20px, #8a7a62 20px, #8a7a62 40px);
        }
        .hero h1 {
            color: #fff;
            font-size: 2.6rem;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.92;
            max-width: 780px;
            margin-top: 0.5rem;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin-top: 1rem;
            font-size: 0.95rem;
            opacity: 0.85;
        }
        .hero .meta-info i {
            margin-right: 0.3rem;
        }
        .search-section {
            background: #ede7db;
            padding: 1.5rem 0;
            border-bottom: 1px solid #d6ccb8;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #c5b08b;
            border-radius: 8px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #2d6a1e;
            outline: none;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #2d6a1e;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #1e4d12;
        }
        .content-area {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .sidebar-card {
            background: #f3efe7;
            border-radius: 12px;
            padding: 1.4rem;
            border: 1px solid #ddd3c0;
            margin-bottom: 1.5rem;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            color: #1e3d0f;
            border-bottom: 2px solid #c5b08b;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card a {
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: 4px;
            font-size: 0.95rem;
            transition: background 0.2s;
        }
        .sidebar-card a:hover {
            background: #e2d9c8;
            text-decoration: none;
        }
        .sidebar-card a i {
            margin-right: 0.4rem;
            color: #4f7e34;
            font-size: 0.8rem;
        }
        .featured-image-wrap {
            margin: 2rem 0 2.5rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
            background: #e2d9c8;
            position: relative;
        }
        .featured-image-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image-wrap .img-caption {
            padding: 0.8rem 1.2rem;
            background: #1e3d0f;
            color: #e8dcc8;
            font-size: 0.9rem;
            font-style: italic;
        }
        .featured-image-wrap .img-caption i {
            margin-right: 0.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e2d9c8;
        }
        th {
            background: #2d5a1a;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f5ef;
        }
        tr:hover {
            background: #ede7db;
        }
        .interaction-section {
            background: #f3efe7;
            border-radius: 14px;
            padding: 2rem 2rem 1.8rem;
            margin: 3rem 0 1.5rem;
            border: 1px solid #ddd3c0;
        }
        .interaction-section h2 {
            margin-top: 0;
            border-bottom: 3px solid #c5b08b;
            padding-bottom: 0.4rem;
        }
        .comment-form,
        .score-form {
            display: grid;
            gap: 1rem;
            margin: 1.2rem 0 1.8rem;
        }
        .comment-form input,
        .comment-form textarea,
        .score-form select {
            padding: 0.7rem 1rem;
            border: 2px solid #c5b08b;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .score-form select:focus {
            border-color: #2d6a1e;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            padding: 0.7rem 2rem;
            background: #2d6a1e;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            justify-self: start;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #1e4d12;
        }
        .score-form {
            grid-template-columns: auto 1fr auto;
            align-items: center;
        }
        .score-form label {
            font-weight: 600;
            color: #2a5216;
            white-space: nowrap;
        }
        .score-form select {
            min-width: 120px;
        }
        .rating-stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #d4a84b;
        }
        friend-link {
            display: block;
            background: #2d5a1a;
            color: #e8dcc8;
            padding: 1.2rem 0;
            text-align: center;
            border-top: 4px solid #f5c542;
        }
        friend-link .friend-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 2rem;
            align-items: center;
        }
        friend-link .friend-label {
            font-weight: 700;
            font-size: 1.05rem;
            color: #f5e7c8;
        }
        friend-link a {
            color: #f5e7c8;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none;
            color: #fff;
        }
        friend-link a i {
            margin-right: 0.3rem;
        }
        .site-footer {
            background: #1a2e0e;
            color: #c5bca8;
            padding: 2rem 0 1.5rem;
            font-size: 0.9rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
            align-items: center;
        }
        .footer-inner .copyright {
            opacity: 0.85;
        }
        .footer-inner .copyright i {
            margin-right: 0.3rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .footer-links a {
            color: #c5bca8;
        }
        .footer-links a:hover {
            color: #f5e7c8;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .sidebar .sidebar-card {
                display: inline-block;
                width: 100%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 1rem;
                gap: 0;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 0.5rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .score-form {
                grid-template-columns: 1fr;
            }
            .score-form button {
                justify-self: stretch;
            }
            .search-form button span {
                display: none;
            }
            .interaction-section {
                padding: 1.5rem 1rem;
            }
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 2rem 0 1.8rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .friend-inner {
                flex-direction: column;
                gap: 0.5rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        .highlight-box {
            background: #f0eadc;
            border-left: 4px solid #2d6a1e;
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .highlight-box i {
            color: #2d6a1e;
            margin-right: 0.5rem;
        }
        .emoji-big {
            font-size: 1.3em;
            margin-right: 0.2rem;
        }
        .tag {
            display: inline-block;
            background: #2d5a1a;
            color: #fff;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #ede7db;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #4f6e3a;
        }
        .last-updated i {
            color: #2d6a1e;
        }
        .pro-tip {
            background: #e6f0e0;
            border-radius: 10px;
            padding: 1rem 1.4rem;
            margin: 1.4rem 0;
            border: 1px dashed #4f7e34;
        }
        .pro-tip i {
            color: #2d6a1e;
            margin-right: 0.5rem;
        }
