        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans', system-ui, -apple-system, sans-serif;
            background: #f8f6f2;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e0e;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #1e2a2f;
        }
        h1 {
            font-size: 2.4rem;
            margin: 1.2rem 0 0.8rem;
            border-left: 6px solid #b45309;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 1rem;
            border-bottom: 2px solid #e5d9cc;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.6rem 0 0.6rem;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.4rem;
            color: #3d4f58;
        }
        p {
            margin: 0 0 1.2rem 0;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 1.2rem 2rem 2rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.8rem;
            border-bottom: 2px solid #e5d9cc;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #b45309, #7a2e0e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #b45309;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            text-decoration: none;
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #1e2a2f;
            transition: background 0.2s, color 0.2s;
        }
        .nav-bar a:hover {
            background: #b45309;
            color: #fff;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b45309;
            border-radius: 40px;
            padding: 0.4rem 1rem;
            font-size: 1.3rem;
            color: #b45309;
            cursor: pointer;
        }
        .nav-toggle:hover {
            background: #b45309;
            color: #fff;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #6b7c84;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #b45309;
        }
        .breadcrumb a {
            color: #6b7c84;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #1e2a2f;
            font-weight: 600;
        }
        .hero-img-wrap {
            margin: 1.6rem 0 2rem;
            border-radius: 20px;
            overflow: hidden;
            background: #e5d9cc;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            display: block;
        }
        .hero-img-caption {
            padding: 0.8rem 1.2rem;
            background: #f1ebe3;
            font-size: 0.95rem;
            color: #3d4f58;
            font-style: italic;
        }
        .search-section {
            background: #f1ebe3;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.6rem;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d5c9bc;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #b45309;
        }
        .search-section button {
            padding: 0.8rem 1.8rem;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-section button:hover {
            background: #7a2e0e;
            transform: scale(0.97);
        }
        .rating-area,
        .comment-area {
            background: #f9f5f0;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            border: 1px solid #e5d9cc;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: #d5c9bc;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        .rating-form button,
        .comment-form button {
            padding: 0.6rem 1.8rem;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 0.6rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #7a2e0e;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d5c9bc;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #b45309;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d5c9bc;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
            margin-bottom: 0.8rem;
        }
        .comment-form input[type="text"]:focus {
            border-color: #b45309;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-form .form-row>* {
            flex: 1 1 200px;
        }
        .inline-links {
            background: #f1ebe3;
            border-radius: 16px;
            padding: 1.4rem 1.8rem;
            margin: 1.6rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .inline-links a {
            font-weight: 500;
            padding: 0.2rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .inline-links a:hover {
            border-bottom-color: #b45309;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.6rem;
            font-size: 0.95rem;
            color: #3d4f58;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            padding: 0.2rem 0;
        }
        .site-footer {
            border-top: 2px solid #e5d9cc;
            padding: 1.6rem 0 1rem;
            margin-top: 2.4rem;
            font-size: 0.92rem;
            color: #6b7c84;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .site-footer .copy {
            font-weight: 400;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 0.8rem 1rem 1.2rem;
            }
            h1 {
                font-size: 1.7rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.2rem;
                padding: 0.8rem 0 0.2rem;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-toggle {
                display: inline-block;
            }
            .nav-bar a {
                padding: 0.6rem 1rem;
                border-radius: 12px;
                width: 100%;
            }
            .search-section {
                padding: 1.2rem;
                flex-direction: column;
            }
            .search-section form {
                width: 100%;
            }
            .rating-area,
            .comment-area {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.6rem;
                justify-content: center;
            }
            .inline-links {
                padding: 1rem;
            }
            .site-footer {
                flex-direction: column;
                gap: 0.6rem;
                text-align: center;
            }
            .hero-img-wrap img {
                max-height: 220px;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none;
            }
            .nav-bar {
                display: flex !important;
            }
        }
        .highlight {
            background: #fef3c7;
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #b45309;
            color: #fff;
            padding: 0.15rem 0.9rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.6rem 0;
        }
        .stat-card {
            background: #f1ebe3;
            padding: 1.2rem;
            border-radius: 16px;
            text-align: center;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b45309;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #3d4f58;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e5d9cc;
        }
        th {
            background: #f1ebe3;
            font-weight: 600;
        }
        .faq-item {
            padding: 0.8rem 0;
            border-bottom: 1px solid #e5d9cc;
        }
        .faq-item strong {
            color: #b45309;
        }
        .tag {
            display: inline-block;
            background: #e5d9cc;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            margin: 0.2rem 0.3rem;
        }
