        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f6f0;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b45309;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e0e;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            line-height: 1.25;
            color: #2c1810;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
            border-bottom: 4px solid #d97706;
            padding-bottom: 0.25em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #d97706;
            padding-left: 0.6em;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 500;
            color: #4a2c1a;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8em 0 1.4em 1.8em;
        }
        li {
            margin-bottom: 0.4em;
        }
        blockquote {
            border-left: 4px solid #d97706;
            background: #fef3e2;
            padding: 0.8em 1.2em;
            margin: 1.2em 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: #3d2b1b;
        }
        strong {
            color: #2c1810;
            font-weight: 700;
        }
        hr {
            border: none;
            border-top: 2px dashed #d4a373;
            margin: 2.4em 0;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 60%, #6b3f2a 100%);
            color: #fef3e2;
            padding: 0.8rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-family: 'Georgia', serif;
        }
        .my-logo i {
            -webkit-text-fill-color: #fbbf24;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #fef3e2;
            text-decoration: none;
            padding: 0.45rem 0.9rem;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(251, 191, 36, 0.2);
            transform: translateY(-1px);
            text-decoration: none;
            outline: none;
        }
        .main-nav a i {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fef3e2;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #fef3e2;
            padding: 0.6rem 0;
            font-size: 0.92rem;
            border-bottom: 1px solid #e6d5c0;
        }
        .breadcrumb-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb-inner a {
            color: #7a2e0e;
            text-decoration: none;
        }
        .breadcrumb-inner a:hover {
            text-decoration: underline;
        }
        .breadcrumb-inner span {
            color: #5a3a2a;
        }
        .breadcrumb-inner .sep {
            color: #b45309;
            font-weight: 300;
        }
        .hero-wrap {
            margin: 2rem 0 1.8rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            background: #2c1810;
        }
        .hero-wrap img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            display: block;
        }
        .search-section {
            background: #fffbf5;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 1.8rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #e6d5c0;
        }
        .search-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.6rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d4a373;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #b45309;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #7a2e0e;
            transform: translateY(-2px);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.4rem 0;
        }
        .feedback-card {
            background: #fffbf5;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            border: 1px solid #e6d5c0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"],
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #d4a373;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
            outline: none;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #b45309;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.7rem 1.6rem;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .feedback-card button:hover {
            background: #7a2e0e;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4a373;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s, transform 0.1s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
            transform: scale(1.1);
        }
        .site-footer {
            background: linear-gradient(135deg, #2c1810, #4a2c1a);
            color: #fef3e2;
            padding: 2.4rem 0 1.2rem;
            margin-top: 3rem;
            border-top: 4px solid #d97706;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #fbbf24;
            margin-top: 0;
            font-weight: 600;
            border: none;
            padding: 0;
        }
        .footer-inner a {
            color: #fbd38d;
            text-decoration: none;
        }
        .footer-inner a:hover {
            color: #fbbf24;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin-right: 0.8rem;
            margin-bottom: 0.4rem;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            font-size: 0.9rem;
            text-align: center;
            opacity: 0.85;
        }
        .copyright i {
            margin: 0 0.2rem;
        }
        @media (max-width: 820px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner>:first-child {
                grid-column: 1 / -1;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 680px) {
            .hamburger {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(44, 24, 16, 0.98);
                padding: 0.8rem 0.6rem;
                border-radius: 12px;
                margin-top: 0.4rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .feedback-card {
                padding: 1.2rem 1.2rem;
            }
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.4em;
                border-left-width: 4px;
            }
            .hero-wrap {
                margin: 1.2rem 0;
            }
        }
        @media (max-width: 420px) {
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                align-self: stretch;
                justify-content: center;
            }
            .feedback-card button {
                align-self: stretch;
                justify-content: center;
            }
            .breadcrumb-inner {
                font-size: 0.82rem;
            }
        }
        .highlight-box {
            background: #fef3e2;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            margin: 1.4em 0;
            border-left: 5px solid #d97706;
        }
        .two-col-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1.6rem;
            margin: 0.6em 0 1.2em;
        }
        @media (max-width: 500px) {
            .two-col-list {
                grid-template-columns: 1fr;
            }
        }
        .tag {
            display: inline-block;
            background: #e6d5c0;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.82rem;
            color: #2c1810;
            font-weight: 500;
        }
        .last-updated {
            font-size: 0.92rem;
            color: #6b5a4a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin: 0.4em 0 1.2em;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2em 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fffbf5;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e6d5c0;
            text-align: left;
        }
        th {
            background: #2c1810;
            color: #fef3e2;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .icon-inline {
            margin-right: 0.3rem;
            color: #b45309;
        }
