        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f8f6f2;
            color: #1e1e2a;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #922b21;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a1a2e;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.7rem;
            border-bottom: 3px solid #e6b800;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.1rem;
            color: #34495e;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f1c40f, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f1c40f;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.3rem 1rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: #f0e6d3;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.25s, color 0.25s;
            font-size: 0.95rem;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: rgba(241, 196, 15, 0.18);
            color: #f1c40f;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f1c40f;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:focus {
            outline: 2px solid #f1c40f;
            outline-offset: 2px;
            border-radius: 4px;
        }
        .breadcrumb {
            background: #ece8e0;
            padding: 0.5rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d5cec0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a7f6e;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #8a4f2b;
        }
        .breadcrumb .current {
            color: #4a3f32;
            font-weight: 600;
        }
        .search-section {
            background: #fff8ec;
            padding: 1.8rem 0;
            border-bottom: 1px solid #e0d6c4;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 0.7rem 1rem;
            border: 2px solid #d5c8b0;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c0392b;
            outline: none;
        }
        .search-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #922b21;
            transform: scale(1.02);
        }
        .hero-img-wrap {
            margin: 2rem 0 1.2rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #e9e0d2;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .content-area {
            padding: 2rem 0 3rem;
        }
        .content-article {
            background: #fff;
            padding: 2rem 2.2rem;
            border-radius: 24px;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.05);
        }
        .content-article p,
        .content-article li {
            font-size: 1.05rem;
            color: #2d2d3a;
        }
        .content-article .highlight-box {
            background: #fcf6e8;
            border-left: 5px solid #e6b800;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.4rem 0;
        }
        .content-article .stat-badge {
            display: inline-block;
            background: #1a1a2e;
            color: #f1c40f;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .content-article .emoji-lg {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        .content-article .btn-link {
            display: inline-block;
            background: #c0392b;
            color: #fff;
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            margin: 0.6rem 0;
            transition: background 0.3s, transform 0.15s;
        }
        .content-article .btn-link:hover {
            background: #922b21;
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .rating-section {
            background: #f5efe6;
            padding: 2rem 0;
            border-radius: 20px;
            margin: 2rem 0 1.2rem;
        }
        .rating-inner {
            text-align: center;
        }
        .stars {
            font-size: 2.4rem;
            color: #e6b800;
            letter-spacing: 6px;
            cursor: pointer;
            display: inline-flex;
            gap: 0.2rem;
        }
        .stars i {
            transition: transform 0.2s, color 0.2s;
        }
        .stars i:hover {
            transform: scale(1.25);
            color: #f39c12;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            max-width: 400px;
            margin: 1rem auto 0;
        }
        .rating-form input[type="hidden"] {
            display: none;
        }
        .rating-form button {
            background: #1a1a2e;
            color: #f1c40f;
            border: none;
            padding: 0.5rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #2c3e50;
        }
        .comments-section {
            margin: 2.4rem 0 1.2rem;
            padding: 1.8rem 0;
            border-top: 2px solid #e0d6c4;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 680px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #d5c8b0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fefcf9;
            transition: border-color 0.3s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: #1a1a2e;
            color: #f1c40f;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1rem;
        }
        .comment-form button:hover {
            background: #2c3e50;
        }
        friend-link {
            display: block;
            padding: 1.6rem 0;
            border-top: 2px solid #e0d6c4;
            border-bottom: 2px solid #e0d6c4;
            margin: 1.4rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            color: #8a4f2b;
            font-weight: 500;
            border-bottom: 1px dotted transparent;
            transition: border-color 0.25s;
        }
        friend-link a:hover {
            border-bottom-color: #8a4f2b;
            text-decoration: none;
        }
        .site-footer {
            background: #1a1a2e;
            color: #ddd;
            padding: 2rem 0 1.2rem;
            font-size: 0.95rem;
        }
        .site-footer .copyright {
            text-align: center;
            border-top: 1px solid #3a3a5a;
            padding-top: 1.2rem;
            margin-top: 0.8rem;
            color: #b0a8a0;
        }
        .site-footer a {
            color: #f1c40f;
        }
        .site-footer a:hover {
            color: #e67e22;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f1a2e;
                padding: 0.8rem 1.2rem;
                border-radius: 0 0 16px 16px;
                gap: 0.3rem;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .content-article {
                padding: 1.4rem 1rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
            .stars {
                font-size: 2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .content-article p,
            .content-article li {
                font-size: 0.98rem;
            }
            .rating-section {
                padding: 1.2rem 0.6rem;
            }
            .comment-form button {
                width: 100%;
                text-align: center;
            }
            friend-link a {
                display: block;
                margin: 0.4rem 0;
            }
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .mt-2 {
            margin-top: 1.6rem;
        }
        .text-center {
            text-align: center;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .gap-1 {
            gap: 0.6rem;
        }
        .last-updated {
            color: #6a5f4e;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin: 0.4rem 0 1.2rem;
            border-bottom: 1px dashed #d5cec0;
            padding-bottom: 0.6rem;
        }
