 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* 强制所有元素使用自定义光标 */
            cursor: url('/image/gb.png'), auto !important;
        }

        body {
            font-family: 'Inter', 'Noto Sans SC', sans-serif;
            overflow: hidden;
            background: #000;
        }

        /* 针对视频等特殊元素的恢复（如果需要） */
        video, iframe {
            cursor: url('/image/gb.png'), auto !important;
        }

        /* 首页视频背景 */
        #hero-section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 10;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        #hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: -1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        /* 首页左上角LOGO */
        #hero-logo {
            position: absolute;
            top: 40px;
            left: 60px;
            z-index: 20;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        #hero-logo.hidden {
            opacity: 0;
            transform: translateY(-20px);
            pointer-events: none;
        }

        /* 首页中央内容容器 */
        .hero-center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 15;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        /* 首页中央文字图片 */
        #hero-text-img {
            max-width: 600px;
            width: 90%;
            animation: fadeInUp 1s ease-out;
        }

        /* 播放按钮 - 位于文字图片下方 */
        .hero-play-btn {
            width: 80px;
            height: 50px;
            border: 2px solid rgba(255,255,255,0.8);
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            position: relative;
        }

        .hero-play-btn:hover {
            background: rgba(255,255,255,0.2);
            border-color: #fff;
        }

        .hero-play-btn::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 15px solid #fff;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            margin-left: 5px;
        }

        /* 鼠标图标 */
        #mouse-icon {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255,255,255,0.8);
            border-radius: 13px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 8px;
        }

        #mouse-icon::before {
            content: '';
            width: 4px;
            height: 8px;
            background: #fff;
            border-radius: 2px;
            animation: scrollWheel 2s infinite;
        }

        @keyframes scrollWheel {
            0% { transform: translateY(0); opacity: 1; }
            100% { transform: translateY(12px); opacity: 0; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* 第二页及内容区域 */
        #content-section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #f5f5f5;
            transform: translateY(100%);
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
            z-index: 30;
            overflow-y: auto;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        #content-section.active {
            transform: translateY(0);
        }

        /* 导航栏 */
        #main-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 60px;
            opacity: 0;
            transform: translateY(-100%);
            transition: all 0.5s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        #main-nav.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .nav-links {
            display: flex;
            gap: 50px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #4A90E2;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #4A90E2;
        }

        /* 产品展示区域 - 全屏轮播 */
        .product-showcase {
            min-height: 100vh;
            position: relative;
            background: #f5f5f5;
            overflow: hidden;
        }

        /* 轮播容器 */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        /* 轮播轨道 */
        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
            height: 100%;
        }

        /* 单个游戏幻灯片 */
        .game-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
        }

        /* 左侧大图区域 - 沾满左上角 */
        .game-image-section {
            position: relative;
            width: 65%;
            height: 100%;
            overflow: hidden;
        }

        .game-image-section img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: left top;
        }

        /* 中央播放按钮 */
        .center-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .center-play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: #fff;
        }

        .center-play-btn::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 25px solid #333;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 8px;
        }

        /* 右侧信息区域 */
        .game-info-section {
            width: 35%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 60px;
            background: #f5f5f5;
            position: relative;
        }

        .game-title {
            font-size: 72px;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 10px;
            letter-spacing: -2px;
            line-height: 1.1;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.3s;
        }

        .game-slide.active .game-title {
            opacity: 1;
            transform: translateY(0);
        }

        .game-subtitle {
            font-size: 20px;
            color: #7B68EE;
            margin-bottom: 30px;
            font-weight: 600;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.4s;
        }

        .game-slide.active .game-subtitle {
            opacity: 1;
            transform: translateY(0);
        }

        .game-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 400px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.5s;
        }

        .game-slide.active .game-desc {
            opacity: 1;
            transform: translateY(0);
        }

        .game-links {
            display: flex;
            gap: 25px;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.6s;
        }

        .game-slide.active .game-links {
            opacity: 1;
            transform: translateY(0);
        }

        .game-links a {
            color: #333;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .game-links a:hover {
            color: #4A90E2;
        }

        .video-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 30px;
            border: 2px solid #333;
            color: #333;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            background: transparent;
            font-size: 14px;
            width: fit-content;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.7s;
        }

        .game-slide.active .video-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .video-btn:hover {
            background: #333;
            color: #fff;
        }

        /* 游戏选择器 - 底部水平 - 默认绝对隐藏 */
        .game-selector {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: none !important;
            gap: 15px;
            z-index: 50;
            background: rgba(255,255,255,0.95);
            padding: 15px 25px;
            border-radius: 60px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
        }

        .game-selector.visible {
            display: flex !important;
            opacity: 1;
            visibility: visible;
        }

        .game-thumb {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            transition: all 0.3s;
            border: 3px solid transparent;
            object-fit: cover;
            flex-shrink: 0;
        }

        .game-thumb:hover,
        .game-thumb.active {
            transform: scale(1.15);
            border-color: #4A90E2;
            box-shadow: 0 5px 20px rgba(74, 144, 226, 0.4);
        }

        /* 侧边装饰文字 */
        .side-text {
            position: fixed;
            left: 40px;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            font-size: 12px;
            letter-spacing: 3px;
            color: #999;
            z-index: 40;
            white-space: nowrap;
            font-weight: 600;
        }

        /* 视频弹窗 */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 200;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .video-modal.active {
            display: flex;
        }

        .video-container {
            width: 80%;
            max-width: 1000px;
            position: relative;
        }

        .close-video {
            position: absolute;
            top: -50px;
            right: 0;
            color: #fff;
            font-size: 40px;
            background: none;
            border: none;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 轮播导航箭头 */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #333;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .carousel-arrow:hover {
            background: #fff;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.prev {
            left: 30px;
        }

        .carousel-arrow.next {
            right: 35%;
        }

        /* 其他页面内容 */
        .page-section {
            min-height: 100vh;
            padding: 120px 60px;
            background: #f5f5f5;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        /* 了解我们页面 */
        .about-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            justify-content: center;
        }

        .about-tab {
            padding: 8px 30px;
            background: transparent;
            border: none;
            color: #666;
            font-size: 15px;
            transition: all 0.3s;
        }

        .about-tab.active {
            background: #4A90E2;
            color: #fff;
        }

        .vision-text {
            font-size: 42px;
            color: #4A90E2;
            text-align: center;
            margin: 60px 0;
            font-weight: 300;
            line-height: 1.6;
        }

        /* 发展历程页面 - 视频还原样式 */
        #history-content {
            background: #f8fafc;
            min-height: calc(100vh - 80px);
            position: relative;
            overflow: hidden;
        }

        .milestone-layout {
            display: flex;
            width: 100%;
            height: calc(100vh - 80px);
            background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
            background-size: 20px 20px;
        }

        /* 左侧装饰栏 */
        .milestone-left-sidebar {
            width: 80px;
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 0;
            flex-shrink: 0;
        }

        .milestone-blue-bar {
            position: absolute;
            left: 30px;
            top: 30%;
            width: 4px;
            height: 300px;
            background: #3b82f6;
            transform: translateY(-50%);
        }

        .milestone-vertical-text {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%) rotate(-90deg);
            white-space: nowrap;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            color: #6b7280;
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
        }

        /* 主内容区 */
        .milestone-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 40px 60px;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .milestone-header {
            margin-bottom: 30px;
        }

        .milestone-title {
            font-size: 28px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 4px;
            display: flex;
            align-items: baseline;
            gap: 12px;
        }

        .milestone-subtitle {
            font-size: 12px;
            color: #9ca3af;
            letter-spacing: 2px;
            font-weight: 400;
            text-transform: uppercase;
        }

        .milestone-content-stage {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            min-height: 400px;
        }

        /* 图片框架 */
        

        /* 时间轴 */
        .milestone-timeline-section {
            height: auto;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: 80px;
            padding-bottom: 40px;
        }

        .milestone-timeline-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
        }

        .milestone-arrow {
            width: 44px;
            height: 44px;
            border: 1px solid #d1d5db;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #6b7280;
            transition: all 0.3s;
            z-index: 20;
            flex-shrink: 0;
            border-radius: 2px;
        }

        .milestone-arrow:hover {
            background: #3b82f6;
            color: white;
            border-color: #3b82f6;
        }

        .milestone-viewport {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 140px;
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        .milestone-track {
            display: flex;
            align-items: center;
            height: 100%;
            position: relative;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 50%;
        }

        .milestone-node {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.4s;
            flex-shrink: 0;
            width: 140px;
            height: 100%;
            justify-content: center;
        }

        .node-connector {
            position: absolute;
            top: 50%;
            left: -70px;
            width: 140px;
            height: 2px;
            background: #333;
            transform: translateY(-50%);
            z-index: 0;
            transition: background 0.4s;
        }

        .node-connector::before,
        .node-connector::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 2px;
            background: inherit;
        }

        .node-connector::before { left: 24px; }
        .node-connector::after { right: 24px; }

        .milestone-node:first-child .node-connector {
            display: none;
        }

        .node-icon-wrap {
            position: relative;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            z-index: 2;
        }

        .node-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: white;
            border: 2px solid #d1d5db;
            overflow: hidden;
            transition: all 0.4s;
            position: relative;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .node-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .year-label {
            position: absolute;
            font-size: 42px;
            font-weight: 800;
            color: #e5e7eb;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            pointer-events: none;
            transition: all 0.4s;
            letter-spacing: -2px;
        }

        .date-text {
            font-size: 13px;
            color: #6b7280;
            font-weight: 500;
            position: absolute;
            bottom: 30px;
            white-space: nowrap;
            transition: all 0.3s;
        }

        .milestone-node.active .year-label {
            color: #1f2937;
            font-size: 52px;
            opacity: 1;
        }

        .milestone-node.active .node-icon {
            transform: scale(1.15);
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
        }

        .milestone-node.active .date-text {
            color: #3b82f6;
            font-weight: 700;
            font-size: 14px;
        }

        .milestone-node.visited .node-connector {
            background: #3b82f6;
        }

        .milestone-node.visited .node-icon {
            border-color: #3b82f6;
        }

        /* 右侧指示器 */
        .milestone-right-sidebar {
            width: 80px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }

        .page-num-display {
            font-size: 32px;
            font-weight: 200;
            color: #6b7280;
            margin-bottom: 20px;
            font-family: 'Courier New', monospace;
        }

        .progress-line {
            width: 2px;
            height: 120px;
            background: #e5e7eb;
            position: relative;
            overflow: hidden;
            border-radius: 1px;
        }

        .progress-fill-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #6b7280;
            transform: translateY(-100%);
            transition: transform 0.4s ease-out;
        }

        /* 加入我们页面 */
        .careers-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .career-card {
            background: #fff;
            padding: 30px;
            margin-bottom: 20px;
            border-left: 4px solid #4A90E2;
            transition: all 0.3s;
        }

        .career-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .career-number {
            font-size: 48px;
            color: #e0e0e0;
            font-weight: 900;
            float: right;
        }

        /* 新闻页面 */
        .news-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .news-item {
            position: relative;
            overflow: hidden;
        }

        .news-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .news-item:hover img {
            transform: scale(1.05);
        }

        .news-date {
            font-size: 64px;
            color: #e0e0e0;
            font-weight: 300;
            line-height: 1;
        }

        /* 底部 */
        .pagination {
            display: flex;
            gap: 10px;
            margin-top: 40px;
        }

        .page-num {
            width: 50px;
            height: 50px;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-size: 18px;
        }

        .page-num:hover,
        .page-num.active {
            border-color: #333;
            background: #fff;
        }

        /* Footer */
        footer {
            background: #000;
            color: #fff;
            padding: 60px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            font-size: 13px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
        }

 
        @media (max-width: 1024px) {
            .game-image-section { width: 50%; }
            .game-info-section { width: 50%; padding: 0 40px; }
            .game-title { font-size: 48px; }
            .carousel-arrow.next { right: 50%; }
            .milestone-image-wrapper { width: 400px; height: 240px; }
        }

        @media (max-width: 768px) {
            .game-slide { flex-direction: column; }
            .game-image-section { width: 100%; height: 50%; }
            .game-info-section { width: 100%; height: 50%; padding: 30px; }
            .carousel-arrow { display: none; }
            .milestone-layout { flex-direction: column; }
            .milestone-left-sidebar { display: none; }
            .milestone-image-wrapper { width: 90%; height: 200px; }
        }

        .scroll-locked {
            overflow: hidden !important;
        }