        *,
        *::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, sans-serif;
            background: #faf7f0;
            color: #2e241f;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b4532b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e12;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #1f1612;
        }
        h1 {
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            margin-bottom: 1rem;
        }
        h2 {
            font-size: clamp(1.4rem, 3.5vw, 2.2rem);
            margin-top: 2.8rem;
            margin-bottom: 0.75rem;
            border-left: 6px solid #e67e3a;
            padding-left: 1rem;
        }
        h3 {
            font-size: clamp(1.15rem, 2.5vw, 1.6rem);
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.3rem;
            color: #7a4a32;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin-bottom: 1.2rem;
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #1f1612;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #6b4c3a;
        }
        blockquote {
            border-left: 4px solid #e67e3a;
            background: #f5ede4;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        header {
            background: #1f1612;
            color: #faf7f0;
            padding: 1rem 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5b041, #e67e3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5b041;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #e67e3a;
            color: #faf7f0;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2e241f;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #faf7f0;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: #e67e3a;
            color: #1f1612;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 0.2rem auto 0;
            padding: 0.4rem 1rem 0.2rem;
            font-size: 0.85rem;
            color: #a08070;
        }
        .breadcrumb a {
            color: #d4a574;
        }
        .breadcrumb a:hover {
            color: #f5b041;
        }
        .breadcrumb span {
            color: #cbb5a5;
        }
        main {
            padding: 1rem 0 2rem;
        }
        section {
            margin-bottom: 2.5rem;
            background: #ffffffdd;
            backdrop-filter: blur(2px);
            padding: 1.5rem 1.8rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0e6dc;
        }
        @media (max-width:600px) {
            section {
                padding: 1rem 1rem;
            }
        }
        .feature-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .feature-image figcaption {
            background: #f5ede4;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: #5a3f2f;
            text-align: center;
        }
        .form-card {
            background: #f5ede4;
            padding: 1.5rem 1.8rem;
            border-radius: 16px;
            margin: 1.5rem 0;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-top: 1rem;
            margin-bottom: 0.3rem;
            color: #2e241f;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dccfc4;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fffcf9;
            transition: border 0.2s;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: #e67e3a;
        }
        .form-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .form-card .btn {
            background: #e67e3a;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 1.2rem;
            display: inline-block;
        }
        .form-card .btn:hover {
            background: #b4532b;
            transform: scale(1.02);
        }
        .form-card .btn i {
            margin-right: 8px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            margin: 0.5rem 0 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #dccfc4;
            cursor: pointer;
            transition: color 0.15s;
            font-size: 1.8rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b041;
        }
        .comment-list {
            margin-top: 1.5rem;
            border-top: 2px dashed #e0d3c7;
            padding-top: 1.2rem;
        }
        .comment-item {
            background: #fffcf9;
            padding: 1rem 1.2rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            border-left: 4px solid #e0d3c7;
        }
        .comment-item strong {
            color: #b4532b;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #9a8070;
            margin-top: 0.3rem;
        }
        friend-link {
            display: block;
            padding: 1.2rem 1.8rem;
            background: #1f1612;
            color: #faf7f0;
            border-radius: 16px;
            margin-top: 2rem;
        }
        friend-link a {
            color: #f5b041;
            font-weight: 600;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #2e241f;
            text-decoration: none;
            color: #f5d080;
        }
        footer {
            background: #1f1612;
            color: #cbb5a5;
            padding: 1.8rem 1rem;
            border-radius: 20px 20px 0 0;
            text-align: center;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        footer a {
            color: #f5b041;
        }
        footer a:hover {
            color: #f5d080;
        }
        footer .copyright {
            margin-top: 0.8rem;
            font-size: 0.85rem;
            color: #9a8070;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2e241f;
                padding: 1rem 0.5rem;
                border-radius: 16px;
                margin-top: 0.8rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 0.6rem 0;
            }
            .header-inner {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .form-card {
                padding: 1rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.4rem;
            }
            section {
                padding: 0.8rem 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #e67e3a;
            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.2);
            transition: background 0.2s, transform 0.2s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #b4532b;
            transform: scale(1.1);
        }
        .tag {
            display: inline-block;
            background: #e0d3c7;
            color: #2e241f;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 0.3rem;
        }
        .last-updated {
            display: inline-block;
            background: #f5ede4;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #7a4a32;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.2rem 0;
        }
        .game-card {
            background: #fffcf9;
            border: 1px solid #f0e6dc;
            border-radius: 14px;
            padding: 1rem;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .game-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .game-card i {
            font-size: 2.4rem;
            color: #e67e3a;
            margin-bottom: 0.4rem;
        }
        .game-card h4 {
            margin-top: 0.2rem;
            font-size: 0.95rem;
        }
        .game-card p {
            font-size: 0.82rem;
            color: #6b4c3a;
        }
        hr {
            border: none;
            border-top: 2px dashed #e0d3c7;
            margin: 2rem 0;
        }
        .inline-link {
            font-weight: 600;
            padding: 0 0.2rem;
        }
