        *,
        *::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.8;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.75rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 0;
            color: #1a1a26;
        }
        h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.75rem;
            margin-top: 2.8rem;
            margin-bottom: 0.9rem;
            border-left: 5px solid #b8860b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.3rem;
            margin-top: 2rem;
            margin-bottom: 0.7rem;
            color: #2c2c3e;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #3d3d52;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong {
            color: #1a1a26;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1e1e2a 0%, #2a2a3e 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f5d78e;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f5d78e, #d4a84b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.9rem;
            -webkit-text-fill-color: #f5d78e;
            color: #f5d78e;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f5d78e;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8e4dc;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(245, 215, 142, 0.15);
            color: #f5d78e;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.35rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #ece8e0;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb ul {
            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: #8a7e6b;
            font-size: 1.1rem;
        }
        .breadcrumb a {
            color: #6b5d4a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #3d3529;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1e1e2a 0%, #2d2d42 100%);
            color: #f0ede6;
            padding: 3rem 0 2.8rem;
            margin-bottom: 2rem;
            border-bottom: 4px solid #b8860b;
        }
        .hero h1 {
            color: #f5d78e;
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        .hero .subhead {
            font-size: 1.15rem;
            color: #ccc5b8;
            max-width: 780px;
        }
        .hero .meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            margin-top: 1.2rem;
            font-size: 0.95rem;
            color: #b8ae9c;
        }
        .hero .meta-row i {
            margin-right: 0.4rem;
            color: #f5d78e;
        }
        .search-bar {
            background: #fff;
            padding: 1.8rem 1.5rem;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
            border: 1px solid #e5ddd2;
        }
        .search-bar input[type="text"] {
            flex: 1 1 260px;
            padding: 0.85rem 1.2rem;
            border: 2px solid #ddd6cc;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #faf8f4;
        }
        .search-bar input[type="text"]:focus {
            border-color: #b8860b;
        }
        .search-bar button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.85rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-bar button:hover {
            background: #9e7209;
            transform: scale(1.02);
        }
        .content-area {
            background: #fff;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
            margin-bottom: 2.5rem;
            border: 1px solid #ebe5db;
        }
        .content-area img.featured-img {
            border-radius: 16px;
            margin: 1.5rem 0 2rem;
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            background: #e8e2d6;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
        }
        .content-area .highlight-box {
            background: #f9f6ef;
            border-left: 6px solid #b8860b;
            padding: 1.4rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .content-area .highlight-box strong {
            color: #b8860b;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            font-size: 0.95rem;
            background: #fcfaf7;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #2a2a3e;
            color: #f5d78e;
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #e8e2d6;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f5f0e8;
        }
        .comment-section,
        .score-section {
            background: #fcfaf7;
            border-radius: 16px;
            padding: 2rem 1.8rem;
            margin-top: 2.5rem;
            border: 1px solid #e8e2d6;
        }
        .comment-section h3,
        .score-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-section form,
        .score-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-section form input,
        .comment-section form textarea,
        .score-section form input,
        .score-section form select {
            flex: 1 1 200px;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6cc;
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-section form textarea {
            flex-basis: 100%;
            min-height: 80px;
            resize: vertical;
        }
        .comment-section form input:focus,
        .comment-section form textarea:focus,
        .score-section form input:focus,
        .score-section form select:focus {
            border-color: #b8860b;
        }
        .comment-section form button,
        .score-section form button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-section form button:hover,
        .score-section form button:hover {
            background: #9e7209;
        }
        .link-list-module {
            background: #f9f6ef;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            margin: 2rem 0;
            border: 1px solid #e5ddd2;
        }
        .link-list-module h4 {
            margin-top: 0;
            color: #b8860b;
        }
        .link-list-module ul {
            columns: 2 220px;
            list-style: none;
            padding: 0;
            margin: 0.8rem 0 0;
        }
        .link-list-module li {
            padding: 0.3rem 0;
            break-inside: avoid;
        }
        .link-list-module a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .link-list-module a i {
            font-size: 0.7rem;
            color: #b8860b;
        }
        friend-link {
            display: block;
            background: #2a2a3e;
            color: #ddd6cc;
            padding: 1.8rem 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0 0.5rem;
            text-align: center;
        }
        friend-link a {
            color: #f5d78e;
            font-weight: 500;
            padding: 0.2rem 0.6rem;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .site-footer {
            background: #1a1a26;
            color: #b8ae9c;
            padding: 2.5rem 0 2rem;
            margin-top: 3rem;
            border-top: 4px solid #b8860b;
            font-size: 0.92rem;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.8rem;
        }
        .site-footer .copyright {
            width: 100%;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2f2f42;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #8a7e6b;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #1e1e2a;
                padding: 0.8rem 0.5rem;
                border-radius: 0 0 12px 12px;
                margin-top: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 6px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .subhead {
                font-size: 1rem;
            }
            .content-area {
                padding: 1.5rem 1rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.6rem 0.8rem;
                font-size: 0.85rem;
            }
            .link-list-module ul {
                columns: 1;
            }
            .search-bar {
                padding: 1.2rem 1rem;
            }
            .search-bar input[type="text"] {
                flex-basis: 100%;
            }
            .search-bar button {
                width: 100%;
                justify-content: center;
            }
            .comment-section form input,
            .score-section form input,
            .score-section form select {
                flex-basis: 100%;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 15px;
            }
            .container {
                padding: 0 0.8rem;
            }
            .hero {
                padding: 2rem 0;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.45rem 0.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-gold {
            color: #b8860b;
        }
        .flex-icon-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0.6rem 0 1.2rem;
        }
        .flex-icon-list li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .flex-icon-list i {
            color: #b8860b;
            width: 1.2rem;
        }
        .updated-badge {
            display: inline-block;
            background: #b8860b10;
            color: #b8860b;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid #b8860b30;
        }
