        *,
        *::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: #faf6f0;
            color: #2e241f;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b85c2a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #7a3e1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.2;
            color: #1f1612;
        }
        h1 {
            font-size: 2.4rem;
            margin: 1.2rem 0 0.6rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 0.8rem;
            border-left: 6px solid #c17b4a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.5rem;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.3rem;
            color: #4d3429;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .text-center {
            text-align: center;
        }
        .badge {
            display: inline-block;
            background: #c17b4a;
            color: #fff;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .site-header {
            background: #1f1612;
            border-radius: 0 0 24px 24px;
            padding: 0.6rem 1.2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            margin-bottom: 1.6rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5d9b3;
            text-shadow: 2px 2px 0 #7a3e1a;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f5d9b3;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            color: #cbaa86;
            display: block;
            letter-spacing: 1px;
        }
        .nav-toggle {
            background: none;
            border: none;
            color: #f5d9b3;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            display: none;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            align-items: center;
        }
        .nav-menu a {
            color: #e8d5c0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #c17b4a;
            color: #f5d9b3;
            text-decoration: none;
        }
        .nav-menu .active a {
            border-bottom-color: #c17b4a;
            color: #f5d9b3;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            background: #efe6dc;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            margin: 0.6rem 0 1.4rem;
            list-style: none;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #9a7b66;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6d4c38;
        }
        .breadcrumb .current {
            color: #2e241f;
            font-weight: 600;
        }
        .search-box {
            display: flex;
            max-width: 520px;
            margin: 1.6rem auto 2rem;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
            border: 1px solid #ddd2c6;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.8rem 1.4rem;
            font-size: 1rem;
            background: #fff;
            outline: none;
            min-width: 0;
        }
        .search-box button {
            background: #c17b4a;
            border: none;
            color: #fff;
            padding: 0.8rem 1.6rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 600;
        }
        .search-box button:hover {
            background: #9e5f33;
        }
        .featured-image {
            margin: 1.8rem 0 2.2rem;
            border-radius: 18px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #6d5a4b;
            margin-top: 0.5rem;
            text-align: center;
            font-style: italic;
        }
        .section-card {
            background: #fffcf7;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
            margin: 2rem 0;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede4db;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.6rem 0;
            list-style: none;
        }
        .link-list li a {
            background: #f0e7de;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            display: inline-block;
            transition: background 0.2s, transform 0.15s;
        }
        .link-list li a:hover {
            background: #dcc9b8;
            transform: translateY(-1px);
            text-decoration: none;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width:680px) {
            .two-col {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .comment-form,
        .rating-form {
            background: #f7f0e9;
            border-radius: 18px;
            padding: 1.6rem 1.8rem;
            margin: 1.8rem 0;
            border: 1px solid #e2d5c9;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d5c6b8;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            margin-bottom: 0.8rem;
            font-family: inherit;
            outline: none;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #c17b4a;
            box-shadow: 0 0 0 3px rgba(193, 123, 74, 0.15);
        }
        .comment-form button,
        .rating-form button {
            background: #c17b4a;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #9e5f33;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4b698;
            cursor: pointer;
            margin-bottom: 0.8rem;
        }
        .rating-stars .star.active {
            color: #e8a040;
        }
        .rating-stars .star {
            transition: color 0.15s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.hover {
            color: #e8a040;
        }
        .site-footer {
            background: #1f1612;
            color: #cbaa86;
            border-radius: 24px 24px 0 0;
            padding: 2rem 1.8rem 1.2rem;
            margin-top: 3rem;
        }
        .site-footer a {
            color: #f0d5ba;
        }
        .site-footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width:700px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .footer-copy {
            border-top: 1px solid #3d2c22;
            padding-top: 1.2rem;
            margin-top: 1.6rem;
            text-align: center;
            font-size: 0.9rem;
            color: #9a7b66;
        }
        friend-link {
            display: block;
            margin: 0.6rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
        }
        @media (max-width:760px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.4rem;
                gap: 0.3rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li {
                width: 100%;
            }
            .nav-menu a {
                display: block;
                padding: 0.5rem 0;
            }
            .site-header {
                padding: 0.6rem 1rem;
            }
        }
        @media (max-width:480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .section-card {
                padding: 1.2rem;
            }
            .comment-form,
            .rating-form {
                padding: 1.2rem;
            }
            .search-box input {
                padding: 0.6rem 1rem;
            }
            .search-box button {
                padding: 0.6rem 1.2rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .schema-hidden {
            display: none;
        }
        .anchor-offset {
            scroll-margin-top: 80px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #ede4db;
        }
        ::-webkit-scrollbar-thumb {
            background: #b88d6a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #9e6f4a;
        }
