        *,
        *::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: #f8f6f2;
            color: #1e2a3a;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #9a2c1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: #1a2a3a;
        }
        h1 {
            font-size: 2.4rem;
            margin: 1.5rem 0 0.75rem;
            border-left: 6px solid #f4a261;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 3px solid #e9c46a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.8rem 0 0.6rem;
            color: #2a3a4a;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.4rem;
            color: #3a4a5a;
        }
        p {
            margin-bottom: 1.1rem;
        }
        strong {
            color: #b03a2a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 1.5rem 2rem 2.5rem;
        }
        @media (max-width:768px) {
            .container {
                padding: 1rem 1rem 2rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0 1rem;
            border-bottom: 2px solid #e9d8c6;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e76f51, #f4a261);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #e76f51;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            font-weight: 600;
            color: #2a3a4a;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-bar a:hover {
            background: #f4a26120;
            color: #c44536;
            text-decoration: none;
        }
        .nav-bar a i {
            margin-right: 0.3rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #1e2a3a;
            padding: 0.2rem 0.5rem;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.4rem;
                padding-top: 1rem;
                border-top: 1px solid #e9d8c6;
                margin-top: 0.8rem;
            }
            .nav-bar a {
                padding: 0.6rem 0.8rem;
                border-radius: 10px;
                background: #f8f6f2;
            }
            #nav-toggle:checked~.nav-bar {
                display: flex;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #6a7a8a;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #b0a090;
        }
        .breadcrumb a {
            color: #6a7a8a;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb .current {
            color: #1e2a3a;
            font-weight: 600;
        }
        .hero-figure {
            margin: 1.8rem 0 2.2rem;
            border-radius: 20px;
            overflow: hidden;
            background: #e9d8c6;
            position: relative;
        }
        .hero-figure img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 0.8rem 1.2rem;
            background: #1a2a3aee;
            color: #f1eae0;
            font-size: 0.95rem;
            text-align: center;
            font-style: italic;
        }
        .search-box {
            background: #f1ede8;
            border-radius: 60px;
            padding: 0.3rem 0.3rem 0.3rem 1.5rem;
            display: flex;
            align-items: center;
            max-width: 480px;
            margin: 1.2rem 0 1.8rem;
            border: 1px solid #ddd6cc;
            transition: box-shadow 0.3s;
        }
        .search-box:focus-within {
            box-shadow: 0 0 0 3px #f4a26180;
            border-color: #f4a261;
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.7rem 0;
            font-size: 1rem;
            outline: none;
            color: #1e2a3a;
        }
        .search-box input::placeholder {
            color: #8a7a6a;
        }
        .search-box button {
            background: #e76f51;
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-box button:hover {
            background: #c44536;
            transform: scale(1.02);
        }
        .search-box button i {
            font-size: 1rem;
        }
        .user-feedback {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding: 1.8rem 2rem;
            background: #f8f4ef;
            border-radius: 24px;
            border: 1px solid #e9d8c6;
        }
        .feedback-section {
            flex: 1 1 260px;
        }
        .feedback-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.3rem;
        }
        .feedback-section textarea,
        .feedback-section input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d6ccc2;
            border-radius: 16px;
            font-size: 0.95rem;
            background: #fff;
            resize: vertical;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .feedback-section textarea:focus,
        .feedback-section input:focus {
            border-color: #f4a261;
            outline: none;
            box-shadow: 0 0 0 3px #f4a26140;
        }
        .feedback-section .btn-feedback {
            background: #2a5c7a;
            color: #fff;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 0.5rem;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .feedback-section .btn-feedback:hover {
            background: #1a4a6a;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d6ccc2;
            cursor: pointer;
            margin: 0.3rem 0 0.6rem;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f4a261;
            transform: scale(1.1);
        }
        .star-rating i.active {
            color: #e76f51;
        }
        friend-link {
            display: block;
            padding: 1.8rem 0 0.8rem;
            border-top: 2px solid #e9d8c6;
            margin-top: 2rem;
        }
        friend-link h3 {
            font-size: 1.1rem;
            color: #4a5a6a;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            list-style: none;
            padding: 0;
        }
        friend-link .friend-list li a {
            color: #3a6a7a;
            font-weight: 500;
            border-bottom: 1px dotted #c0b8a8;
        }
        friend-link .friend-list li a:hover {
            color: #c44536;
            border-bottom-color: #c44536;
            text-decoration: none;
        }
        .site-footer {
            padding: 1.5rem 0 1rem;
            text-align: center;
            color: #6a7a8a;
            font-size: 0.9rem;
            border-top: 1px solid #e9d8c6;
            margin-top: 1.5rem;
        }
        .site-footer .copyright {
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .site-footer .copyright i {
            color: #c44536;
        }
        @media (max-width:480px) {
            .user-feedback {
                padding: 1.2rem 1rem;
                gap: 1.2rem;
            }
            .search-box {
                flex-wrap: wrap;
                border-radius: 30px;
                padding: 0.3rem 0.3rem 0.3rem 1rem;
            }
            .search-box button {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
            .hero-figure figcaption {
                font-size: 0.8rem;
                padding: 0.5rem 0.8rem;
            }
        }
        .tag {
            display: inline-block;
            background: #e9c46a30;
            color: #7a6a3a;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.4rem;
        }
        .highlight-box {
            background: #f1ede8;
            border-left: 5px solid #f4a261;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 1.5rem 0;
        }
        @media (max-width:700px) {
            .two-col {
                grid-template-columns: 1fr;
            }
        }
        .game-card {
            background: #faf8f5;
            padding: 1.2rem 1.5rem;
            border-radius: 20px;
            border: 1px solid #e9d8c6;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .game-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .game-card h4 {
            margin-top: 0;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #e76f51;
            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.15);
            transition: background 0.2s, transform 0.2s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #c44536;
            transform: scale(1.08);
        }
        @media (max-width:600px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
            }
        }
