        *,
        *::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: #faf7f2;
            color: #1e1e1e;
            line-height: 1.8;
            padding: 0 1rem;
        }
        a {
            color: #b85c2a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a3b16;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1e2a3a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            color: #c75b2a;
            border-left: 5px solid #c75b2a;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e6d8c9;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d5a6e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        header {
            background: linear-gradient(145deg, #1e2a3a 0%, #2c3e50 100%);
            padding: 0.8rem 0;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #ffbe76;
            letter-spacing: 1px;
            text-shadow: 2px 2px 0 #b85c2a;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd6a0;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #d9c8b4;
            display: block;
            letter-spacing: 0;
            text-shadow: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #ffbe76;
            color: #ffbe76;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #ffbe76;
            color: #1e2a3a;
        }
        nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #f0e4d8;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #ffbe76;
            color: #1e2a3a;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
        }
        @media (max-width: 860px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1e2a3a;
                padding: 0.8rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                gap: 0.3rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
                width: 100%;
            }
            .header-inner {
                position: relative;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.3rem 0;
            margin: 0.5rem 0 1rem 0;
            font-size: 0.9rem;
            color: #6b5e54;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "/";
            margin-right: 0.6rem;
            color: #b85c2a;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #b85c2a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #4a3f36;
            font-weight: 600;
        }
        .content-area {
            background: #ffffff;
            border-radius: 24px;
            padding: 2rem 2.2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin: 1.5rem 0;
        }
        .content-area p,
        .content-area li {
            font-size: 1.05rem;
            color: #2d2d2d;
        }
        .content-area .feature-img {
            margin: 1.8rem 0;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .highlight-box {
            background: #f7f0e8;
            border-left: 6px solid #c75b2a;
            padding: 1.2rem 1.8rem;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        .badge {
            display: inline-block;
            background: #c75b2a;
            color: #fff;
            padding: 0.1rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .badge.alt {
            background: #2c3e50;
        }
        .game-card {
            background: #fcf9f5;
            border: 1px solid #e6d8c9;
            border-radius: 16px;
            padding: 1.2rem 1.6rem;
            margin: 1.5rem 0;
            transition: box-shadow 0.3s, transform 0.2s;
        }
        .game-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }
        .game-card h4 {
            margin-top: 0;
        }
        .game-card .rating-stars {
            color: #f4a261;
            font-size: 1.1rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.8rem 0;
        }
        .stat-item {
            background: #edf2f7;
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #c75b2a;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #4a3f36;
        }
        .interview-block {
            background: #f2ede8;
            border-radius: 18px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            font-style: italic;
            position: relative;
        }
        .interview-block::before {
            content: "“";
            font-size: 4rem;
            color: #c75b2a;
            opacity: 0.3;
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            font-family: Georgia, serif;
        }
        .interview-block .attribution {
            font-style: normal;
            font-weight: 600;
            margin-top: 0.8rem;
            color: #2c3e50;
        }
        .form-section {
            background: #f7f0e8;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
        }
        .form-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e2a3a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d9c8b4;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c75b2a;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #c75b2a;
            color: #fff;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #a3471e;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #c75b2a;
            color: #c75b2a;
        }
        .btn-outline:hover {
            background: #c75b2a;
            color: #fff;
        }
        .rating-select {
            display: flex;
            gap: 0.5rem;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating-select input {
            display: none;
        }
        .rating-select label {
            font-size: 1.8rem;
            color: #d9c8b4;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .rating-select label:hover,
        .rating-select label:hover~label,
        .rating-select input:checked~label {
            color: #f4a261;
            transform: scale(1.1);
        }
        footer {
            background: #1e2a3a;
            color: #e6d8c9;
            padding: 2rem 0 1.5rem;
            border-radius: 20px 20px 0 0;
            margin-top: 2.5rem;
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        footer a {
            color: #ffbe76;
        }
        footer a:hover {
            color: #ffd6a0;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
        }
        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #3d5a6e;
            font-size: 0.9rem;
            color: #b0a090;
        }
        @media (max-width: 700px) {
            body {
                padding: 0 0.5rem;
            }
            .content-area {
                padding: 1.2rem 1rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .form-section {
                padding: 1.2rem 1rem;
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            footer .container {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .game-card {
                padding: 0.8rem 1rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: #c75b2a;
            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 12px rgba(0, 0, 0, 0.2);
            transition: background 0.25s, transform 0.2s;
            z-index: 90;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #a3471e;
            transform: translateY(-4px);
        }
        .schema-hidden {
            display: none;
        }
