        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #b8860b;
            --primary-dark: #8b6508;
            --secondary: #1a1a2e;
            --accent: #e8d5a3;
            --bg: #faf6ef;
            --bg-card: #ffffff;
            --text: #2c2c2c;
            --text-light: #5a5a5a;
            --border: #dcc9a6;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: 0.3s ease;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 17px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: var(--primary-dark);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: #a0522d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.3;
            color: var(--secondary);
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.7rem 0;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem 0;
            color: var(--primary-dark);
        }
        p {
            margin-bottom: 1rem;
        }
        ul,
        ol {
            margin: 0.6rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border);
        }
        header {
            background: var(--secondary);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--primary);
        }
        .my-logo:hover {
            color: #f0e6c5;
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.8rem;
            color: #ccc;
            display: block;
            line-height: 1;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        nav a {
            color: #f0ebe0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            position: relative;
            transition: color var(--transition);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width var(--transition);
        }
        nav a:hover {
            color: var(--accent);
            text-decoration: none;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0 4px;
        }
        .breadcrumb {
            padding: 1rem 0 0.2rem 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--primary-dark);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #aaa;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
            color: #fff;
            padding: 3rem 0;
            border-radius: var(--radius);
            margin: 1.5rem 0 2rem 0;
            text-align: center;
        }
        .hero h1 {
            color: var(--accent);
            font-size: 2.8rem;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0.6rem auto 0 auto;
            color: #ddd;
        }
        .hero .badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 0.8rem;
        }
        .search-wrap {
            display: flex;
            gap: 10px;
            margin: 1.8rem 0 0.6rem 0;
            flex-wrap: wrap;
        }
        .search-wrap input {
            flex: 1;
            min-width: 200px;
            padding: 0.75rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            background: #fff;
            transition: border var(--transition);
        }
        .search-wrap input:focus {
            border-color: var(--primary);
        }
        .search-wrap button {
            padding: 0.75rem 2rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-wrap button:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin: 0.6rem 0 0.8rem 0;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f5b342;
            transform: scale(1.1);
        }
        .rating-stars i:hover~i {
            color: #ddd;
        }
        .rating-display {
            font-weight: 600;
            color: var(--primary-dark);
            margin-left: 10px;
            font-size: 1.1rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            font-family: var(--font);
            resize: vertical;
            min-height: 90px;
            transition: border var(--transition);
            background: #fff;
        }
        .comment-form textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .comment-form button {
            margin-top: 0.6rem;
            padding: 0.7rem 2.2rem;
            background: var(--secondary);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #2d2d44;
            transform: scale(1.02);
        }
        .comment-list {
            margin-top: 1.2rem;
            max-height: 260px;
            overflow-y: auto;
            padding-right: 6px;
        }
        .comment-item {
            padding: 0.8rem 1rem;
            background: #f8f4ec;
            border-radius: 8px;
            margin-bottom: 0.6rem;
            border-left: 4px solid var(--primary);
        }
        .comment-item strong {
            color: var(--secondary);
        }
        .comment-item small {
            color: var(--text-light);
            font-size: 0.8rem;
        }
        .img-wrap {
            margin: 2rem 0 1.8rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .img-wrap img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .img-wrap figcaption {
            background: var(--accent);
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: var(--secondary);
            font-style: italic;
        }
        footer {
            background: var(--secondary);
            color: #ddd;
            padding: 2.5rem 0 1.5rem 0;
            margin-top: 3rem;
        }
        footer a {
            color: var(--accent);
        }
        footer a:hover {
            color: #fff;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner friend-link {
            display: block;
            padding: 0.6rem 0;
        }
        .footer-inner friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
            padding: 0.2rem 0.6rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            font-size: 0.92rem;
        }
        .footer-inner friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                padding: 0.8rem 0 0.4rem 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.6rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.5rem 0.2rem;
                font-size: 1rem;
            }
            nav a::after {
                display: none;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .section-card {
                padding: 1.2rem 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .search-wrap button {
                padding: 0.7rem 1.2rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 15px;
            }
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            .section-card {
                padding: 0.9rem 0.9rem;
            }
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .text-sm {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .highlight {
            background: #fdf5e6;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .btn-outline {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            border: 2px solid var(--primary);
            border-radius: 30px;
            font-weight: 600;
            color: var(--primary-dark);
            transition: all var(--transition);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
            text-decoration: none;
        }
        .tag {
            display: inline-block;
            background: var(--accent);
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--secondary);
            margin-right: 0.3rem;
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f0ebe0;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 10px;
        }
        .schema-hidden {
            display: none;
        }
