        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0b0f;
            color: #e8e3da;
            line-height: 1.7;
            font-size: 1.05rem;
            padding: 0 1rem;
            max-width: 1360px;
            margin: 0 auto;
        }
        a {
            color: #e8b84b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #f5d78e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f5d78e;
            margin: 1.8rem 0 0.8rem;
            line-height: 1.15;
            border-bottom: 2px solid #3d2e1e;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.1rem;
            font-weight: 700;
            color: #e8b84b;
            margin: 2.6rem 0 0.9rem;
            border-left: 5px solid #e8b84b;
            padding-left: 1rem;
            line-height: 1.25;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #d8c39a;
            margin: 1.8rem 0 0.6rem;
            line-height: 1.3;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c7ad7a;
            margin: 1.2rem 0 0.4rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        p {
            margin: 0.9rem 0;
            max-width: 75ch;
        }
        .text-glow {
            text-shadow: 0 0 12px rgba(232, 184, 75, 0.25);
        }
        .header-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0;
            border-bottom: 1px solid #2a1f14;
            position: relative;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5d78e;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f5d78e 0%, #c9a04a 80%);
            -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: #e8b84b;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            gap: 1.8rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-bar a {
            font-weight: 500;
            font-size: 1rem;
            padding: 0.3rem 0;
            position: relative;
            color: #d4cdc0;
        }
        .nav-bar a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #e8b84b;
            transition: width 0.3s ease;
        }
        .nav-bar a:hover::after,
        .nav-bar a:focus-visible::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #e8b84b;
            color: #e8b84b;
            font-size: 1.6rem;
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a1f14;
        }
        .nav-open .nav-bar {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: #1a1519;
            padding: 1rem 0;
            border-radius: 0 0 12px 12px;
            gap: 0.6rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.9rem;
            color: #8f8579;
            padding: 0.8rem 0 0.2rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #e8b84b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b8a48a;
        }
        .breadcrumb .current {
            color: #e8b84b;
        }
        .section-card {
            background: #181318;
            border-radius: 18px;
            padding: 1.8rem 2.2rem;
            margin: 2.2rem 0;
            border: 1px solid #2d221a;
            transition: box-shadow 0.3s ease;
        }
        .section-card:hover {
            box-shadow: 0 8px 30px rgba(232, 184, 75, 0.06);
        }
        .grid-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .grid-3col {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .wiki-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.98rem;
            background: #121012;
            border-radius: 12px;
            overflow: hidden;
        }
        .wiki-table th {
            background: #2a1f14;
            color: #f5d78e;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .wiki-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #1e1713;
        }
        .wiki-table tr:hover td {
            background: #1d1815;
        }
        .wiki-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.2rem 0;
        }
        .wiki-form input,
        .wiki-form textarea,
        .wiki-form select {
            background: #1a1519;
            border: 1px solid #3d2e1e;
            border-radius: 8px;
            padding: 0.7rem 1rem;
            color: #e8e3da;
            font-size: 1rem;
            flex: 1 1 220px;
            transition: border 0.2s;
        }
        .wiki-form input:focus,
        .wiki-form textarea:focus,
        .wiki-form select:focus {
            border-color: #e8b84b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.15);
        }
        .wiki-form textarea {
            min-height: 90px;
            flex-basis: 100%;
            resize: vertical;
        }
        .btn {
            background: #e8b84b;
            color: #0d0b0f;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            padding: 0.7rem 1.8rem;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #f5d78e;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #e8b84b;
            color: #e8b84b;
        }
        .btn-outline:hover {
            background: #e8b84b;
            color: #0d0b0f;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.3rem;
            justify-content: flex-end;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3d2e1e;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8b84b;
        }
        .score-display {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f5d78e;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a6f62;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin: 1.2rem 0 0.2rem;
            border-top: 1px dashed #2a1f14;
            padding-top: 1rem;
        }
        .footer-wrapper {
            border-top: 2px solid #2a1f14;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
        }
        friend-link {
            display: block;
            background: #181318;
            border-radius: 14px;
            padding: 1.2rem 1.8rem;
            border: 1px solid #2d221a;
            margin: 1rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            padding: 0.2rem 0.6rem;
            border-left: 3px solid #e8b84b;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            font-size: 0.9rem;
            color: #7a6f62;
            padding-top: 1.5rem;
            border-top: 1px solid #1e1713;
            margin-top: 1rem;
        }
        .copyright a {
            color: #b8a48a;
        }
        .hero-img-wrap {
            margin: 2rem 0 1rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .hero-img-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem 1.8rem;
            background: linear-gradient(transparent, #0d0b0f 90%);
            color: #e8e3da;
            font-size: 0.95rem;
        }
        @media (max-width: 900px) {
            .grid-2col,
            .grid-3col {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .section-card {
                padding: 1.2rem 1.2rem;
            }
            .header-wrapper {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.5rem;
                padding: 0.8rem 0 0.2rem;
            }
            .nav-bar a {
                font-size: 1.1rem;
                padding: 0.4rem 0;
            }
            .nav-open .nav-bar {
                display: flex;
            }
            .wiki-table {
                font-size: 0.85rem;
            }
            .wiki-table th,
            .wiki-table td {
                padding: 0.5rem 0.6rem;
            }
            .hero-img-wrap img {
                max-height: 240px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
                font-size: 0.98rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-muted {
            color: #8f8579;
        }
        .text-gold {
            color: #e8b84b;
        }
        .badge {
            display: inline-block;
            background: #2a1f14;
            padding: 0.15rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #e8b84b;
            border: 1px solid #3d2e1e;
        }
        .comment-item {
            background: #121012;
            border-radius: 10px;
            padding: 0.8rem 1.2rem;
            margin: 0.6rem 0;
            border-left: 3px solid #3d2e1e;
        }
        .comment-item strong {
            color: #f5d78e;
        }
        .comment-item .date {
            font-size: 0.75rem;
            color: #6a5f52;
        }
