        *,
        *::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: #f5f3ef;
            color: #1e1b18;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #8b3a2a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #c2573a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            padding: 1.5rem 2rem 2rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #2c1e16;
            margin: 1rem 0 0.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
            border-left: 6px solid #b34a2c;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #2c1e16;
            margin: 2.6rem 0 1rem 0;
            border-bottom: 3px solid #e8dcd2;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: #3d2b21;
            margin: 2rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4f382b;
            margin: 1.2rem 0 0.4rem 0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #3d2b21;
            background: #faf6f2;
            padding: 1.4rem 1.8rem;
            border-radius: 16px;
            border-left: 5px solid #b34a2c;
            margin: 1.2rem 0 2rem;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0 1rem;
            border-bottom: 2px solid #e8dcd2;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #2c1e16;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #8b3a2a, #c2573a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #6b5a4e;
            display: block;
            letter-spacing: 0.02em;
        }
        .my-logo a {
            text-decoration: none;
            color: inherit;
            background: inherit;
            -webkit-text-fill-color: inherit;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 0.4rem 0.9rem;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 30px;
            color: #2c1e16;
            transition: background 0.2s, color 0.2s;
        }
        .nav-bar a:hover {
            background: #8b3a2a;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2c1e16;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background: #faf6f2;
            border-radius: 16px;
            padding: 0.8rem 1rem;
            margin-top: 0.6rem;
        }
        .nav-mobile a {
            padding: 0.5rem 0.6rem;
            border-bottom: 1px solid #e8dcd2;
            font-size: 1rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #6b5a4e;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #b34a2c;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5a4e;
        }
        .breadcrumb a:hover {
            color: #8b3a2a;
        }
        .breadcrumb .current {
            color: #2c1e16;
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.8rem 0 1rem;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #dccfc4;
            border-radius: 40px;
            font-size: 1rem;
            background: #fcfaf8;
            transition: border 0.2s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #b34a2c;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #8b3a2a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #b34a2c;
            transform: scale(1.02);
        }
        .game-card {
            background: #fcfaf8;
            border-radius: 18px;
            padding: 1.6rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #e8dcd2;
            transition: box-shadow 0.3s;
        }
        .game-card:hover {
            box-shadow: 0 8px 30px rgba(139, 58, 42, 0.08);
        }
        .game-card .meta {
            font-size: 0.9rem;
            color: #6b5a4e;
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin-bottom: 0.6rem;
        }
        .game-card .meta i {
            margin-right: 0.3rem;
            color: #b34a2c;
        }
        .game-card h3 {
            margin-top: 0.2rem;
        }
        .game-card h3 i {
            color: #b34a2c;
            margin-right: 0.4rem;
        }
        .feature-box {
            background: #f0e9e2;
            border-radius: 16px;
            padding: 1.4rem 1.8rem;
            margin: 1.4rem 0;
            border-left: 6px solid #b34a2c;
        }
        .feature-box i {
            color: #8b3a2a;
            margin-right: 0.5rem;
        }
        .insight-box {
            background: #e4d9cf;
            border-radius: 14px;
            padding: 1.2rem 1.6rem;
            margin: 1.4rem 0;
            font-style: italic;
        }
        .img-wrapper {
            margin: 1.8rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #e8dcd2;
            text-align: center;
            padding: 2rem 1rem;
            position: relative;
        }
        .img-wrapper img {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 12px;
        }
        .img-wrapper .caption {
            margin-top: 0.6rem;
            font-size: 0.9rem;
            color: #4f382b;
        }
        .rank-list {
            list-style: none;
            counter-reset: rank;
        }
        .rank-list li {
            counter-increment: rank;
            padding: 0.8rem 1rem 0.8rem 2.8rem;
            position: relative;
            border-bottom: 1px dashed #dccfc4;
            font-size: 1.05rem;
        }
        .rank-list li::before {
            content: "#" counter(rank);
            position: absolute;
            left: 0.2rem;
            font-weight: 700;
            color: #b34a2c;
            font-size: 1.1rem;
        }
        .comment-section,
        .rating-section {
            background: #fcfaf8;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 1.2rem;
            border: 1px solid #e8dcd2;
        }
        .comment-section textarea,
        .rating-section select,
        .rating-section input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dccfc4;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
            outline: none;
            margin-bottom: 0.8rem;
        }
        .comment-section textarea:focus,
        .rating-section select:focus,
        .rating-section input:focus {
            border-color: #b34a2c;
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            padding: 0.65rem 2rem;
            background: #8b3a2a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-block;
        }
        .btn:hover {
            background: #b34a2c;
            transform: scale(1.02);
        }
        .btn-sm {
            padding: 0.4rem 1.2rem;
            font-size: 0.9rem;
        }
        footer {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 3px solid #e8dcd2;
        }
        footer .copyright {
            text-align: center;
            font-size: 0.9rem;
            color: #6b5a4e;
            padding: 1.2rem 0 0.2rem;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.6rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.2rem 0.6rem;
            background: #f0e9e2;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #2c1e16;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #dccfc4;
            text-decoration: none;
        }
        friend-link .label {
            font-weight: 600;
            color: #2c1e16;
            margin-right: 0.6rem;
        }
        @media (max-width: 768px) {
            .wrapper {
                padding: 1rem 1rem 1.5rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .nav-bar {
                display: none;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-mobile.open {
                display: flex;
            }
            .game-card {
                padding: 1.2rem 1.2rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .lead {
                font-size: 1.05rem;
                padding: 1rem 1.2rem;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
        .text-small {
            font-size: 0.9rem;
            color: #6b5a4e;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #6b5a4e;
            background: #f0e9e2;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            display: inline-block;
        }
        .fa-ul li {
            margin-bottom: 0.4rem;
        }
        .highlight {
            background: #f7efe8;
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fcfaf8;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8dcd2;
        }
        th {
            background: #2c1e16;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f5f0ea;
        }
