        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            background: #f7f4f0;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #7c2d12;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1f1a16;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #d97706;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #d97706;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #3d362f;
        }
        h4 {
            font-size: 1.2rem;
            color: #5c4f42;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #1f1a16;
            color: #f7f4f0;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fbbf24;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.04);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(251, 191, 36, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8e0d5;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            text-decoration: none;
        }
        .breadcrumb {
            background: #efe7dc;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            border-radius: 0 0 8px 8px;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
        }
        .breadcrumb a {
            color: #7c2d12;
        }
        .breadcrumb a::after {
            content: "›";
            margin-left: 0.5rem;
            color: #9a7b5f;
        }
        .breadcrumb span {
            color: #5c4f42;
            font-weight: 500;
        }
        .search-section {
            background: #fff8f0;
            padding: 1.2rem 0;
            border-bottom: 1px solid #e2d6c8;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 520px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #d4c5b3;
            border-radius: 40px;
            font-size: 1rem;
            background: white;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #d97706;
        }
        .search-form button {
            background: #d97706;
            color: white;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #b45309;
        }
        .content-area {
            background: white;
            border-radius: 16px;
            padding: 2rem 2.4rem;
            margin: 2rem auto;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
        }
        .featured-image {
            margin: 1.6rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            max-height: 480px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a7a6a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .last-updated i {
            color: #d97706;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.8rem 0;
            margin: 1.2rem 0;
            border-top: 1px dashed #ddd2c4;
            border-bottom: 1px dashed #ddd2c4;
        }
        .link-list-inline a {
            font-weight: 500;
        }
        .link-list-inline a::before {
            content: "🔗 ";
            font-size: 0.8rem;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.8rem 0;
            padding-top: 2rem;
            border-top: 2px solid #e2d6c8;
        }
        @media (max-width: 700px) {
            .interaction-section {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
        }
        .rating-box,
        .comment-box {
            background: #fcf9f5;
            padding: 1.6rem 1.8rem;
            border-radius: 16px;
            border: 1px solid #e8dfd4;
        }
        .rating-box h3,
        .comment-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d4c5b3;
            cursor: pointer;
            transition: color 0.2s;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: transform 0.15s, color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f59e0b;
            transform: scale(1.15);
        }
        .rating-form button,
        .comment-form button {
            background: #d97706;
            color: white;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            margin-top: 0.8rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #b45309;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #d4c5b3;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 90px;
            transition: border 0.3s;
            background: white;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #d97706;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d4c5b3;
            border-radius: 40px;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            transition: border 0.3s;
        }
        .comment-form input[type="text"]:focus {
            outline: none;
            border-color: #d97706;
        }
        .site-footer {
            background: #1f1a16;
            color: #d4c5b3;
            padding: 2.4rem 0 1.6rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            justify-content: center;
        }
        .footer-links a {
            color: #d4c5b3;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            border-top: 1px solid #3d362f;
            margin-top: 1.2rem;
            text-align: center;
            font-size: 0.95rem;
            color: #a89885;
        }
        friend-link a {
            color: #fbbf24;
            margin: 0 0.4rem;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: #8a7a6a;
            padding-top: 1rem;
            border-top: 1px solid #2d2a24;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                padding: 1rem 0 0.4rem;
                border-top: 1px solid #3d362f;
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.4rem;
                border-bottom: 1px solid #2d2a24;
            }
            .content-area {
                padding: 1.2rem 1rem;
                border-radius: 12px;
                margin: 1rem auto;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
        }
        .text-muted {
            color: #8a7a6a;
            font-size: 0.9rem;
        }
        .highlight {
            background: #fef3c7;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .schema-hidden {
            display: none;
        }
