        *,
        *::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: #f8f7f2;
            color: #2d2a24;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: #922b21;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1e3c2c;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.2rem;
        }
        h2 {
            font-size: 1.7rem;
            border-bottom: 3px solid #d4a373;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.3rem;
            color: #2d5a3d;
        }
        h4 {
            font-size: 1.1rem;
            color: #3d6b4e;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3c2c 0%, #2d5a3d 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px 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.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f7d44a;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
            transition: transform .25s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #f7d44a;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #e8e0d0;
            display: block;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7d44a;
            color: #f7d44a;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background .2s;
        }
        .nav-toggle:hover {
            background: rgba(247, 212, 74, 0.15);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem 0.6rem;
        }
        .main-nav a {
            color: #f0ead6;
            font-weight: 500;
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: background .2s, color .2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(247, 212, 74, 0.2);
            color: #f7d44a;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #ebe7dc;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            color: #5b5b5b;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #9a8c7a;
        }
        .breadcrumb a {
            color: #5b5b5b;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb .active {
            color: #2d5a3d;
            font-weight: 600;
        }
        .search-section {
            background: #fff;
            padding: 1.2rem 0;
            border-bottom: 1px solid #e0d8cc;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            border: 1px solid #d4c9b8;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            outline: none;
            background: #fcfaf5;
            min-width: 0;
        }
        .search-form button {
            background: #c0392b;
            border: none;
            color: #fff;
            padding: 0 1.6rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background .2s;
        }
        .search-form button:hover {
            background: #922b21;
        }
        .hero {
            background: linear-gradient(135deg, #f5efe6 0%, #e8e0d0 100%);
            padding: 2.5rem 0 2rem;
            text-align: center;
            border-bottom: 4px solid #d4a373;
        }
        .hero h1 {
            font-size: 2.5rem;
            color: #1e3c2c;
            margin-bottom: 0.5rem;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #5b5b5b;
            max-width: 700px;
            margin: 0 auto 1.2rem;
        }
        .hero .last-updated {
            font-size: 0.85rem;
            color: #8a7a66;
            background: #fff5e6;
            display: inline-block;
            padding: 0.2rem 1.2rem;
            border-radius: 20px;
            border: 1px solid #d4c9b8;
        }
        .hero .last-updated i {
            margin-right: 0.4rem;
        }
        .main-content {
            padding: 2rem 0 3rem;
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2rem;
        }
        .content-body {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 12px;
            padding: 1.2rem 1rem;
            margin-bottom: 1.2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e0d0;
        }
        .sidebar-card h4 {
            margin-top: 0;
            font-size: 1rem;
            border-bottom: 2px solid #d4a373;
            padding-bottom: 0.3rem;
            margin-bottom: 0.8rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card a {
            font-size: 0.9rem;
            color: #2d5a3d;
        }
        .sidebar-card a:hover {
            color: #c0392b;
        }
        .featured-image {
            margin: 1.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f5efe6;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            color: #5b5b5b;
            font-style: italic;
        }
        .data-table {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        .data-table table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #1e3c2c;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e8e0d0;
        }
        .data-table tr:nth-child(even) {
            background: #fcfaf5;
        }
        .data-table tr:hover {
            background: #f5efe6;
        }
        .review-section {
            background: #fff;
            border-radius: 14px;
            padding: 1.8rem 1.5rem;
            margin: 2rem 0;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e0d0;
        }
        .review-section h2 {
            margin-top: 0;
            border-bottom-color: #c0392b;
        }
        .rating-stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.8rem;
            color: #e0d0b8;
            cursor: pointer;
            margin: 0.8rem 0;
        }
        .rating-stars .star {
            transition: color .2s, transform .15s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f7b731;
            transform: scale(1.1);
        }
        .rating-stars .star.selected {
            color: #f7b731;
        }
        .review-form textarea {
            width: 100%;
            border: 1px solid #d4c9b8;
            border-radius: 8px;
            padding: 0.8rem;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            background: #fcfaf5;
            transition: border .2s;
        }
        .review-form textarea:focus {
            outline: none;
            border-color: #c0392b;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
        }
        .review-form .btn-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s, transform .15s;
        }
        .btn:hover {
            background: #922b21;
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #c0392b;
            color: #c0392b;
        }
        .btn-outline:hover {
            background: #c0392b;
            color: #fff;
        }
        .comment-list {
            margin-top: 1.5rem;
            border-top: 1px solid #e8e0d0;
            padding-top: 1rem;
        }
        .comment-item {
            padding: 0.8rem 0;
            border-bottom: 1px solid #f0ebe2;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #8a7a66;
            display: flex;
            gap: 0.8rem;
            align-items: center;
        }
        .comment-item .meta .stars {
            color: #f7b731;
            font-size: 0.9rem;
        }
        .comment-item p {
            margin: 0.3rem 0 0;
        }
        friend-link {
            display: block;
            background: #f5efe6;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin-top: 2rem;
            border: 1px solid #d4c9b8;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.1rem;
            color: #1e3c2c;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            list-style: none;
            padding: 0;
            margin-top: 0.6rem;
        }
        friend-link li a {
            font-size: 0.92rem;
            color: #2d5a3d;
        }
        friend-link li a:hover {
            color: #c0392b;
        }
        .site-footer {
            background: #1e3c2c;
            color: #e0d8cc;
            padding: 2rem 0 1.2rem;
            margin-top: 2rem;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.2rem;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        .site-footer a {
            color: #f7d44a;
        }
        .site-footer a:hover {
            color: #fff3b0;
        }
        @media (max-width: 860px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .sidebar .sidebar-card {
                display: inline-block;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 720px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding-top: 0.8rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.5rem 0.8rem;
                border-radius: 6px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form input {
                font-size: 0.9rem;
                padding: 0.6rem 0.8rem;
            }
            .review-section {
                padding: 1.2rem 1rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .data-table table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.6rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        .highlight-box {
            background: #f0f7eb;
            border-left: 5px solid #2d5a3d;
            padding: 1rem 1.2rem;
            border-radius: 0 10px 10px 0;
            margin: 1.2rem 0;
        }
        .highlight-box strong {
            color: #1e3c2c;
        }
        .emoji-big {
            font-size: 1.3rem;
        }
        .inline-list {
            display: inline;
            padding: 0;
        }
        .inline-list li {
            display: inline;
            margin-right: 0.8rem;
        }
        .two-col-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1.2rem;
            padding: 0;
            list-style: none;
        }
        .two-col-list li::before {
            content: "◆ ";
            color: #d4a373;
        }
        @media (max-width: 500px) {
            .two-col-list {
                grid-template-columns: 1fr;
            }
        }
