        *,
        *::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: #f5f3ee;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b5432e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #7f2e1f;
            text-decoration: underline;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1a1f24;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-bottom: 3px solid #d94f30;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.5rem;
            margin-bottom: 0.3rem;
            color: #3d4f5e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e2a2f 0%, #2c3e50 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f7d44a;
            text-shadow: 2px 2px 0 #b5432e;
            transition: transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f7d44a;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #f7d44a;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7d44a;
            color: #f7d44a;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(247, 212, 74, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8e1d5;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #f7d44a;
            color: #1e2a2f;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #b5432e;
            color: #fff;
        }
        .breadcrumb-wrap {
            background: #e8e1d5;
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            margin: 0;
            padding: 0;
        }
        .breadcrumb-wrap li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #7f8c8d;
            font-weight: 700;
        }
        .breadcrumb-wrap a {
            color: #b5432e;
        }
        .breadcrumb-wrap a:hover {
            text-decoration: underline;
        }
        .breadcrumb-wrap .current {
            color: #2c3e50;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #f7d44a 0%, #f0b82e 100%);
            padding: 2.8rem 0 2.2rem;
            text-align: center;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3rem;
            color: #1a1f24;
            text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
            margin-bottom: 0.3rem;
        }
        .hero p {
            font-size: 1.2rem;
            color: #2c3e50;
            max-width: 780px;
            margin: 0.5rem auto 0;
            font-weight: 500;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 1rem;
            background: #1e2a2f;
            color: #f7d44a;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
        }
        .search-section h2 {
            margin-top: 0;
            border-bottom: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d5cfc4;
            border-radius: 40px;
            font-size: 1rem;
            background: #faf8f5;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #b5432e;
            box-shadow: 0 0 0 3px rgba(181, 67, 46, 0.15);
        }
        .search-form button {
            background: #b5432e;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #7f2e1f;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .content-main {
            background: #fff;
            border-radius: 16px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
        }
        .content-main .featured-img {
            border-radius: 12px;
            margin: 1.8rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 2px solid #f0b82e;
            padding-bottom: 0.4rem;
        }
        .sidebar ul {
            list-style: none;
            margin: 0.8rem 0 0;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 0.5rem;
        }
        .sidebar a {
            font-weight: 500;
        }
        .rate-comment-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .rate-box,
        .comment-box {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
        }
        .rate-box h3,
        .comment-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.3rem;
            justify-content: flex-end;
            font-size: 2rem;
            margin: 0.5rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ccc;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7b731;
        }
        .rate-box form,
        .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .rate-box form input[type="text"],
        .rate-box form input[type="email"],
        .comment-box form input[type="text"],
        .comment-box form input[type="email"],
        .comment-box form textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #d5cfc4;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #faf8f5;
            transition: border 0.2s;
            width: 100%;
        }
        .rate-box form input:focus,
        .comment-box form input:focus,
        .comment-box form textarea:focus {
            outline: none;
            border-color: #b5432e;
        }
        .comment-box form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rate-box form button,
        .comment-box form button {
            background: #b5432e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .rate-box form button:hover,
        .comment-box form button:hover {
            background: #7f2e1f;
        }
        friend-link {
            display: block;
            background: #1e2a2f;
            color: #e8e1d5;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            margin: 2.5rem 0 1rem;
        }
        friend-link h3 {
            color: #f7d44a;
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 2px solid #f7d44a;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        friend-link ul {
            list-style: none;
            margin: 1rem 0 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        friend-link li {
            margin: 0;
        }
        friend-link a {
            color: #f0b82e;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #f7d44a;
            text-decoration: underline;
        }
        .site-footer {
            background: #1a1f24;
            color: #b0b8be;
            padding: 1.8rem 0;
            text-align: center;
            font-size: 0.9rem;
            margin-top: 2rem;
            border-top: 4px solid #b5432e;
        }
        .site-footer p {
            margin: 0.3rem 0;
        }
        .site-footer a {
            color: #f7d44a;
        }
        .site-footer a:hover {
            color: #f0b82e;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .rate-comment-wrap {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .content-main {
                padding: 1.5rem 1.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e2a2f;
                padding: 0.8rem 0.5rem;
                border-radius: 12px;
                gap: 0.2rem;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .rate-box,
            .comment-box {
                padding: 1.2rem 1.2rem;
            }
            friend-link {
                padding: 1.2rem 1.2rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.4rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .content-main {
                padding: 1rem 0.8rem;
            }
            .container {
                padding: 0 12px;
            }
        }
        .highlight {
            background: #fdf3e0;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #d94f30;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        th,
        td {
            padding: 0.6rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background: #1e2a2f;
            color: #f7d44a;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f6f2;
        }
        .tip-card {
            background: #f0f4f8;
            border-left: 5px solid #b5432e;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .tip-card strong {
            color: #b5432e;
        }
