        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
            background: #f5f3ef;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #b33a2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7f2a1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 20px 24px 32px;
        }
        @media (min-width: 768px) {
            .container {
                padding: 32px 48px 48px;
            }
            body {
                padding: 24px 32px;
            }
        }
        .my-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #e8e2da;
            position: relative;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #2d1f14, #5a3a2a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #b33a2b;
            font-size: 1.8rem;
        }
        .my-logo a {
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
            z-index: 110;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #2d1f14;
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .nav-wrap {
            display: none;
            width: 100%;
            padding-top: 16px;
        }
        .nav-wrap.open {
            display: block;
        }
        .my-nav {
            display: flex;
            flex-direction: column;
            gap: 6px;
            list-style: none;
        }
        .my-nav li a {
            display: block;
            padding: 10px 16px;
            font-weight: 600;
            border-radius: 10px;
            background: #f8f6f3;
            color: #2d1f14;
            transition: background 0.2s, transform 0.1s;
        }
        .my-nav li a:hover {
            background: #e8e2da;
            transform: translateX(4px);
            text-decoration: none;
        }
        .my-nav li a i {
            margin-right: 10px;
            color: #b33a2b;
            width: 20px;
            text-align: center;
        }
        @media (min-width: 768px) {
            .hamburger {
                display: none;
            }
            .nav-wrap {
                display: block !important;
                width: auto;
                padding-top: 0;
            }
            .my-nav {
                flex-direction: row;
                gap: 4px;
                flex-wrap: wrap;
            }
            .my-nav li a {
                padding: 8px 18px;
                background: transparent;
                border-radius: 40px;
                font-size: 0.9rem;
            }
            .my-nav li a:hover {
                background: #f0ebe4;
                transform: none;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 14px 0 10px;
            font-size: 0.85rem;
            color: #6b5e52;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b33a2b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5e52;
        }
        .breadcrumb a:hover {
            color: #b33a2b;
        }
        h1 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 20px 0 12px;
            color: #1e130c;
        }
        h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin: 40px 0 12px;
            padding-bottom: 6px;
            border-bottom: 3px solid #e8e2da;
            color: #2d1f14;
        }
        h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 28px 0 10px;
            color: #3d2c1e;
        }
        h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #4d3827;
        }
        p {
            margin: 0 0 16px;
        }
        .last-updated {
            display: inline-block;
            background: #f0ebe4;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #5a4a3a;
            margin-bottom: 16px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #b33a2b;
        }
        .game-card {
            background: #faf8f6;
            border-radius: 16px;
            padding: 20px 22px;
            margin: 20px 0;
            border-left: 5px solid #b33a2b;
            transition: box-shadow 0.2s;
        }
        .game-card:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }
        .game-card h3 {
            margin-top: 0;
        }
        .game-card .meta {
            font-size: 0.85rem;
            color: #6b5e52;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 8px;
        }
        .game-card .meta i {
            margin-right: 4px;
            color: #b33a2b;
        }
        .highlight-box {
            background: #f0ebe4;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 24px 0;
            border: 1px solid #ddd6cc;
        }
        .highlight-box i {
            color: #b33a2b;
            margin-right: 8px;
        }
        .interview-block {
            background: #f7f3ee;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 24px 0;
            font-style: italic;
            border: 1px dashed #ccc3b8;
        }
        .interview-block strong {
            font-style: normal;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 560px;
        }
        th {
            background: #2d1f14;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #e8e2da;
        }
        tr:hover td {
            background: #f8f6f3;
        }
        .search-section {
            background: #f8f6f3;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 32px 0 24px;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #ddd6cc;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b33a2b;
            outline: none;
        }
        .search-form button {
            padding: 12px 28px;
            background: #b33a2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #7f2a1f;
            transform: scale(1.02);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin: 32px 0;
        }
        @media (min-width: 768px) {
            .interact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #faf8f6;
            border-radius: 16px;
            padding: 20px 22px;
            border: 1px solid #e8e2da;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd6cc;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            margin-bottom: 12px;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #b33a2b;
            outline: none;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 10px 28px;
            background: #b33a2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #7f2a1f;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 12px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd6cc;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #e8a838;
        }
        .featured-img {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #f0ebe4;
        }
        .featured-img img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .featured-img figcaption {
            padding: 12px 18px;
            font-size: 0.85rem;
            color: #5a4a3a;
            background: #f8f6f3;
        }
        friend-link {
            display: block;
            background: #f8f6f3;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 32px 0 16px;
            border: 1px solid #e8e2da;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            padding: 0;
            margin: 12px 0 0;
        }
        friend-link ul li a {
            font-size: 0.9rem;
            padding: 4px 0;
            display: inline-block;
        }
        .my-footer {
            border-top: 2px solid #e8e2da;
            padding-top: 24px;
            margin-top: 32px;
            text-align: center;
            font-size: 0.85rem;
            color: #6b5e52;
        }
        .my-footer .copyright {
            margin-top: 12px;
            font-size: 0.8rem;
            color: #8a7a6a;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .container {
                padding: 12px 14px 24px;
            }
            .game-card {
                padding: 16px;
            }
        }
        .author-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f0ebe4;
            padding: 6px 16px 6px 12px;
            border-radius: 40px;
            font-size: 0.8rem;
            margin-bottom: 12px;
        }
        .author-badge i {
            color: #b33a2b;
        }
        .nav-wrap,
        .hamburger span,
        .game-card,
        .search-form input,
        .comment-form textarea,
        .comment-form input {
            transition: all 0.25s ease;
        }
        section {
            scroll-margin-top: 24px;
        }
