        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b22222;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #7a0000;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #0d0d1a;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 3px solid #b22222;
            padding-bottom: 0.6rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
            color: #fff;
            padding: 0.8rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #ffd700;
            text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
            transition: transform 0.25s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #ffe44d;
            text-decoration: none;
        }
        .my-logo span {
            color: #ff6b35;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #ffd700;
            color: #ffd700;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 215, 0, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 0.4rem 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f0f0f0;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
            text-decoration: none;
        }
        .nav-menu .active {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .breadcrumb-wrap {
            background: #eaeef3;
            padding: 0.5rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d0d7de;
        }
        .breadcrumb-wrap ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb-wrap li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #888;
        }
        .breadcrumb-wrap a {
            color: #b22222;
        }
        .breadcrumb-wrap .current {
            color: #555;
            font-weight: 500;
        }
        .main-wrap {
            flex: 1;
            padding: 2.2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            align-items: start;
        }
        .content-body {
            background: #fff;
            border-radius: 18px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #fff;
            border-radius: 18px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            color: #b22222;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 0.5rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar li {
            margin-bottom: 0.6rem;
        }
        .sidebar a {
            display: block;
            padding: 0.4rem 0.8rem;
            background: #f8f9fc;
            border-radius: 8px;
            font-size: 0.9rem;
            border-left: 3px solid transparent;
            transition: all 0.2s;
        }
        .sidebar a:hover {
            background: #fff0f0;
            border-left-color: #b22222;
            text-decoration: none;
        }
        .featured-img {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        }
        .featured-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-img figcaption {
            background: #f0f2f5;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #555;
            font-style: italic;
        }
        .interactive-box {
            background: #f8f9fc;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            border: 1px solid #e6eaf0;
        }
        .interactive-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d0d7de;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b22222;
        }
        .search-form button,
        .btn {
            background: #b22222;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .search-form button:hover,
        .btn:hover {
            background: #7a0000;
            transform: translateY(-2px);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d0d7de;
            border-radius: 16px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #b22222;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #ffb800;
            cursor: pointer;
            margin: 0.6rem 0;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #ff9900;
        }
        .site-footer {
            background: #0d0d1a;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            border-top: 3px solid #b22222;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #ffd700;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #bbbbbb;
            display: inline-block;
            margin-bottom: 0.3rem;
        }
        .site-footer a:hover {
            color: #ffd700;
        }
        .friend-link {
            display: block;
            padding: 0.3rem 0;
        }
        .friend-link a {
            margin-right: 0.8rem;
        }
        .copyright {
            border-top: 1px solid #2a2a3e;
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }
        .copyright strong {
            color: #ddd;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .content-body {
                order: 1;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 0.8rem;
                border-top: 1px solid #2a2a3e;
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 0.8rem;
                border-radius: 4px;
            }
            .content-body {
                padding: 1.5rem 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .interactive-box {
                padding: 1.2rem 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: unset;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .content-body {
                padding: 1rem 0.8rem;
                border-radius: 12px;
            }
            .sidebar {
                padding: 1rem 0.8rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        .highlight {
            background: #fff8e1;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #b22222;
            color: #fff;
            font-size: 0.7rem;
            padding: 0.15rem 0.6rem;
            border-radius: 50px;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.6rem 0.8rem;
            border: 1px solid #ddd;
            text-align: left;
        }
        th {
            background: #1a1a2e;
            color: #fff;
        }
        tr:nth-child(even) {
            background: #f8f9fc;
        }
        .player-quote {
            background: #f0f4ff;
            border-left: 4px solid #b22222;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .player-quote cite {
            display: block;
            margin-top: 0.5rem;
            font-weight: 600;
            color: #b22222;
            font-style: normal;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #888;
            text-align: right;
            margin-top: 0.5rem;
            border-top: 1px dashed #ddd;
            padding-top: 0.6rem;
        }
