/* Strategy Banner Section */
        .strategy-banner {
            position: relative;
            contain-intrinsic-size: auto 51.25rem;
            content-visibility: auto;
        }

        @media (max-width: 767px) {
            .strategy-banner {
                contain-intrinsic-size: auto 25rem;
            }
        }

        /* 背景图片容器 */
        .banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            contain-intrinsic-size: auto 51.25rem;
            content-visibility: auto;
        }

        @media (max-width: 767px) {
            .banner-bg {
                contain-intrinsic-size: auto 25rem;
            }
        }

        .banner-bg img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        .absolute-top-start {
            position: absolute;
            top: 0;
            left: 0;
        }

        .size-full {
            width: 100%;
            height: 100%;
        }

        .object-cover {
            object-fit: cover;
        }

        /* 主容器 */
        .banner-content {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 51.25rem;
        }

        @media (max-width: 767px) {
            .banner-content {
                min-height: 25rem;
            }
        }

        /* 选项卡区域 */
        .tabs-container {
            margin: 3.75rem 0;
            width: 100%;
            overflow-x: auto;
        }

        @media (max-width: 767px) {
            .tabs-container {
                margin: 1.5rem 0;
                padding: 1rem 0;
            }
        }

        .tabs-wrapper {
            margin: 0 auto;
            width: fit-content;
            display: flex;
            gap: 1rem;
            padding: 0 1rem;
        }

        @media (max-width: 767px) {
            .tabs-wrapper {
                gap: 0.5rem;
            }
        }

        /* 选项卡按钮 */
        .tab-button {
            position: relative;
            display: grid;
            width: 17.5rem;
            aspect-ratio: 277 / 80;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 0;
            transition: transform 0.2s ease;
        }

        @media (max-width: 767px) {
            .tab-button {
                width: 15rem;
            }
        }

        .tab-button:hover {
            transform: translateY(-4px);
        }

        /* Tab SVG背景 */
        .tab-bg {
            grid-area: 1 / 1;
            width: 100%;
            height: 100%;
            color: rgba(255, 255, 255, 0.12);
            transition: all 0.3s ease;
        }

        .tab-button:hover .tab-bg {
            color: rgba(255, 255, 255, 0.24);
        }

        .tab-button[data-active="true"] .tab-bg {
            color: #fbbf24;
        }

        /* Tab内容 */
        .tab-content {
            grid-area: 1 / 1;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 0.25rem;
        }

        .tab-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.33;
            transition: color 0.3s ease;
        }

        @media (max-width: 767px) {
            .tab-title {
                font-size: 1.125rem;
                line-height: 1.25;
            }
        }

        .tab-button[data-active="true"] .tab-title {
            color: #222;
        }

        .tab-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.25;
            transition: color 0.3s ease;
        }

        @media (max-width: 767px) {
            .tab-desc {
                font-size: 0.875rem;
                line-height: 1.25;
            }
        }

        .tab-button[data-active="true"] .tab-desc {
            color: #222;
        }

        /* 视频区域 */
        .video-section {
            display: flex;
            justify-content: center;
            align-items: stretch;
            padding-bottom: 2.5rem;
        }

        @media (max-width: 767px) {
            .video-section {
                padding-bottom: 2.5rem;
            }
        }

        /* 左右按钮 */
        .nav-button {
            width: 5rem;
            display: flex;
            align-items: center;
            padding-inline-end: 3rem;
        }

        @media (max-width: 767px) {
            .nav-button {
                display: none;
            }
        }

        .nav-btn {
            width: 2rem;
            height: 2rem;
            border-radius: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(205, 205, 205, 0.5);
            transition: all 0.15s ease;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            color: rgba(205, 205, 205, 1);
        }

        .nav-btn:disabled {
            visibility: hidden;
            pointer-events: none;
        }

        .nav-btn svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .nav-btn.prev svg {
            transform: rotate(180deg);
        }

        /* 屏幕阅读器专用隐藏样式 */
        .sr-only {
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            position: absolute;
            overflow: hidden;
        }

        /* 视频容器 */
        .video-container {
            width: 100%;
            max-width: 75rem;
            padding: 1rem;
            padding-bottom: 0;
            position: relative;
        }

        .video-wrapper {
            position: relative;
            aspect-ratio: 16 / 9;
            background: #32353A;
            border-radius: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
        }

        @media (max-width: 767px) {
            .video-wrapper {
                border-radius: 1rem 1rem 0 0;
            }
        }

        /* 视频轮播 */
        .video-slider {
            display: flex;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .video-slide {
            flex: 1 1 100%;
            flex-shrink: 0;
            padding: 0 1.25rem;
        }

        .video-player {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .video-player video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #32353A;
        }

        /* 视频poster */
        .video-poster {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #32353A;
            pointer-events: none;
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-poster[data-show="true"] {
            opacity: 1;
        }

        .video-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 渐变边框效果 */
        .video-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
        }

        /* 动画 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .strategy-banner {
            animation: fadeInUp 0.6s ease;
        }

        .tab-button {
            opacity: 0;
        }

        .tab-button:nth-child(1) { animation: fadeInUp 0.5s ease 0.1s forwards; }
        .tab-button:nth-child(2) { animation: fadeInUp 0.5s ease 0.2s forwards; }
        .tab-button:nth-child(3) { animation: fadeInUp 0.5s ease 0.3s forwards; }
        .tab-button:nth-child(4) { animation: fadeInUp 0.5s ease 0.4s forwards; }
		
		
		
		.container {
            width: 1320px;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0;
            box-sizing: border-box;
        }
        .section-title {
            font-size: 24px;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 24px;
        }
        .content-wrapper {
            display: flex;
            gap: 20px;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }
        /* 轮播图区域 */
        .carousel-section {
            flex: 0 0 480px;
            position: relative;
        }
        .carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 12px;
            overflow: hidden;
            background: #e8e8e8;
        }
        .carousel-track {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .carousel-item {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
            pointer-events: none;
        }
        .carousel-item.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            z-index: 1;
        }
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .carousel-item.active:hover img {
            transform: scale(1.05);
        }
        .carousel-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 8px;
            pointer-events: none;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .carousel:hover .carousel-nav {
            opacity: 1;
        }
        .carousel-nav-btn {
            pointer-events: auto;
            width: 20px;
            height: 52px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 4px;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            opacity: 0;
        }
        .carousel:hover .carousel-nav-btn {
            opacity: 1;
        }
        .carousel-nav-btn:hover {
            color: #ffdb18;
            background: rgba(0, 0, 0, 0.8);
        }
        .carousel-nav-btn:disabled {
            opacity: 0 !important;
            pointer-events: none;
        }
        .carousel-nav-btn svg {
            width: 16px;
            height: 16px;
        }
        .carousel-nav-btn.prev-btn svg {
            transform: rotate(180deg);
        }
        .carousel-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        .carousel-dot:hover {
            background: rgba(255,255,255,0.8);
        }
        .carousel-dot.active {
            background: #ffdb18;
            width: 24px;
            border-radius: 4px;
        }
        /* 右侧区域 */
        .right-section {
            flex: 1;
            height: 270px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-width: 0;
            overflow: hidden;
        }
        /* 月份选择器 Swiper */
        .month-selector-wrapper {
            position: relative;
            width: 100%;
            max-width: 100%;
        }
        .month-selector {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 4px;
            width: 100%;
            max-width: 100%;
        }
        .month-nav-btn {
            width: 24px;
            height: 40px;
            background: transparent;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            transition: all 0.3s;
            flex-shrink: 0;
            z-index: 2;
        }
        .month-nav-btn:hover {
            color: #1a1a1a;
        }
        .month-nav-btn svg {
            width: 12px;
            height: 12px;
        }
        .month-nav-btn.month-prev svg {
            transform: rotate(180deg);
        }
        .month-swiper {
            flex: 1;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
        }
        .month-swiper .swiper-wrapper {
            display: flex;
            width: 100%;
        }
        .month-swiper .swiper-slide {
            width: auto !important;
        }
        .date-item {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            background: #f5f5f5;
            user-select: none;
            flex-shrink: 0;
        }
        .date-item:hover {
            background: #fff;
        }
        .date-item.active {
            background: #ffdb18;
        }
        .date-item .month {
            font-size: 12px;
            color: #666;
            line-height: 1.2;
        }
        .date-item.active .month {
            color: #1a1a1a;
        }
        .date-item .day {
            font-size: 16px;
            color: #1a1a1a;
            font-weight: 500;
            line-height: 1.2;
        }
        /* 游戏列表 Swiper - 完全匹配原始样式 */
        .game-list-container {
            height: 214px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            width: 100%;
            max-width: 100%;
        }
        /* 游戏列表左右箭头 */
        .game-nav-wrapper {
            position: absolute;
            top: 0;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 10;
        }
        .game-nav-wrapper.left {
            left: 0;
        }
        .game-nav-wrapper.right {
            right: 0;
        }
        .game-nav-btn {
            position: relative;
            width: 24px;
            height: 100%;
            background: white;
            border: none;
            border-radius: 0;
            color: #666;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .game-nav-wrapper.left .game-nav-btn {
            margin-right: 8px;
        }
        .game-nav-wrapper.right .game-nav-btn {
            margin-left: 8px;
        }
        .game-nav-btn:hover {
            color: #1a1a1a;
        }
        .game-nav-btn:disabled {
            visibility: hidden;
            pointer-events: none;
        }
        .game-nav-btn svg {
            width: 12px;
            height: 12px;
        }
        .game-nav-btn.prev svg {
            transform: rotate(180deg);
        }
        /* 渐变遮罩 */
        .game-nav-mask {
            position: absolute;
            top: 0;
            height: 100%;
            width: 80px;
            pointer-events: none;
            background: linear-gradient(to right, transparent, white);
        }
        .game-nav-wrapper.left .game-nav-mask {
            left: 60%;
            background: linear-gradient(to left, transparent, white);
        }
        .game-nav-wrapper.right .game-nav-mask {
            right: 60%;
            background: linear-gradient(to right, transparent, white);
        }
        .game-swiper {
            width: 100%;
            max-width: 100%;
            height: 100%;
            box-sizing: border-box;
        }
        .game-swiper .swiper-wrapper {
            display: flex;
            width: 100%;
        }
        .game-swiper .swiper-slide {
            flex-shrink: 0;
            width: 120px !important;
        }
        .game-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 16px;
            border-radius: 0;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
            background: linear-gradient(to bottom, transparent, rgba(255, 219, 24, 0));
            width: 120px;
            overflow: hidden;
        }
        .game-card:hover {
            background: #f8f8f8;
        }
        .game-card img {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            object-fit: cover;
            margin-bottom: 8px;
        }
        .game-card-title {
            font-size: 16px;
            font-weight: bold;
            color: #1a1a1a;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
            margin-bottom: 4px;
        }
        .game-card:hover .game-card-title {
            color: #ffc107;
        }
        .game-card-desc {
            font-size: 12px;
            color: #666;
            text-align: center;
            margin-bottom: 10px;
        }
        .download-btn {
            background: transparent;
            border: 2px solid #ffc107;
            color: #ffc107;
            padding: 6px 20px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: bold;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .game-card:hover .download-btn {
            background: #ffc107;
            color: #1a1a1a;
        }
        /* 隐藏屏幕阅读器内容 */
        .sr-only {
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            position: absolute;
            overflow: hidden;
        }
        /* 响应式 */
        @media (max-width: 1024px) {
            .content-wrapper {
                flex-direction: column;
            }
            .carousel-section {
                flex: none;
                width: 100%;
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            .container {
                width: 100%;
                max-width: 100%;
                padding: 0 12px;
                box-sizing: border-box;
            }
            .section-title {
                font-size: 18px;
                margin-bottom: 12px;
            }
            .content-wrapper {
                gap: 12px;
            }
            .right-section {
                height: auto;
                min-height: 0;
                gap: 12px;
            }
            .month-nav-btn {
                display: none;
            }
            .game-nav-wrapper {
                display: none;
            }
            .date-item {
                width: 44px;
                height: 44px;
            }
            .game-card {
                padding: 14px 8px;
                height: 100%;
                box-sizing: border-box;
            }
            .game-card img {
                width: 60px;
                height: 60px;
            }
            .game-card-title {
                font-size: 14px;
                font-weight: normal;
                margin-bottom: 2px;
            }
            .game-card-desc {
                font-size: 11px;
                margin-bottom: 6px;
            }
            .download-btn {
                width: 72px;
                height: 32px;
                padding: 0;
                box-sizing: border-box;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 11px;
                font-weight: normal;
                border-width: 1px;
            }
            .game-list-container {
                height: 174px;
            }
            .game-swiper .swiper-wrapper {
                height: 100%;
            }
            .game-swiper .swiper-slide {
                width: 96px !important;
                height: 100%;
            }
        }