        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: #f8f6f2;
            color: #1e1e2a;
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            padding: 0 16px;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #9a2b1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 20px 28px 32px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        @media (min-width:768px) {
            .container {
                padding: 32px 48px 48px;
                margin-top: 24px;
            }
            body {
                padding: 0 32px;
            }
        }
        @media (min-width:1024px) {
            .container {
                padding: 40px 64px 56px;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #f0ebe4;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c44536, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
            text-transform: uppercase;
            word-break: break-word;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #6b5e55;
            color: #6b5e55;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
            text-transform: none;
        }
        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0ebe4;
        }
        .nav-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            background: #1e1e2a;
            border-radius: 4px;
            transition: 0.3s;
        }
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .main-nav {
            flex-basis: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s ease, padding 0.3s ease;
            padding-top: 0;
        }
        .main-nav.open {
            max-height: 600px;
            padding-top: 18px;
        }
        .main-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .main-nav ul li a {
            display: block;
            padding: 10px 16px;
            border-radius: 10px;
            font-weight: 500;
            color: #1e1e2a;
            background: #f8f6f2;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav ul li a:hover {
            background: #c44536;
            color: #fff;
            text-decoration: none;
        }
        @media (min-width:768px) {
            .nav-toggle {
                display: none;
            }
            .main-nav {
                flex-basis: auto;
                max-height: none !important;
                padding-top: 0 !important;
            }
            .main-nav ul {
                flex-direction: row;
                gap: 4px;
            }
            .main-nav ul li a {
                background: transparent;
                padding: 8px 14px;
            }
            .main-nav ul li a:hover {
                background: #f0ebe4;
                color: #c44536;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #6b5e55;
            padding: 14px 0 10px;
            border-bottom: 1px solid #f0ebe4;
            margin-bottom: 24px;
        }
        .breadcrumb a {
            color: #6b5e55;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb span.sep {
            color: #b8aaa0;
        }
        h1 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 12px;
            color: #1a1a2e;
            letter-spacing: -0.3px;
        }
        h2 {
            font-size: 1.7rem;
            font-weight: 700;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0ebe4;
            color: #1e1e2a;
        }
        h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: #2c2c3e;
        }
        h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #3d3d52;
        }
        p {
            margin-bottom: 18px;
            color: #2a2a3a;
        }
        .lead {
            font-size: 1.15rem;
            color: #3d3d52;
            font-weight: 500;
            border-left: 4px solid #c44536;
            padding-left: 20px;
            margin: 20px 0 28px;
        }
        strong,
        b {
            color: #1a1a2e;
        }
        .highlight-box {
            background: #fdf9f5;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 5px solid #c44536;
        }
        .emoji-big {
            font-size: 1.4em;
            display: inline-block;
            margin-right: 4px;
        }
        .feature-img-wrap {
            margin: 32px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .feature-img-wrap img {
            width: 100%;
            object-fit: cover;
            min-height: 200px;
            background: #e8e2da;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #6b5e55;
            padding: 10px 16px 12px;
            background: #f8f6f2;
            text-align: center;
        }
        .tips-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 32px;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .tips-table th {
            background: #c44536;
            color: #fff;
            font-weight: 600;
            padding: 12px 16px;
            text-align: left;
        }
        .tips-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #f0ebe4;
            background: #fdfaf7;
        }
        .tips-table tr:last-child td {
            border-bottom: none;
        }
        .tips-table td:first-child {
            font-weight: 600;
            color: #1e1e2a;
        }
        .search-section {
            background: #f8f6f2;
            border-radius: 20px;
            padding: 28px 24px 32px;
            margin: 40px 0 32px;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border: 2px solid #e0d6ce;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c44536;
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: #c44536;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #9a2b1f;
            transform: scale(1.02);
        }
        .rating-area {
            background: #fdf9f5;
            border-radius: 20px;
            padding: 24px 24px 28px;
            margin: 32px 0;
            border: 1px solid #ede6de;
        }
        .stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            color: #d6ccc4;
            transition: color 0.15s;
        }
        .stars i.active {
            color: #f5a623;
        }
        .stars i:hover,
        .stars i.hover {
            color: #f5a623;
        }
        .rating-score {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1e1e2a;
            margin-left: 12px;
        }
        .comment-section {
            margin: 32px 0 24px;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-box {
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: #f8f6f2;
            padding: 24px;
            border-radius: 20px;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0d6ce;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .comment-box textarea:focus {
            border-color: #c44536;
        }
        .comment-box input[type="text"] {
            padding: 12px 18px;
            border: 2px solid #e0d6ce;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-box input[type="text"]:focus {
            border-color: #c44536;
        }
        .comment-box button {
            align-self: flex-start;
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            background: #c44536;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-box button:hover {
            background: #9a2b1f;
        }
        .comment-list {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-item {
            background: #f8f6f2;
            padding: 16px 20px;
            border-radius: 16px;
            border-left: 4px solid #c44536;
        }
        .comment-item .author {
            font-weight: 600;
            color: #1e1e2a;
        }
        .comment-item .time {
            font-size: 0.8rem;
            color: #6b5e55;
            margin-left: 12px;
        }
        .comment-item .text {
            margin-top: 6px;
        }
        friend-link {
            display: block;
            margin: 32px 0 20px;
            padding: 20px 0 16px;
            border-top: 2px solid #f0ebe4;
            border-bottom: 2px solid #f0ebe4;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1rem;
            color: #6b5e55;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        friend-link .fl-list a {
            font-size: 0.95rem;
            color: #c44536;
        }
        friend-link .fl-list a:hover {
            color: #9a2b1f;
        }
        .site-footer {
            margin-top: 40px;
            padding-top: 24px;
            border-top: 2px solid #f0ebe4;
            font-size: 0.9rem;
            color: #6b5e55;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .site-footer .copyright {
            font-weight: 400;
        }
        .site-footer .update {
            background: #f0ebe4;
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
        }
        @media (max-width:480px) {
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .container {
                padding: 16px 16px 24px;
                border-radius: 20px;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .stars {
                font-size: 1.6rem;
            }
            .search-form button {
                flex: 1;
                justify-content: center;
            }
            .site-footer {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (min-width:768px) and (max-width:1023px) {
            .container {
                padding: 28px 36px 40px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .section-spacer {
            height: 8px;
        }
        .inline-link-list {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 4px 16px;
            background: #f8f6f2;
            padding: 12px 18px;
            border-radius: 14px;
            margin: 8px 0 18px;
            font-size: 0.9rem;
        }
        .inline-link-list a {
            font-weight: 500;
        }
        .blockquote {
            font-style: italic;
            background: #fdf9f5;
            padding: 20px 24px;
            border-radius: 16px;
            border-left: 5px solid #c44536;
            margin: 24px 0;
            color: #2c2c3e;
        }
        .blockquote .attribution {
            font-style: normal;
            font-weight: 600;
            margin-top: 8px;
            color: #6b5e55;
        }
        .text-muted {
            color: #6b5e55;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-1 {
            margin-bottom: 8px;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }
