        *,
        *::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, BlinkMacSystemFont, Roboto, sans-serif;
            background: #f5f3f0;
            color: #1e1b1a;
            line-height: 1.7;
            padding: 0;
        }
        a {
            color: #b84a2c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #7a2e1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1a1a1a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #d4693c;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #e8ddd0;
            padding-bottom: 0.4rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-top: 1.2rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.02rem;
        }
        strong,
        b {
            color: #2d1f19;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1f1a17 0%, #2d241f 100%);
            color: #f0eae4;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f0c8a0;
            text-transform: uppercase;
            text-decoration: none;
            background: linear-gradient(135deg, #f0c8a0, #d4693c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #b8a89a;
            color: #b8a89a;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c9b09b;
            color: #f0eae4;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
            list-style: none;
            padding: 0;
            margin: 0;
            align-items: center;
        }
        .nav-menu li a {
            color: #e8ddd0;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-menu li a:hover {
            background: rgba(212, 105, 60, 0.25);
            color: #f5c8a8;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 4px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #ece6df;
            padding: 0.6rem 1.2rem;
            border-radius: 0 0 10px 10px;
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            margin-bottom: 1.8rem;
            border-bottom: 1px solid #d6c9bc;
        }
        .breadcrumb a {
            color: #7a5a4a;
        }
        .breadcrumb span {
            color: #3a2c24;
        }
        .breadcrumb .sep {
            color: #b09480;
        }
        .search-wrap {
            background: #fffcf8;
            border-radius: 14px;
            padding: 1.6rem 1.8rem;
            margin-bottom: 2.4rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #e6dbd0;
        }
        .search-wrap form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-wrap input[type="text"] {
            flex: 1 1 220px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #d6c9bc;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.25s;
            outline: none;
        }
        .search-wrap input[type="text"]:focus {
            border-color: #d4693c;
        }
        .search-wrap button {
            background: #d4693c;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-wrap button:hover {
            background: #b84a2c;
            transform: scale(0.98);
        }
        .interaction-panel {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem 2.5rem;
            background: #fffcf8;
            border-radius: 14px;
            padding: 1.6rem 1.8rem;
            margin: 2rem 0 2.8rem;
            border: 1px solid #e6dbd0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .rating-wrap,
        .comment-wrap {
            flex: 1 1 240px;
        }
        .rating-wrap h4,
        .comment-wrap h4 {
            margin-top: 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .star-group {
            display: flex;
            gap: 0.2rem;
            font-size: 1.8rem;
            color: #e0c8b0;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-group i:hover,
        .star-group i.active {
            color: #e8a83a;
        }
        .star-group i {
            transition: color 0.15s, transform 0.1s;
        }
        .star-group i:hover {
            transform: scale(1.1);
        }
        .rating-wrap form,
        .comment-wrap form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.6rem;
        }
        .rating-wrap form input,
        .comment-wrap form input,
        .comment-wrap form textarea {
            padding: 0.6rem 1rem;
            border: 2px solid #d6c9bc;
            border-radius: 30px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border 0.25s;
            width: 100%;
        }
        .comment-wrap form textarea {
            border-radius: 14px;
            min-height: 60px;
            resize: vertical;
        }
        .rating-wrap form input:focus,
        .comment-wrap form input:focus,
        .comment-wrap form textarea:focus {
            border-color: #d4693c;
        }
        .rating-wrap form button,
        .comment-wrap form button {
            background: #3a2c24;
            color: #f5ede6;
            border: none;
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.95rem;
        }
        .rating-wrap form button:hover,
        .comment-wrap form button:hover {
            background: #5a3f32;
        }
        .content-area {
            background: #fffcf8;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede3d8;
        }
        .content-area p,
        .content-area li {
            color: #2a2420;
        }
        .content-area .feature-img {
            margin: 1.8rem 0;
            border-radius: 16px;
            background: #ede3d8;
            padding: 0.4rem;
        }
        .content-area .feature-img img {
            border-radius: 12px;
            width: 100%;
        }
        .content-area .feature-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #6a5a4e;
            padding: 0.5rem 0 0.2rem;
            font-style: italic;
        }
        .link-list-embed {
            background: #f4ede6;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            margin: 1.6rem 0;
            border-left: 5px solid #d4693c;
        }
        .link-list-embed ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
        }
        .link-list-embed ul li a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        .link-list-embed ul li a i {
            margin-right: 4px;
            font-size: 0.8rem;
            color: #b84a2c;
        }
        .update-badge {
            display: inline-block;
            background: #e8ddd0;
            padding: 0.25rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #3a2c24;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .site-footer {
            background: #1f1a17;
            color: #d6c9bc;
            padding: 2.2rem 1.5rem 1.8rem;
            margin-top: 4rem;
            border-radius: 20px 20px 0 0;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
        }
        .footer-inner friend-link {
            display: block;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #f0c8a0;
        }
        .footer-inner .friend-links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.6rem;
            list-style: none;
            padding: 0;
        }
        .footer-inner .friend-links-list li a {
            color: #c9b09b;
            font-size: 0.95rem;
        }
        .footer-inner .friend-links-list li a:hover {
            color: #f0c8a0;
        }
        .footer-copy {
            text-align: center;
            margin-top: 1.8rem;
            border-top: 1px solid #3a2c24;
            padding-top: 1.2rem;
            font-size: 0.85rem;
            color: #9a8a7a;
            width: 100%;
        }
        .footer-copy strong {
            color: #d6c9bc;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2d241f;
                padding: 0.8rem 0.6rem;
                border-radius: 12px;
                margin-top: 0.6rem;
                gap: 0.2rem;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 1rem;
                display: block;
                width: 100%;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-area {
                padding: 1rem 1.2rem;
            }
            .interaction-panel {
                padding: 1.2rem;
                gap: 1.2rem;
            }
            .search-wrap {
                padding: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
                flex-wrap: wrap;
            }
            .star-group {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .container {
                padding: 0 0.6rem;
            }
            .content-area {
                padding: 0.8rem 0.8rem;
            }
            .search-wrap form {
                flex-direction: column;
            }
            .search-wrap input[type="text"] {
                width: 100%;
            }
            .search-wrap button {
                width: 100%;
                justify-content: center;
            }
            .rating-wrap form,
            .comment-wrap form {
                flex-direction: column;
            }
            .rating-wrap form button,
            .comment-wrap form button {
                width: 100%;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .text-muted {
            color: #6a5a4e;
        }
        .badge {
            background: #e8ddd0;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #3a2c24;
        }
        hr {
            border: none;
            border-top: 2px solid #ede3d8;
            margin: 2rem 0;
        }
        .nav-toggle .fa-times {
            display: none;
        }
        .nav-toggle.active .fa-bars {
            display: none;
        }
        .nav-toggle.active .fa-times {
            display: inline-block;
        }
        .star-group i.selected {
            color: #e8a83a;
        }
