        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #f8f5f0;
            color: #2c1810;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #7a2e1a;
            text-decoration: underline;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #b84a2c;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            font-weight: 700;
            color: #1a0f0a;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #d4a373;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #b84a2c;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #3e1f14;
        }
        h4 {
            font-size: 1.2rem;
            color: #5a2e1a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a0f0a 0%, #2c1810 50%, #3e1f14 100%);
            color: #f8f5f0;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0c8a0;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 0 #3e1f14;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: #d4a373;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            color: #f5dcc0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4a373;
            color: #d4a373;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.25s;
        }
        .nav-toggle:hover {
            background: #d4a373;
            color: #1a0f0a;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f0e0d0;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: #d4a373;
            color: #1a0f0a;
        }
        .breadcrumb {
            background: #ede7dd;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d4c8b8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #7a5a4a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a2e1a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #2c1810;
            font-weight: 600;
        }
        .hero-image-wrapper {
            margin: 2rem 0 1.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        .hero-image-wrapper img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .hero-caption {
            background: rgba(26, 15, 10, 0.7);
            color: #f8f5f0;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(4px);
        }
        .last-updated {
            display: inline-block;
            background: #ede7dd;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #5a3a2a;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        .content-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .content-section p:last-child {
            margin-bottom: 0;
        }
        .inline-link-highlight {
            background: #fef3e9;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .search-box {
            display: flex;
            gap: 0.4rem;
            max-width: 500px;
            margin: 1.5rem 0;
        }
        .search-box input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #d4c8b8;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
            background: #fff;
        }
        .search-box input:focus {
            border-color: #b84a2c;
        }
        .search-box button {
            background: #b84a2c;
            border: none;
            color: #fff;
            padding: 0.7rem 1.4rem;
            border-radius: 30px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-box button:hover {
            background: #7a2e1a;
        }
        .comment-form,
        .rating-form {
            background: #f8f5f0;
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1rem;
            border: 1px solid #e0d6c8;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #d4c8b8;
            border-radius: 8px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            background: #fff;
        }
        .comment-form textarea:focus {
            border-color: #b84a2c;
            outline: none;
        }
        .comment-form input[type="text"],
        .rating-form input[type="number"],
        .rating-form select {
            padding: 0.6rem 1rem;
            border: 2px solid #d4c8b8;
            border-radius: 8px;
            font-size: 0.95rem;
            width: 100%;
            max-width: 300px;
            background: #fff;
        }
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #b84a2c;
            outline: none;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            margin-bottom: 0.8rem;
        }
        .btn-submit {
            background: #b84a2c;
            color: #fff;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .btn-submit:hover {
            background: #7a2e1a;
            transform: scale(1.02);
        }
        .btn-submit i {
            margin-right: 0.4rem;
        }
        .star-rating-display {
            display: flex;
            gap: 0.2rem;
            color: #d4a373;
            font-size: 1.4rem;
        }
        .star-rating-display .star-empty {
            color: #d4c8b8;
        }
        .site-footer {
            background: #1a0f0a;
            color: #d4c8b8;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
            border-top: 4px solid #d4a373;
        }
        .footer-inner {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1 1 220px;
        }
        .footer-col h4 {
            color: #f0c8a0;
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            border: none;
            padding: 0;
        }
        .footer-col a {
            color: #c8b8a8;
            text-decoration: none;
            display: block;
            padding: 0.2rem 0;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: #f0c8a0;
        }
        .friend-link {
            display: block;
            padding: 0.2rem 0;
        }
        .friend-link a {
            color: #c8b8a8;
            text-decoration: none;
        }
        .friend-link a:hover {
            color: #f0c8a0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #3e2a1e;
            font-size: 0.85rem;
            color: #9a8a7a;
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-section {
                padding: 1.2rem 1rem;
            }
            .header-inner {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2c1810;
                padding: 0.6rem 0;
                border-radius: 0 0 12px 12px;
                gap: 0;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                border-radius: 0;
                border-bottom: 1px solid #3e2a1e;
            }
            .nav-menu a:last-child {
                border-bottom: none;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 0.2rem 0.4rem;
            }
            .search-box {
                flex-direction: column;
                max-width: 100%;
            }
            .search-box button {
                width: 100%;
                justify-content: center;
            }
            .form-row {
                flex-direction: column;
                align-items: stretch;
            }
            .form-row input,
            .form-row select {
                max-width: 100%;
            }
            .hero-caption {
                position: relative;
                background: #2c1810;
                font-size: 0.8rem;
            }
            .footer-inner {
                flex-direction: column;
                gap: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .content-section {
                padding: 1rem 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.1rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .text-muted {
            color: #7a6a5a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .badge {
            display: inline-block;
            background: #d4a373;
            color: #1a0f0a;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .blockquote {
            background: #fef3e9;
            border-left: 6px solid #b84a2c;
            padding: 1.2rem 1.6rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3e2a1e;
        }
        .blockquote cite {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #7a2e1a;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.9rem;
        }
        .data-table th {
            background: #2c1810;
            color: #f0e0d0;
            padding: 0.6rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.5rem 1rem;
            border-bottom: 1px solid #e0d6c8;
        }
        .data-table tr:nth-child(even) td {
            background: #f8f5f0;
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
        .skeleton {
            background: #ede7dd;
            border-radius: 6px;
            animation: shimmer 1.6s infinite;
        }
        @keyframes shimmer {
            0% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0.5;
            }
        }
        .emoji-lg {
            font-size: 1.6rem;
            line-height: 1;
        }
