        *,
        *::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: #faf7f2;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b75d2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #7a3b1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #1e2a2f;
            margin-top: 1.6em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #e8d5b5;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 500;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        blockquote {
            border-left: 5px solid #b75d2b;
            background: #f0ebe2;
            padding: 1rem 1.6rem;
            margin: 1.6rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d4a4f;
        }
        hr {
            border: none;
            border-top: 2px dashed #dccfc0;
            margin: 2.4rem 0;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            padding: 1.6rem 2rem 2.4rem;
        }
        @media (max-width: 640px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 1rem 1rem 1.6rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0 0.6rem;
            border-bottom: 2px solid #e8d5b5;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #1e2a2f;
            background: linear-gradient(135deg, #b75d2b, #d48c5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            font-size: 1.8rem;
            -webkit-text-fill-color: initial;
            color: #b75d2b;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            -webkit-text-fill-color: initial;
            color: #5a4a3a;
            letter-spacing: 0.3px;
            background: none;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 0.9rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #2e3a3f;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover,
        .nav-list li a:focus-visible {
            background: #b75d2b;
            color: #fff;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 0.3rem;
        }
        .hamburger {
            display: none;
            font-size: 1.7rem;
            background: none;
            border: none;
            color: #1e2a2f;
            cursor: pointer;
            padding: 0.4rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0ebe2;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                border-radius: 16px;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
                padding: 0.8rem 0;
                margin-top: 0.8rem;
                border: 1px solid #e8d5b5;
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 99;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                position: relative;
                flex-wrap: wrap;
            }
            .nav-list li a {
                padding: 0.7rem 1.4rem;
                border-radius: 0;
            }
            .nav-list li a i {
                width: 1.6rem;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0 0.2rem;
            margin: 0 0 0.4rem;
            font-size: 0.88rem;
            color: #6a7a7f;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #b75d2b;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #6a7a7f;
        }
        .breadcrumb a:hover {
            color: #b75d2b;
        }
        .breadcrumb .current {
            color: #1e2a2f;
            font-weight: 500;
        }
        .search-section {
            background: #f4efe8;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 1.8rem 0 2.2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.4rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #dccfc0;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b75d2b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(183, 93, 43, 0.15);
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            background: #b75d2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #7a3b1a;
            transform: scale(0.97);
        }
        .featured-image {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            max-height: 460px;
        }
        .featured-image figcaption {
            background: #f4efe8;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: #4a5a5f;
            font-style: italic;
        }
        .interaction-panel {
            display: flex;
            flex-wrap: wrap;
            gap: 1.6rem;
            margin: 2.4rem 0 1.6rem;
            padding: 1.6rem 2rem;
            background: #f8f4ee;
            border-radius: 18px;
            border: 1px solid #e8d5b5;
        }
        .rating-box,
        .comment-box {
            flex: 1 1 260px;
        }
        .rating-box h4,
        .comment-box h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }
        .star-group {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #dccfc0;
            direction: rtl;
        }
        .star-group input {
            display: none;
        }
        .star-group label {
            cursor: pointer;
            transition: color 0.15s;
            color: #dccfc0;
        }
        .star-group label:hover,
        .star-group label:hover~label,
        .star-group input:checked~label {
            color: #e8a834;
        }
        .rating-form button,
        .comment-form button {
            margin-top: 0.6rem;
            padding: 0.5rem 1.4rem;
            background: #b75d2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #7a3b1a;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dccfc0;
            border-radius: 14px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 70px;
            transition: border 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #b75d2b;
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 2px solid #dccfc0;
            border-radius: 40px;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }
        .comment-form input[type="text"]:focus {
            border-color: #b75d2b;
            outline: none;
        }
        friend-link {
            display: block;
            padding: 1.4rem 0 0.8rem;
            border-top: 2px solid #e8d5b5;
            margin-top: 2rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.25rem 0.8rem;
            background: #f4efe8;
            border-radius: 30px;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #b75d2b;
            color: #fff;
            text-decoration: none;
        }
        friend-link .label {
            font-weight: 600;
            color: #3d4a4f;
            margin-right: 0.6rem;
        }
        .site-footer {
            padding: 1.6rem 0 0.8rem;
            border-top: 2px solid #e8d5b5;
            margin-top: 2.4rem;
            text-align: center;
            font-size: 0.9rem;
            color: #5a6a6f;
        }
        .site-footer .copyright {
            font-weight: 400;
            letter-spacing: 0.2px;
        }
        .site-footer .copyright i {
            color: #b75d2b;
        }
        @media (max-width: 480px) {
            .search-section {
                padding: 1.2rem 1rem;
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .interaction-panel {
                padding: 1.2rem 1rem;
                flex-direction: column;
            }
            .star-group {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #e8d5b5;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #3d4a4f;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 0.3rem;
        }
        .highlight-box {
            background: #fcf8f2;
            border-left: 5px solid #b75d2b;
            padding: 1.2rem 1.8rem;
            border-radius: 0 14px 14px 0;
            margin: 1.6rem 0;
        }
        .emoji-lg {
            font-size: 1.3em;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            border: 1px solid #dccfc0;
            text-align: left;
        }
        th {
            background: #f0ebe2;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #faf7f2;
        }
        .btn-top {
            display: inline-block;
            margin-top: 0.6rem;
            padding: 0.3rem 1.2rem;
            background: #f0ebe2;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: background 0.2s;
        }
        .btn-top:hover {
            background: #b75d2b;
            color: #fff;
            text-decoration: none;
        }
        .schema-hidden {
            display: none;
        }
        :target {
            scroll-margin-top: 80px;
        }
