        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf7f2;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 1.05rem;
            padding: 0 1rem;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #9a2e1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1f1b16;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.6em;
            border-left: 6px solid #c44536;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e6dcd0;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2em;
        }
        ul,
        ol {
            margin: 0.8em 0 1.4em 1.8em;
        }
        li {
            margin-bottom: 0.4em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf9;
            padding: 0 1.5rem 2rem;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        header {
            background: #1f1b16;
            color: #f5ede4;
            padding: 0.8rem 0;
            border-radius: 0 0 16px 16px;
            margin-bottom: 1.2rem;
            position: relative;
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7b731, #c44536);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-block;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo i {
            -webkit-text-fill-color: #f7b731;
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5ede4;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.2rem;
        }
        nav a {
            color: #f5ede4;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.25s, color 0.25s;
        }
        nav a:hover {
            background: #c44536;
            color: #fff;
            text-decoration: none;
        }
        .nav-search {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: #2f2922;
            border-radius: 40px;
            padding: 0.2rem 0.2rem 0.2rem 1rem;
        }
        .nav-search input {
            background: transparent;
            border: none;
            color: #f5ede4;
            padding: 0.4rem 0;
            font-size: 0.9rem;
            width: 110px;
            outline: none;
        }
        .nav-search input::placeholder {
            color: #a89f94;
        }
        .nav-search button {
            background: #c44536;
            border: none;
            color: #fff;
            border-radius: 40px;
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background 0.25s;
            font-weight: 600;
        }
        .nav-search button:hover {
            background: #9a2e1f;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #7a6f62;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #7a6f62;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb span {
            color: #b0a59a;
        }
        .hero-img {
            margin: 1.8rem 0 2.2rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #e6dcd0;
        }
        .hero-img img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        section {
            margin: 2.5rem 0;
        }
        .highlight-box {
            background: #f7f0e8;
            padding: 1.6rem 2rem;
            border-radius: 16px;
            border-left: 6px solid #c44536;
            margin: 1.8rem 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.6rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.4rem 1rem;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede5db;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #c44536;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #4f4640;
        }
        .interview-block {
            background: #f5efe8;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #e0d5c8;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.1rem;
            border-left: 4px solid #c44536;
            padding-left: 1.2rem;
            color: #3b332c;
        }
        .interview-block .attribution {
            margin-top: 0.6rem;
            font-weight: 600;
            color: #1f1b16;
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 1.6rem 0;
        }
        .game-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.4rem 1.2rem;
            border: 1px solid #ede5db;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .game-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .game-card h4 {
            margin-top: 0;
            color: #c44536;
        }
        .game-card a {
            font-weight: 600;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        @media (max-width:700px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #f7f2ec;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #e6dcd0;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 1px solid #d6cbbc;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fff;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #c44536;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 0.7rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
            align-self: flex-start;
        }
        .feedback-card .btn-submit:hover {
            background: #9a2e1f;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.3rem;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.7rem;
            color: #d6cbbc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7b731;
        }
        friend-link {
            display: block;
            background: #f0e9e2;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2.5rem 0 1.2rem;
            font-size: 1rem;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            color: #1f1b16;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
            color: #5a4b3e;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #c44536;
        }
        footer {
            border-top: 2px solid #e6dcd0;
            padding: 1.8rem 0 1.2rem;
            text-align: center;
            color: #5a4b3e;
            font-size: 0.9rem;
        }
        footer .copyright {
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        footer .copyright i {
            color: #c44536;
        }
        @media (max-width:860px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.5rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid #3b332c;
                margin-top: 0.6rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.5rem 0.8rem;
                border-radius: 8px;
            }
            .nav-search {
                width: 100%;
                background: #2f2922;
                border-radius: 40px;
                padding: 0.3rem 0.3rem 0.3rem 1rem;
                margin-top: 0.4rem;
            }
            .nav-search input {
                width: 1fr;
                flex: 1;
            }
            .nav-search button {
                flex-shrink: 0;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 0.8rem 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .game-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width:480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero-img img {
                max-height: 220px;
            }
            .feedback-card {
                padding: 1.2rem 1rem;
            }
            .highlight-box {
                padding: 1.2rem 1.2rem;
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
            friend-link {
                padding: 1.2rem 1rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 1.8rem;
            right: 1.8rem;
            background: #c44536;
            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(196, 69, 54, 0.3);
            cursor: pointer;
            transition: transform 0.25s, background 0.25s;
            border: none;
            z-index: 99;
        }
        .scroll-top:hover {
            transform: scale(1.08);
            background: #9a2e1f;
        }
        @media (max-width:480px) {
            .scroll-top {
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
                bottom: 1rem;
                right: 1rem;
            }
        }
