* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #faf7f2;
            color: #2e241e;
            line-height: 1.7;
            font-size: 1.05rem;
            padding: 0 1rem;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf8;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            padding: 0 1.5rem 2rem;
            border-radius: 0 0 24px 24px;
        }
        a {
            color: #b34a2c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e1a;
            text-decoration: underline;
        }
        header {
            padding: 1.2rem 0 0.6rem;
            border-bottom: 2px solid #ede6dd;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #4a2c1e;
            background: linear-gradient(135deg, #7a3e2a, #b34a2c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #b34a2c;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            color: #3d2c22;
        }
        nav a:hover {
            border-bottom-color: #b34a2c;
            text-decoration: none;
            color: #b34a2c;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #4a2c1e;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background: #fff8f2;
            padding: 1rem 0.5rem;
            border-radius: 12px;
            margin-top: 0.6rem;
            gap: 0.6rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }
        .nav-mobile a {
            padding: 0.6rem 0.8rem;
            border-left: 4px solid #ede6dd;
        }
        .nav-mobile a:hover {
            border-left-color: #b34a2c;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #7a6a5e;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #7a6a5e;
        }
        .breadcrumb a:hover {
            color: #b34a2c;
        }
        .breadcrumb span {
            color: #b8a89c;
        }
        main {
            padding: 1.5rem 0 2rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #2e1a0e;
            line-height: 1.2;
            margin: 0.8rem 0 1.2rem;
            letter-spacing: -0.5px;
            border-left: 6px solid #b34a2c;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #3d2418;
            margin: 2.4rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 2px dashed #e2d5ca;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #4d3022;
            margin: 1.8rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5d3c2c;
            margin: 1.2rem 0 0.5rem 0;
        }
        p {
            margin: 0 0 1.2rem 0;
            color: #3d3028;
        }
        .highlight {
            background: #f7ede4;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .insight-box {
            background: #f4ede6;
            border-left: 6px solid #b34a2c;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
            font-style: italic;
        }
        .insight-box strong {
            color: #7a3e2a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.6rem 0;
        }
        .stat-card {
            background: #fff6ef;
            padding: 1.2rem 1rem;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            text-align: center;
            border: 1px solid #ede6dd;
        }
        .stat-card i {
            font-size: 2rem;
            color: #b34a2c;
            margin-bottom: 0.4rem;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #2e1a0e;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #6a5a4e;
        }
        .img-wrap {
            margin: 2rem 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #ede6dd;
        }
        .img-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }
        .img-wrap figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #5a4a3e;
            background: #fff8f2;
            border-top: 1px solid #ede6dd;
        }
        .search-section {
            background: #f4ede6;
            padding: 1.6rem 2rem;
            border-radius: 20px;
            margin: 2.4rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            color: #3d2418;
            font-size: 1.1rem;
        }
        .search-section input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd2c6;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffcf8;
            outline: none;
            transition: border 0.2s;
        }
        .search-section input:focus {
            border-color: #b34a2c;
        }
        .search-section button {
            background: #b34a2c;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: #7a2e1a;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 2.4rem 0;
        }
        .feedback-card {
            background: #fff8f2;
            border: 1px solid #ede6dd;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd2c6;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fffcf8;
            outline: none;
            transition: border 0.2s;
            margin-bottom: 0.8rem;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #b34a2c;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            background: #4a2c1e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card button:hover {
            background: #2e1a0e;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ddd2c6;
            cursor: pointer;
            margin-bottom: 0.8rem;
        }
        .star-rating i.active {
            color: #f5b342;
        }
        .star-rating i:hover,
        .star-rating i.active~i {
            color: #f5b342;
        }
        .star-rating i {
            transition: color 0.15s;
        }
        .related-links {
            background: #faf4ee;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            margin: 1.6rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .related-links a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.2rem 0.6rem;
            background: #fffcf8;
            border-radius: 30px;
            border: 1px solid #ede6dd;
            transition: all 0.2s;
        }
        .related-links a:hover {
            background: #b34a2c;
            color: #fff;
            border-color: #b34a2c;
            text-decoration: none;
        }
        footer {
            border-top: 2px solid #ede6dd;
            padding: 2rem 0 1.2rem;
            margin-top: 2rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0 1.2rem;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            padding: 0.3rem 1rem;
            background: #f4ede6;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #e2d5ca;
            transition: all 0.2s;
        }
        friend-link a:hover {
            background: #b34a2c;
            color: #fff;
            border-color: #b34a2c;
            text-decoration: none;
        }
        .copyright {
            font-size: 0.85rem;
            color: #7a6a5e;
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid #ede6dd;
        }
        .copyright strong {
            color: #3d2418;
        }
        @media (max-width: 820px) {
            .wrapper {
                padding: 0 1rem 1.5rem;
            }
            h1 {
                font-size: 2rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .search-section input {
                min-width: auto;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            nav a.nav-desk {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile.open {
                display: flex;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.4rem;
                font-size: 0.98rem;
            }
            .wrapper {
                padding: 0 0.6rem 1rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (min-width: 821px) {
            .hamburger {
                display: none;
            }
            .nav-mobile {
                display: none !important;
            }
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8a7a6e;
            background: #faf4ee;
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            margin-bottom: 1rem;
        }
        .eeat-badge {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin: 0.4rem 0 1rem;
            font-size: 0.85rem;
            color: #6a5a4e;
        }
        .eeat-badge span {
            background: #ede6dd;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
        }
        blockquote {
            border-left: 4px solid #b34a2c;
            padding: 0.8rem 1.4rem;
            margin: 1.2rem 0;
            background: #faf4ee;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d3028;
        }
        ul,
        ol {
            margin: 0.6rem 0 1.2rem 1.6rem;
            color: #3d3028;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
