* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f4f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0f3460;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 20px 28px 40px;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #eef2f7;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e94560, #0f3460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #555;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .my-logo a {
            text-decoration: none;
            background: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #0f3460;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eef2f7;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            align-items: center;
        }
        .nav-menu a {
            font-weight: 600;
            color: #1a1a2e;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #e94560;
            color: #e94560;
            text-decoration: none;
        }
        .nav-menu .active-link {
            color: #e94560;
            border-bottom-color: #e94560;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #666;
            padding: 10px 0 18px;
            border-bottom: 1px solid #eef2f7;
            margin-bottom: 24px;
            background: #fafcff;
            border-radius: 12px;
            padding: 10px 16px;
        }
        .breadcrumb a {
            color: #0f3460;
        }
        .breadcrumb span {
            color: #999;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #0f3460;
            margin: 0 0 12px;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0f3460;
            margin: 40px 0 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #e94560;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #16213e;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #1a1a2e;
            margin: 20px 0 8px;
        }
        p {
            margin: 0 0 18px;
            font-size: 1rem;
            color: #2d2d44;
        }
        .lead {
            font-size: 1.15rem;
            font-weight: 500;
            color: #0f3460;
            background: #f0f5ff;
            padding: 16px 20px;
            border-radius: 16px;
            border-left: 4px solid #e94560;
        }
        .highlight {
            background: #fff8e7;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #f8faff;
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid #e8edf5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #e94560;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #555;
            font-weight: 500;
        }
        .img-wrapper {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #eef2f7;
        }
        .img-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .img-wrapper .caption {
            padding: 12px 16px;
            font-size: 0.85rem;
            color: #666;
            background: #fafcff;
            font-style: italic;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 10px 18px;
            background: #f8faff;
            padding: 18px 22px;
            border-radius: 16px;
            border: 1px solid #e8edf5;
            margin: 20px 0;
        }
        .link-list a {
            display: inline-block;
            padding: 4px 0;
            font-weight: 500;
        }
        .link-list a::before {
            content: "🎮 ";
            font-size: 0.8rem;
        }
        .search-section {
            background: linear-gradient(135deg, #f0f5ff, #ffffff);
            padding: 28px 24px;
            border-radius: 20px;
            margin: 40px 0 20px;
            border: 1px solid #dce4f0;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #dce4f0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input:focus {
            border-color: #e94560;
        }
        .search-form button {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #c2314a;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 36px 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #fafcff;
            border-radius: 20px;
            padding: 24px 22px;
            border: 1px solid #e8edf5;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #dce4f0;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
            margin-bottom: 12px;
            font-family: inherit;
            resize: vertical;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #e94560;
        }
        .comment-form button,
        .rating-form button {
            background: #0f3460;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #1a4a7a;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            margin: 8px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ccc;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b50a;
        }
        .rating-form select {
            padding: 10px 16px;
            border: 2px solid #dce4f0;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            width: 100%;
            margin-bottom: 12px;
            background: #fff;
        }
        friend-link {
            display: block;
            background: #f0f5ff;
            padding: 24px 22px;
            border-radius: 20px;
            margin: 40px 0 20px;
            border: 1px solid #dce4f0;
            font-size: 0.95rem;
        }
        friend-link::before {
            content: "🤝 Friend Links";
            display: block;
            font-weight: 700;
            font-size: 1.2rem;
            color: #0f3460;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            font-weight: 500;
        }
        .footer {
            border-top: 2px solid #eef2f7;
            padding: 24px 0 10px;
            margin-top: 32px;
            text-align: center;
            color: #777;
            font-size: 0.9rem;
        }
        .footer .copyright {
            font-weight: 500;
            color: #444;
        }
        .last-update {
            display: inline-block;
            background: #eef2f7;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 20px;
        }
        @media (max-width:768px) {
            .container {
                padding: 16px 14px 30px;
                border-radius: 16px;
            }
            .header {
                padding: 10px 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 6px;
                border-top: 1px solid #eef2f7;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 8px 12px;
                border-radius: 8px;
                width: 100%;
            }
            .nav-menu a:hover {
                background: #f0f5ff;
                border-bottom-color: transparent;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 8px 12px;
            }
        }
        @media (max-width:480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                min-width: 140px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        .schema-hidden {
            display: none;
        }
