        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 1.0625rem;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: #f0c75e;
            text-decoration: none;
            transition: color 0.2s ease, opacity 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdf8c;
            text-decoration: underline;
            outline: none;
        }
        a:focus-visible {
            outline: 2px solid #f0c75e;
            outline-offset: 4px;
            border-radius: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: #fff;
            margin-top: 0;
        }
        h1 {
            font-size: clamp(2.2rem, 6vw, 3.8rem);
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, #f0c75e, #d9a84a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: clamp(1.6rem, 4vw, 2.6rem);
            margin: 2.8rem 0 1rem 0;
            border-bottom: 2px solid rgba(240, 199, 94, 0.25);
            padding-bottom: 0.5rem;
            color: #f0d28c;
        }
        h3 {
            font-size: clamp(1.25rem, 2.5vw, 1.75rem);
            margin: 2rem 0 0.75rem 0;
            color: #e8d5a8;
        }
        h4 {
            font-size: clamp(1.05rem, 1.8vw, 1.3rem);
            margin: 1.5rem 0 0.5rem 0;
            color: #dccaa0;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d5d0c8;
        }
        strong,
        b {
            color: #f5eedc;
            font-weight: 600;
        }
        small,
        .text-muted {
            color: #9a958c;
            font-size: 0.9rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #141a24;
            border-bottom: 1px solid #2a3140;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background: rgba(20, 26, 36, 0.92);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f0c75e;
            transition: opacity 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #f0c75e;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8e6e3;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-toggle:focus-visible {
            outline: 2px solid #f0c75e;
            outline-offset: 4px;
        }
        .primary-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #c8c4bc;
            padding: 0.4rem 0.9rem;
            border-radius: 24px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            background: rgba(240, 199, 94, 0.12);
            color: #f0c75e;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.75rem 0 0.25rem 0;
            font-size: 0.85rem;
            color: #8a857c;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a554c;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b0aba0;
        }
        .breadcrumb a:hover {
            color: #f0c75e;
        }
        .breadcrumb .current {
            color: #e8e6e3;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0 2rem 0;
            max-width: 580px;
            background: #1e2532;
            border-radius: 60px;
            padding: 0.3rem 0.3rem 0.3rem 1.2rem;
            border: 1px solid #2f384a;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .search-form:focus-within {
            border-color: #f0c75e;
            box-shadow: 0 0 0 3px rgba(240, 199, 94, 0.15);
        }
        .search-form input[type="text"] {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.7rem 0;
            font-size: 1rem;
            color: #e8e6e3;
            outline: none;
            min-width: 0;
        }
        .search-form input[type="text"]::placeholder {
            color: #7a756c;
        }
        .search-form button {
            background: #f0c75e;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #0b0e14;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        .search-form button:hover {
            background: #ffdf8c;
            transform: scale(1.02);
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .section-card {
            background: #161d29;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid #242d3d;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .section-card:hover {
            border-color: #3a455a;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        }
        .featured-image-wrapper {
            margin: 1.8rem 0 2.2rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a212f;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .featured-image-wrapper img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-image-wrapper:hover img {
            transform: scale(1.01);
        }
        .rating-area,
        .comment-area {
            margin-top: 2rem;
        }
        .rating-area h3,
        .comment-area h3 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: #f0d28c;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #4a4550;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f0c75e;
        }
        .rating-form button,
        .comment-form button {
            background: #f0c75e;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #0b0e14;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 0.75rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #ffdf8c;
        }
        .comment-form textarea {
            width: 100%;
            background: #1e2532;
            border: 1px solid #2f384a;
            border-radius: 12px;
            padding: 0.9rem 1.2rem;
            font-size: 1rem;
            color: #e8e6e3;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #f0c75e;
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            max-width: 360px;
            background: #1e2532;
            border: 1px solid #2f384a;
            border-radius: 40px;
            padding: 0.7rem 1.2rem;
            font-size: 1rem;
            color: #e8e6e3;
            margin-bottom: 0.6rem;
            transition: border-color 0.25s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #f0c75e;
            outline: none;
        }
        .patch-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .patch-table th {
            background: #1e2532;
            text-align: left;
            padding: 0.75rem 1rem;
            font-weight: 600;
            color: #f0d28c;
            border-bottom: 2px solid #2f384a;
        }
        .patch-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #242d3d;
            color: #d5d0c8;
        }
        .patch-table tr:hover td {
            background: rgba(240, 199, 94, 0.04);
        }
        .tag {
            display: inline-block;
            background: #1e2532;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #b0aba0;
            border: 1px solid #2f384a;
            margin-right: 0.3rem;
            margin-bottom: 0.3rem;
        }
        .tag-hot {
            background: #3a2a1a;
            color: #f0c75e;
            border-color: #5a4a2a;
        }
        friend-link {
            display: block;
            padding: 1.25rem 0 0.5rem 0;
            font-size: 0.95rem;
            color: #b0aba0;
        }
        friend-link a {
            color: #c8c4bc;
            margin: 0 0.5rem 0 0;
        }
        friend-link a:hover {
            color: #f0c75e;
        }
        .site-footer {
            background: #0f141e;
            border-top: 1px solid #242d3d;
            padding: 2.5rem 0 1.5rem 0;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .footer-copyright {
            font-size: 0.85rem;
            color: #6a655c;
            text-align: center;
        }
        @media (max-width: 820px) {
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141a24;
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                border: 1px solid #2a3140;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 8px;
            }
            .nav-toggle {
                display: block;
            }
            .header-inner {
                align-items: center;
            }
            .section-card {
                padding: 1.25rem 1rem;
            }
            .patch-table {
                font-size: 0.82rem;
            }
            .patch-table th,
            .patch-table td {
                padding: 0.5rem 0.6rem;
            }
            .search-form {
                flex-wrap: wrap;
                border-radius: 24px;
                padding: 0.3rem;
            }
            .search-form input[type="text"] {
                padding: 0.5rem 0.8rem;
                width: 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
                padding: 0.6rem 1rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .section-card {
                padding: 1rem 0.8rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .inline-icon {
            margin-right: 0.4rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8a857c;
            display: block;
            margin-bottom: 1.2rem;
            font-style: italic;
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: #f0c75e;
            color: #0b0e14;
            padding: 0.5rem 1.2rem;
            font-weight: 600;
            border-radius: 0 0 8px 0;
            z-index: 200;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 0;
            text-decoration: none;
            color: #0b0e14;
        }
