        *,
        *::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: #f8f5f0;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b35c1e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #7a3b0f;
            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;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 0.6rem;
            border-left: 5px solid #e68a2e;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.5rem;
            margin-bottom: 0.3rem;
            font-weight: 500;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin-bottom: 1.2rem;
            padding-left: 1.8rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        strong {
            font-weight: 600;
            color: #0f1a1f;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .site-header {
            padding: 1.2rem 0 0.6rem;
            border-bottom: 2px solid #e6d9cc;
            margin-bottom: 1.5rem;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 700;
            color: #2d4a3b;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #2d4a3b 0%, #e68a2e 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            color: #5a6b60;
            -webkit-text-fill-color: #5a6b60;
            background: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.6rem 1.2rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
            color: #1e2a2f;
        }
        .nav-bar a:hover {
            background: #e6d9cc;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e2a2f;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e6d9cc;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 0.5rem;
            padding: 0.8rem 0 0.4rem;
            border-top: 1px solid #e6d9cc;
            margin-top: 0.5rem;
        }
        .nav-mobile.open {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            font-weight: 500;
        }
        .nav-mobile a:hover {
            background: #e6d9cc;
        }
        .breadcrumb {
            font-size: 0.9rem;
            padding: 0.6rem 0 0.2rem;
            color: #5a6b60;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.7rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.7rem;
            color: #b35c1e;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #5a6b60;
        }
        .breadcrumb a:hover {
            color: #b35c1e;
        }
        .breadcrumb .current {
            color: #1e2a2f;
            font-weight: 500;
        }
        .hero-img-wrap {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            background: #e6d9cc;
        }
        .hero-img-wrap img {
            width: 100%;
            height: auto;
            aspect-ratio: 1200/630;
            object-fit: cover;
            display: block;
        }
        .search-block {
            background: #f0ebe4;
            padding: 1.5rem 1.8rem;
            border-radius: 16px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-block label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 280px;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #d9cbbd;
            border-radius: 30px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #e68a2e;
        }
        .search-form button {
            background: #e68a2e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #c9731f;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .rating-box,
        .comment-box {
            background: #fff;
            padding: 1.8rem 1.8rem 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e6d9cc;
        }
        .rating-box h3,
        .comment-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #e6d9cc;
            cursor: pointer;
            margin: 0.5rem 0 0.8rem;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.1s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #e68a2e;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .rating-box form,
        .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-top: 0.5rem;
        }
        .rating-box input[type="number"],
        .comment-box input,
        .comment-box textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #e6d9cc;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #faf8f5;
            transition: border 0.2s;
        }
        .rating-box input:focus,
        .comment-box input:focus,
        .comment-box textarea:focus {
            outline: none;
            border-color: #e68a2e;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-submit {
            background: #2d4a3b;
            color: #fff;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .btn-submit:hover {
            background: #1d3329;
        }
        friend-link {
            display: block;
            padding: 1.8rem 0 1rem;
            border-top: 2px solid #e6d9cc;
            margin-top: 2.5rem;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.8rem;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.8rem;
            list-style: none;
            padding: 0;
        }
        .friend-list li a {
            color: #5a6b60;
            font-weight: 500;
            padding: 0.2rem 0;
        }
        .friend-list li a:hover {
            color: #b35c1e;
        }
        .site-footer {
            padding: 1.2rem 0 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #5a6b60;
            border-top: 1px solid #e6d9cc;
            margin-top: 1.5rem;
        }
        .site-footer .copyright {
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            .nav-bar .nav-links {
                display: none;
            }
            .nav-mobile.open {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .search-block {
                padding: 1.2rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
            .nav-bar .nav-links {
                display: flex;
                gap: 0.6rem 1.2rem;
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .interaction-grid {
                gap: 1rem;
            }
            .rating-box,
            .comment-box {
                padding: 1.2rem;
            }
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: #7f8f84;
            background: #f0ebe4;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            margin-bottom: 1rem;
        }
        .section-highlight {
            background: #fcf9f5;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            border-left: 6px solid #e68a2e;
            margin: 1.8rem 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .text-muted {
            color: #5a6b60;
        }
        .gap-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            align-items: center;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.6rem 0.8rem;
            border-bottom: 1px solid #e6d9cc;
            text-align: left;
        }
        th {
            background: #f0ebe4;
            font-weight: 600;
        }
        .inline-icon {
            margin-right: 0.3rem;
            color: #e68a2e;
        }
