        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f2ed;
            color: #1e1a17;
            line-height: 1.75;
            padding: 0;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #2c241e;
            margin-top: 2rem;
            margin-bottom: 0.9rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #b8860b;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 6px solid #b8860b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #3d322a;
        }
        h4 {
            font-size: 1.25rem;
            color: #4d4036;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            color: #f5f2ed;
            padding: 16px 0;
            border-bottom: 4px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5e6c8;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 2px 2px 0 #b8860b, 4px 4px 0 rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo small {
            font-size: 0.55rem;
            display: block;
            letter-spacing: 3px;
            color: #b8860b;
            font-weight: 400;
            text-shadow: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8e0d5;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #b8860b;
            color: #1a1a2e;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #b8860b;
            color: #f5e6c8;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: #b8860b;
            color: #1a1a2e;
        }
        .breadcrumbs {
            background: #e8e0d5;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d5cbbc;
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 12px;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumbs a {
            color: #5a4a3a;
        }
        .breadcrumbs .current {
            color: #2c241e;
            font-weight: 600;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .widget {
            background: #fffcf9;
            border-radius: 14px;
            padding: 24px 20px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e0d5;
        }
        .widget h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #b8860b;
            padding-bottom: 8px;
            margin-bottom: 16px;
        }
        .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .widget li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ebe4;
        }
        .widget li:last-child {
            border-bottom: none;
        }
        .widget a {
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #d5cbbc;
            border-radius: 30px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0 22px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #d4a017;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #d5cbbc;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            background: #fff;
            transition: border 0.3s;
        }
        .comment-box textarea:focus {
            border-color: #b8860b;
            outline: none;
        }
        .comment-box button,
        .score-box button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #d4a017;
        }
        .score-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d5cbbc;
            cursor: pointer;
            margin: 8px 0;
        }
        .score-stars .star {
            transition: color 0.2s;
        }
        .score-stars .star:hover,
        .score-stars .star.active {
            color: #f5b342;
        }
        friend-link {
            display: block;
            padding: 28px 0 12px;
            border-top: 2px solid #b8860b;
            margin-top: 20px;
        }
        friend-link h3 {
            font-size: 1.2rem;
            margin-top: 0;
            color: #2c241e;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            margin-top: 12px;
        }
        friend-link a {
            color: #5a4a3a;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #b8860b;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c8c0b5;
            padding: 32px 0 20px;
            text-align: center;
            border-top: 4px solid #b8860b;
            margin-top: 20px;
        }
        .site-footer p {
            margin-bottom: 6px;
            font-size: 0.95rem;
        }
        .site-footer .copyright {
            color: #8a7a6a;
            font-size: 0.85rem;
            margin-top: 12px;
        }
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #1a1a2e;
                padding: 12px 0;
                border-top: 2px solid #b8860b;
                margin-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                border-radius: 0;
                border-bottom: 1px solid #2a2a4e;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumbs ol {
                font-size: 0.8rem;
            }
            .container {
                padding: 0 14px;
            }
            .content-wrapper {
                padding: 20px 0;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
                padding-left: 0.7rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 12px;
            }
            .score-stars {
                font-size: 1.5rem;
            }
        }
        .highlight {
            background: #fef7e0;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .lore-image-wrapper {
            margin: 28px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
        }
        .lore-image-wrapper figcaption {
            background: #f0ebe4;
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #4d4036;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #2c241e;
            color: #f5e6c8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 18px;
        }
        .btn-back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #b8860b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
            transition: background 0.3s, transform 0.3s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .btn-back-top:hover {
            background: #d4a017;
            transform: translateY(-4px);
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .table-of-contents {
            background: #faf6f0;
            border: 2px solid #e8e0d5;
            border-radius: 14px;
            padding: 20px 26px;
            margin: 28px 0;
        }
        .table-of-contents ol {
            columns: 2;
            column-gap: 30px;
            padding-left: 1.2rem;
        }
        .table-of-contents li {
            break-inside: avoid;
            margin-bottom: 6px;
        }
        .table-of-contents a {
            font-weight: 500;
        }
        @media (max-width: 600px) {
            .table-of-contents ol {
                columns: 1;
            }
        }
        .blockquote-lore {
            border-left: 6px solid #b8860b;
            background: #faf6f0;
            padding: 18px 24px;
            border-radius: 0 14px 14px 0;
            margin: 24px 0;
            font-style: italic;
            color: #3d322a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #fffcf9;
            border: 1px solid #e8e0d5;
            border-radius: 12px;
            padding: 18px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #b8860b;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #5a4a3a;
        }
