
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }

        /* 顶部导航栏 */
        
        /* ===== NAVBAR ===== */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 200;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.08);
            box-shadow: 0 1px 8px rgba(0,0,0,0.06);
        }
        .navbar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        @media (min-width: 768px) {
            .navbar-inner {
                padding: 0 24px;
                height: 60px;
                gap: 24px;
            }
        }
        .navbar-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        @media (min-width: 768px) {
            .navbar-left { gap: 28px; }
        }
        
        .logo-text {
            font-size: 18px;
            font-weight: 800;
            background: linear-gradient(135deg, #ff69b4, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        @media (min-width: 768px) {
            .logo-text { font-size: 22px; }
        }
        
        @media (min-width: 768px) {
            
        }
        .nav-link {
            padding: 6px 14px;
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 500;
            color: #6b7280;
            text-decoration: none;
            transition: all 0.2s;
        }
        .nav-link:hover {
            color: #1a1a2e;
            background: rgba(0,0,0,0.06);
        }
        .nav-link.active {
            color: #a855f7;
            background: rgba(168,85,247,0.08);
            font-weight: 600;
        }
        .navbar-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            padding: 7px 18px;
            border-radius: 9999px;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #ff69b4, #a855f7);
            text-decoration: none;
            transition: all 0.2s;
            box-shadow: 0 2px 8px rgba(168,85,247,0.3);
            white-space: nowrap;
        }
        .nav-cta-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(168,85,247,0.4);
        }
        /* 汉堡菜单按钮 */
        .mobile-menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #1a1a2e;
            cursor: pointer;
            padding: 6px 8px;
            border-radius: 8px;
            border: none;
            background: none;
            transition: all 0.2s;
            line-height: 1;
        }
        .mobile-menu-toggle:hover {
            background: rgba(0,0,0,0.06);
        }
        @media (min-width: 768px) {
            .mobile-menu-toggle { display: none; }
        }
        /* 移动端展开菜单 */
        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 8px 16px 16px;
            border-top: 1px solid rgba(0,0,0,0.06);
            background: rgba(255,255,255,0.98);
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-nav-link {
            padding: 12px 8px;
            font-size: 15px;
            font-weight: 500;
            color: #6b7280;
            text-decoration: none;
            border-bottom: 1px solid rgba(0,0,0,0.04);
            transition: color 0.2s;
        }
        .mobile-nav-link:last-child { border-bottom: none; }
        .mobile-nav-link:hover, .mobile-nav-link.active {
            color: #a855f7;
        }


        .logo {
            font-size: 18px;
            font-weight: bold;
            color: #ff69b4;
            text-decoration: none;
        }

        

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ff69b4;
        }

        .register-btn {
            background: linear-gradient(135deg, #00d4ff, #0099ff);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 13px;
            border: none;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .register-btn:hover {
            transform: scale(1.05);
        }

        /* 游戏分类菜单 */
        .game-categories {
            background: white;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .categories-scroll {
            display: flex;
            gap: 15px;
            min-width: min-content;
            padding: 5px 0;
        }

        .category-item {
            padding: 8px 16px;
            background: #f0f0f0;
            border-radius: 20px;
            text-decoration: none;
            color: #333;
            font-size: 13px;
            white-space: nowrap;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .category-item:hover {
            background: #e0e0e0;
            color: #ff69b4;
        }

        .category-item.active {
            background: linear-gradient(135deg, #ff69b4, #ff1493);
            color: white;
            border-color: #ff1493;
        }

        /* 促销横幅 */
        .promo-banner {
            background: linear-gradient(135deg, #ff69b4, #ff1493);
            padding: 20px;
            margin: 20px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 20px;
            color: white;
        }

        .promo-icon {
            font-size: 48px;
            flex-shrink: 0;
        }

        .promo-content h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .promo-content p {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 10px;
        }

        .promo-btn {
            background: white;
            color: #ff69b4;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 13px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: transform 0.3s;
            display: inline-block;
        }

        .promo-btn:hover {
            transform: scale(1.05);
        }

        /* 主容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* 标题和更多按钮 */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 12px 16px;
            background: linear-gradient(135deg, #f0e6ff 0%, #e8d5ff 50%, #f5e6ff 100%);
            border-radius: 12px;
        }

        .section-title {
            font-size: 20px;
            font-weight: bold;
            color: #6633cc;
        }

        .more-btn {
            background: white;
            border: 2px solid #9966ff;
            color: #9966ff;
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .more-btn:hover {
            background: #9966ff;
            color: white;
        }

        /* 陪玩卡片网格 */
        .playmates-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }

        /* 陪玩卡片新样式 */
        .playmate-card {
            background: white;
            border: none;
            border-radius: 16px;
            padding: 0;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }

        .playmate-card:hover {
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }

        .avatar-container {
            position: relative;
            width: 100%;
            padding-top: 115%;
            overflow: hidden;
            border-radius: 16px 16px 0 0;
            background: #f0f0f0;
        }

        .avatar-container img {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            border-radius: 16px 16px 0 0;
            transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .playmate-card:hover .avatar-container img {
            transform: scale(1.06);
        }

        .online-time {
            cursor: pointer;
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0,0,0,0.52);
            color: white;
            padding: 4px 10px 4px 8px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 4px;
            backdrop-filter: blur(2px);
        }

        .online-time::before {
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
          /*   border-style: solid; */
            border-width: 5px 0 5px 9px;
            border-color: transparent transparent transparent white;
            flex-shrink: 0;
        }

        .card-info {
            padding: 10px 12px 14px;
        }

        .playmate-name {
            font-size: 15px;
            font-weight: bold;
            text-align: left;
            margin-bottom: 5px;
            color: #222;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .game-name {
            font-size: 12px;
            color: #0066cc;
            text-align: left;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .price-section {
            display: flex;
            justify-content: flex-start;
            align-items: baseline;
            padding: 0;
            background: none;
            border-radius: 0;
            margin-bottom: 0;
        }

        .price {
            font-size: 20px;
            font-weight: bold;
            color: #ff1493;
        }

        .price-unit {
            font-size: 12px;
            color: #999;
            margin-left: 2px;
        }

        .game-tag {
            background: #333;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            display: inline-block;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .action-btn {
            display: none;
        }

        /* 页脚 */
        .footer {
            background: #f5f5f5;
            border-top: 1px solid #eee;
            padding: 30px 20px;
            text-align: center;
            color: #999;
            font-size: 12px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #0066cc;
            text-decoration: none;
            font-size: 12px;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .footer-info {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 10px;
            }

            .nav-links {
                gap: 15px;
                font-size: 12px;
            }

            .promo-banner {
                flex-direction: column;
                text-align: center;
                margin: 15px;
            }

            .playmates-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .section-header {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }

            .categories-scroll {
                gap: 10px;
            }

            .category-item {
                padding: 6px 12px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .playmates-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            

            

            .playmate-name {
                font-size: 14px;
            }

            .price {
                font-size: 16px;
            }

            .promo-banner {
                padding: 15px;
            }

            .promo-icon {
                font-size: 36px;
            }

            .promo-content h3 {
                font-size: 16px;
            }
        }
    
        /* 新版游戏菜单样式 */
        .game-menu-outer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
        }
        .game-menu-wrapper {
            position: relative;
            background: linear-gradient(135deg, #f0e6ff 0%, #e8d5ff 50%, #f5e6ff 100%);
            border-radius: 16px;
            padding: 12px 40px;
            margin: 0;
            overflow: hidden;
        }
        .game-menu-scroll {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 8px;
            padding: 4px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .game-menu-scroll::-webkit-scrollbar {
            display: none;
        }
        .game-menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 72px;
            cursor: pointer;
            padding: 6px 4px;
            border-radius: 12px;
            transition: background 0.2s;
            text-decoration: none;
        }
        .game-menu-item:hover, .game-menu-item.active {
            background: rgba(255,255,255,0.6);
        }
        .game-menu-item.active {
            background: rgba(255,255,255,0.8);
        }
        .game-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            overflow: hidden;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 6px;
        }
        .game-icon-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .game-menu-name {
            font-size: 11px;
            color: #333;
            text-align: center;
            white-space: nowrap;
            max-width: 72px;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-menu-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            background: rgba(255,255,255,0.9);
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            font-size: 14px;
            color: #888;
            user-select: none;
        }
        .game-menu-arrow:hover {
            background: #fff;
            color: #555;
        }
        .game-menu-arrow.left { left: 6px; }
        .game-menu-arrow.right { right: 6px; }

        
/* playmate-card a 标签重置 */
a.playmate-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
