        *,
        *::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: #fcf7f0;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8a2e1f;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #1f1b16;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 3px solid #e8c9b0;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #f5e1d2, #ecd5c1);
            border-bottom: 4px solid #d4a88c;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #4d2e1b;
            letter-spacing: -0.5px;
            text-shadow: 1px 1px 0 rgba(255, 215, 175, 0.5);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #c44536;
            font-size: 1.7rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #3a2314;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #3a2a1e;
            background: rgba(255, 245, 235, 0.6);
            transition: background 0.2s, transform 0.15s;
        }
        .nav-list li a:hover {
            background: #d4a88c;
            color: #1f140e;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .nav-list li a i {
            margin-right: 0.3rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #4d2e1b;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        .breadcrumb {
            background: #f3ede7;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0d3c8;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #7a5a48;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb span {
            color: #9a8a7a;
        }
        .breadcrumb .sep {
            margin: 0 0.3rem;
            color: #b8a698;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .featured-figure {
            margin: 1.5rem 0 2rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
            background: #e8d9cc;
        }
        .featured-figure img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.8rem 1.2rem;
            font-style: italic;
            color: #5a4a3a;
            background: #f5ede6;
            font-size: 0.9rem;
        }
        .search-section {
            background: #f3ede7;
            border-radius: 18px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-form label {
            font-weight: 600;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #d4c0b0;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffcf8;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c44536;
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #a33528;
            transform: translateY(-2px);
        }
        .rating-section {
            background: #fff7f0;
            border: 2px solid #e8d5c4;
            border-radius: 18px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #e0b090;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5a623;
            transform: scale(1.15);
        }
        .rating-form button {
            margin-top: 0.8rem;
            padding: 0.6rem 2rem;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #a33528;
        }
        .comments-section {
            background: #faf5ef;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #e6d7ca;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #d4c0b0;
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            background: #fffcf8;
            resize: vertical;
            min-height: 110px;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #c44536;
        }
        .comment-form .comment-inputs {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .comment-form .comment-inputs input {
            flex: 1 1 200px;
            padding: 0.7rem 1rem;
            border: 2px solid #d4c0b0;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fffcf8;
            outline: none;
        }
        .comment-form .comment-inputs input:focus {
            border-color: #c44536;
        }
        .comment-form button {
            padding: 0.7rem 2rem;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 0.6rem;
        }
        .comment-form button:hover {
            background: #a33528;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fffcf8;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e6d7ca;
        }
        th {
            background: #e8d5c4;
            color: #2d221a;
            font-weight: 700;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f8f0e8;
        }
        .site-footer {
            background: #2d221a;
            color: #ddd6ce;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2.5rem;
        }
        .site-footer a {
            color: #e8c9b0;
        }
        .site-footer a:hover {
            color: #f5dcc8;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f5e1d2;
            margin-top: 0;
            font-size: 1.2rem;
        }
        .friend-link {
            display: block;
            background: #3d322a;
            padding: 1.2rem 1.5rem;
            border-radius: 14px;
            margin-top: 0.6rem;
        }
        .friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
            padding: 0.3rem 0;
        }
        .friend-link a::before {
            content: "🔗 ";
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #4d3d32;
            font-size: 0.9rem;
            color: #b8a698;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-direction: row;
            }
            .nav-wrapper .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #f5e1d2;
                padding: 1rem 0.8rem;
                border-radius: 0 0 16px 16px;
                gap: 0.2rem;
                margin-top: 0.6rem;
            }
            .nav-wrapper .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .search-section,
            .rating-section,
            .comments-section {
                padding: 1.2rem 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        .highlight {
            background: #f5e8d8;
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #c44536;
            color: #fff;
            font-size: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .emoji-big {
            font-size: 1.3rem;
        }
        .spacer {
            height: 0.8rem;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.2rem 0;
        }
        @media (max-width: 640px) {
            .two-col {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #fffcf8;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #e6d7ca;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
        }
        .card h4 {
            margin-top: 0;
        }
        .tip-box {
            background: #e8f0e4;
            border-left: 5px solid #4a7c59;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .tip-box i {
            color: #4a7c59;
            margin-right: 0.5rem;
        }
        .pro-tip {
            background: #f0ebe4;
            border-left: 5px solid #c44536;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .pro-tip i {
            color: #c44536;
            margin-right: 0.5rem;
        }
        .last-update {
            font-size: 0.85rem;
            color: #8a7a6a;
            text-align: right;
            margin-top: 0.5rem;
        }
