        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #f8f6f2;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b76e4b;
            text-decoration: underline;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #8b4d2e;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.15;
            color: #1f1b16;
            margin: 1.8rem 0 0.8rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2d2a24;
            margin: 2.2rem 0 1rem;
            border-bottom: 3px solid #e8d9cc;
            padding-bottom: 0.35rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3d352e;
            margin: 1.6rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4d4239;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #4d4239;
            line-height: 1.8;
        }
        .small-text {
            font-size: 0.9rem;
            color: #6b5f53;
        }
        .site-header {
            background: #ffffff;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0.6rem 0;
            border-bottom: 1px solid #ede8e1;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #2d2a24;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            color: #b76e4b;
        }
        .my-logo i {
            color: #b76e4b;
            font-size: 1.6rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            align-items: center;
        }
        .nav-list a {
            text-decoration: none;
            color: #2d2a24;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
        }
        .nav-list a:hover {
            color: #b76e4b;
            border-bottom-color: #b76e4b;
        }
        .nav-list .active a {
            border-bottom-color: #b76e4b;
            color: #b76e4b;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px 4px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #2d2a24;
            border-radius: 3px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            background: #f0ece6;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            color: #6b5f53;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: #b76e4b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5f53;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #b76e4b;
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #f5efe8 0%, #e8d9cc 100%);
            padding: 3rem 0 2.5rem;
            border-radius: 0 0 40px 40px;
            margin-bottom: 2.5rem;
        }
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }
        .hero-text .badge {
            display: inline-block;
            background: #b76e4b;
            color: #fff;
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 0.8rem;
        }
        .hero-text h1 {
            margin-top: 0.2rem;
        }
        .hero-text .meta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin: 1rem 0 1.4rem;
            font-size: 0.95rem;
            color: #5a4e41;
        }
        .hero-text .meta i {
            margin-right: 0.4rem;
            color: #b76e4b;
        }
        .hero-image {
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            background: #ddd6cc;
            overflow: hidden;
        }
        .hero-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }
        .search-section {
            background: #fff;
            padding: 1.8rem 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.9rem 1.4rem;
            border: 2px solid #e0d6cb;
            border-radius: 50px;
            font-size: 1rem;
            background: #faf8f5;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #b76e4b;
        }
        .search-form button {
            background: #b76e4b;
            color: #fff;
            border: none;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            background: #8b4d2e;
            transform: scale(1.02);
        }
        .content-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        .main-content {
            background: #fff;
            padding: 2.2rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            background: #fff;
            padding: 2rem 1.8rem;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h4 {
            font-size: 1.1rem;
            border-bottom: 2px solid #e8d9cc;
            padding-bottom: 0.4rem;
            margin-bottom: 0.8rem;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ece6;
        }
        .link-list a {
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .link-list a i {
            font-size: 0.8rem;
            color: #b76e4b;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #f5efe8;
            text-align: left;
            padding: 0.8rem 1rem;
            font-weight: 600;
            color: #2d2a24;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #ede8e1;
        }
        .data-table tr:hover td {
            background: #faf8f5;
        }
        .interaction-panel {
            background: #faf8f5;
            padding: 1.8rem 2rem;
            border-radius: 16px;
            margin: 2.5rem 0;
            border: 1px solid #ede8e1;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #ddd6cc;
            cursor: pointer;
            margin: 0.6rem 0 1rem;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #f5b342;
            transform: scale(1.15);
        }
        .rating-stars i.selected {
            color: #f5b342;
        }
        .rating-form button,
        .comment-form button {
            background: #b76e4b;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 0.95rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #8b4d2e;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #e0d6cb;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #b76e4b;
        }
        .comment-form .field-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 0.8rem 0;
        }
        .comment-form .field-group input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #e0d6cb;
            border-radius: 50px;
            font-size: 0.95rem;
            background: #fff;
        }
        .comment-form .field-group input:focus {
            outline: none;
            border-color: #b76e4b;
        }
        .site-footer {
            background: #1f1b16;
            color: #d6cdc2;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
            border-radius: 40px 40px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f0ece6;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-grid a {
            color: #bFA89A;
            text-decoration: none;
        }
        .footer-grid a:hover {
            color: #e8d9cc;
            text-decoration: underline;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid li {
            padding: 0.25rem 0;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
            border-top: 1px solid #3d352e;
            border-bottom: 1px solid #3d352e;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #bFA89A;
            text-decoration: none;
            margin: 0 0.5rem;
        }
        friend-link a:hover {
            color: #e8d9cc;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            font-size: 0.85rem;
            color: #9a8e80;
            border-top: 1px solid #3d352e;
        }
        .copyright strong {
            color: #d6cdc2;
        }
        @media (max-width: 900px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            .hero-image img {
                height: 220px;
            }
            .content-layout {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .main-content {
                padding: 1.5rem 1.2rem;
            }
        }
        @media (max-width: 680px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
                background: #fff;
                border-top: 1px solid #ede8e1;
                margin-top: 0.6rem;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .interaction-panel {
                padding: 1.2rem;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .lead {
                font-size: 1.1rem;
            }
        }
        .highlight-box {
            background: #f5efe8;
            border-left: 5px solid #b76e4b;
            padding: 1.2rem 1.6rem;
            border-radius: 8px;
            margin: 1.6rem 0;
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .tag {
            display: inline-block;
            background: #ede8e1;
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #4d4239;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6b5f53;
            font-size: 0.9rem;
            margin: 1rem 0;
        }
        .last-updated i {
            color: #b76e4b;
        }
        .btn-outline {
            display: inline-block;
            padding: 0.5rem 1.4rem;
            border: 2px solid #b76e4b;
            border-radius: 50px;
            color: #b76e4b;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s, color 0.3s;
        }
        .btn-outline:hover {
            background: #b76e4b;
            color: #fff;
        }
        .inline-icon {
            margin-right: 0.3rem;
            color: #b76e4b;
        }
        .schema-hidden {
            display: none;
        }
