        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f6f2;
            color: #1e2a2f;
            line-height: 1.7;
            font-size: 16px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b75a2b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8c3f1b;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1a2a2f;
            font-weight: 700;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #d98a4a;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #d98a4a;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2f4a4f;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d5a5f;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1f2e33 0%, #0f1a1e 100%);
            color: #f0e8dc;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f0d5a8;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #fae4be;
        }
        .my-logo i {
            margin-right: 6px;
            color: #d98a4a;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list li a {
            color: #e8ddd0;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-list li a:hover {
            background: #d98a4a;
            color: #0f1a1e;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 4px;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: 2px solid #d98a4a;
            color: #d98a4a;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #d98a4a22;
        }
        .breadcrumb {
            background: #ece6db;
            padding: 0.6rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            margin: 0.8rem 0 0.2rem 0;
        }
        .breadcrumb a {
            color: #5a4a3a;
        }
        .breadcrumb a:hover {
            color: #b75a2b;
        }
        .breadcrumb span {
            color: #7a6a5a;
        }
        main {
            padding: 1.5rem 0 3rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
        }
        @media (max-width: 960px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: #ffffff;
            padding: 2rem 2.2rem;
            border-radius: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .article-body p {
            color: #2c3a3f;
        }
        .sidebar {
            background: #ffffff;
            padding: 1.8rem 1.6rem;
            border-radius: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            border-bottom: 2px solid #d98a4a;
            padding-bottom: 0.3rem;
            margin-top: 0;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #ece6db;
        }
        .sidebar ul li a {
            font-weight: 500;
        }
        .sidebar ul li a i {
            color: #d98a4a;
            width: 20px;
        }
        .search-box {
            background: #f4efe7;
            padding: 1.5rem 1.8rem;
            border-radius: 20px;
            margin: 1.8rem 0 2.5rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-box input[type="text"] {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d4c9bc;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.25s;
        }
        .search-box input[type="text"]:focus {
            border-color: #d98a4a;
        }
        .search-box button {
            background: #d98a4a;
            border: none;
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #b96e32;
            transform: scale(1.02);
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.8rem 0 1.8rem 0;
            padding-top: 1.8rem;
            border-top: 2px dashed #d4c9bc;
        }
        @media (max-width: 700px) {
            .interaction-area {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .score-box {
            background: #f8f4ee;
            padding: 1.6rem 1.8rem;
            border-radius: 20px;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box textarea,
        .score-box textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #d4c9bc;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            resize: vertical;
            min-height: 80px;
            font-family: inherit;
            outline: none;
            transition: border 0.25s;
        }
        .comment-box textarea:focus,
        .score-box textarea:focus {
            border-color: #d98a4a;
        }
        .comment-box input[type="text"],
        .score-box input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d4c9bc;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border 0.25s;
            margin: 0.4rem 0;
        }
        .comment-box input[type="text"]:focus,
        .score-box input[type="text"]:focus {
            border-color: #d98a4a;
        }
        .comment-box button,
        .score-box button {
            background: #1f2e33;
            color: #f0e8dc;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #2f4a4f;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d4c9bc;
            cursor: pointer;
            margin: 0.4rem 0;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #d98a4a;
            transform: scale(1.1);
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            background: #f4efe7;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #5a4a3a;
            font-style: italic;
        }
        footer {
            background: #1a282e;
            color: #d4cdc0;
            padding: 2.5rem 0 1.8rem 0;
            margin-top: 2rem;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            footer .container {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        footer h4 {
            color: #f0d5a8;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #3d5a5f;
            padding-bottom: 0.3rem;
        }
        footer a {
            color: #c9bcab;
        }
        footer a:hover {
            color: #f0d5a8;
        }
        friend-link {
            display: block;
            background: #23333a;
            padding: 1.2rem 1.6rem;
            border-radius: 16px;
            margin: 0.8rem 0;
            font-size: 0.95rem;
            line-height: 2;
        }
        friend-link a {
            margin: 0 0.4rem;
            white-space: nowrap;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #3d5a5f;
            font-size: 0.85rem;
            color: #9a8e7e;
            grid-column: 1 / -1;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .article-body {
                padding: 1.2rem 1rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a282e;
                padding: 1rem 0.5rem;
                border-radius: 16px;
                margin-top: 0.5rem;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list li a {
                white-space: normal;
                padding: 0.6rem 1rem;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            .sidebar {
                position: static;
                margin-top: 1.5rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box button {
                justify-content: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (min-width: 769px) {
            .nav-list {
                display: flex !important;
            }
        }
        .highlight-box {
            background: #f4efe7;
            border-left: 6px solid #d98a4a;
            padding: 1.2rem 1.8rem;
            border-radius: 0 16px 16px 0;
            margin: 1.6rem 0;
        }
        .highlight-box strong {
            color: #1a2a2f;
        }
        .stat-badge {
            display: inline-block;
            background: #1f2e33;
            color: #f0d5a8;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #d98a4a;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
            transition: transform 0.2s, background 0.2s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            transform: scale(1.08);
            background: #b96e32;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #e8ddd0;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #3d2a1a;
            font-weight: 500;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #1f2e33;
            color: #f0d5a8;
            padding: 0.6rem 1rem;
            text-align: left;
        }
        .data-table td {
            padding: 0.5rem 1rem;
            border-bottom: 1px solid #ece6db;
        }
        .data-table tr:hover td {
            background: #f8f4ee;
        }
        .player-quote {
            font-style: italic;
            background: #faf6f0;
            padding: 1.2rem 2rem;
            border-radius: 40px 40px 40px 8px;
            margin: 1.6rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #ece6db;
        }
        .player-quote::before {
            content: "“";
            font-size: 2.8rem;
            color: #d98a4a;
            line-height: 0;
            vertical-align: -0.5rem;
            margin-right: 6px;
        }
        .player-quote span {
            display: block;
            margin-top: 0.4rem;
            font-size: 0.85rem;
            color: #7a6a5a;
        }
