@charset "utf-8";
/* ========== CSS 变量 / 主题 ========== */
        :root {
            --color-bg: #0B0A0A;
            --color-text: #E8E6E1;
            --color-gold: #D6A15A;
            --color-gold-light: #E6B87E;
            --color-cream: #FBF5EA;
            --color-cream-dark: #F2EDE4;
            --color-cream-darker: #E0D5C8;
            --color-muted: #CBB59B;
            --color-muted-dark: #9A8B78;
            --font-display: 'YouSheBiaoTiHei', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-song: 'PingFang SC', 'Noto Serif SC', 'Microsoft YaHei', serif;
            --font-body: 'Inter', 'SF Pro Text', 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --font-weiruan: 'Microsoft YaHei', 'PingFang SC', 'Inter', 'SF Pro Text', 'Segoe UI', sans-serif;
            --ease-swipe: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 32px;
            --radius-xl: 48px;
            --radius-full: 100px;
        }

        /* ========== 字体 ========== */
        @font-face {
            font-family: 'YouSheBiaoTiHei';
            src: url('../fonts/YouSheBiaoTiHei-2.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
            unicode-range: U+4E00-9FFF, U+3000-303F, U+FF00-FFEF;
        }
        @font-face {
            font-family: 'SanJiXingKaiJianTi-Cu';
            src: url('../fonts/SanJiXingKaiJianTi-Cu-2.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        /* ========== 全局重置 ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            width: 100%;
            height: 100%;
        }
        body {
            width: 100%;    
            min-height: 100%;
            margin: 0;
            background-color: var(--color-bg);
            font-family: var(--font-body);
            color: var(--color-text);
            line-height: 1.5;
            scroll-behavior: smooth;
            overflow-x: clip;
        }

        /* 页面包装层：仅剪裁水平溢出，不干预垂直滚动 */
        .page-wrapper {
            width: 100%;
            min-height: 100vh;
            overflow-x: clip;
        }

        /* ========== 图片全局自适应 ========== */
        img {
            max-width: 100%;
            height: auto;
            vertical-align: middle;
        }
        /* 保留明确需要固定尺寸的图片不受全局规则影响 */
        .social-icon-block img,
        .detail-icon img,
        .qrcode-card img,
        .license img {
            max-width: none;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background-image: url('../images/bg6.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 1;
            pointer-events: none;
        }

        /* ========== 导航栏 ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 5%;
            border-bottom: 1px solid rgba(232, 230, 225, 0.15);
            flex-wrap: wrap;
            gap: 20px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(0,0,0,0.55);
            z-index: 100;
            transition: transform 0.3s ease-in-out;
            will-change: transform;
        }
        .navbar.hide { transform: translateY(-100%); }
        .navbar.show  { transform: translateY(0); }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo-img {
            height: 44px;
            width: auto;
            border-radius: var(--radius-sm);
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
            transition: transform 0.2s ease, filter 0.2s ease;
        }
        .logo-img:hover {
            transform: scale(1.02);
            filter: drop-shadow(0 4px 10px rgba(214, 161, 90, 0.3));
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            padding: 0;
            border: 0;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.06);
            cursor: pointer;
            z-index: 101;
        }
        .menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            margin: 0 auto;
            background: var(--color-cream-dark);
            border-radius: 999px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }
        .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .nav-links a {
            color: var(--color-cream-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.2s;
            padding: 8px 0;
            position: relative;
        }
        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: var(--color-gold);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after { width: 100%; }
        .nav-links a:hover { color: var(--color-gold-light); }

        /* ========== Hero 轮播 ========== */
        .hero-swiper {
            width: 100%;
            height: 100vh;
            position: relative;
            overflow: clip;
        }

        .swiper-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            flex-shrink: 0;
            width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide-bg-1 { background-image: url('../images/bg1.webp'); }
        .slide-bg-2 { background-image: url('../images/bg2.webp'); }
        .slide-bg-3 { background-image: url('../images/bg4.webp'); }

        .slide-bg-1 .slide-content-centered {
            gap: 4px;
            margin-top: -50px;
        }
        .slide-bg-1 .detail-link {
            margin-top: -10px;
        }
        .slide-bg-2 .slide-content-centered {
            margin-top: -60px;
        }
        .slide-bg-3 .slide-content-centered {
            margin-top: -25px;
        }
        .slide-bg-2 .slide-content-centered p {
            margin-top: -16px;
        }
        .slide-content-centered {
            position: absolute;
            top: 75%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 90%;
            max-width: 760px;
            opacity: 0.98;
            transition: transform 0.9s ease, opacity 0.9s ease;
        }

        .centered-logo {
            display: block;
            width: 600px;
            max-width: 100%;
            height: auto;
            max-height: 250px;
            margin: 0 auto 0.7rem;
            filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
        }

        .slide-content-centered h1,
        .slide-content-centered h2 {
            font-size: clamp(2.2rem, 7.5vw, 5.2rem);
            font-weight: 400;
            font-family: 'SanJiXingKaiJianTi-Cu', var(--font-display), var(--font-body);
            line-height: 1.4;
            margin-bottom: 1.8rem;
            background: linear-gradient(145deg, #FFFFFF 0%, #D6B17E 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
            letter-spacing: 0.15em;
        }

        .slide-content-centered p {
            font-size: 1.2rem;
            color: var(--color-cream-darker);
            font-family: 'SanJiXingKaiJianTi-Cu', var(--font-body);
            opacity: 0.95;
            letter-spacing: 0.02em;
            font-weight: 400;
            line-height: 1.8;
            margin-top: 1.2rem;
            backdrop-filter: blur(4px);
            display: inline-block;
            padding: 0.2rem 1.2rem;
            border-radius: 40px;
            background: rgba(0,0,0,0.2);
        }

        .detail-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            backdrop-filter: blur(8px);
            padding: 0 15px;
            border-radius: 60px;
            margin-top: 0.35rem;
            transition: all 0.25s ease;
            cursor: pointer;
            text-decoration: none;
            width: auto;
            line-height: 1;
        }
        .detail-link:hover .detail-text { color: var(--color-gold-light); }
        .detail-text {
            font-size: 1.5rem;
            font-family: var(--font-display);
            color: #FFFFFF;
            letter-spacing: 1px;
            line-height: 1;
        }
        .detail-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            transition: transform 0.2s;
            line-height: 1;
        }
        .detail-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }
        .detail-link:hover .detail-icon img {
            filter: brightness(0) invert(0.9) sepia(1) hue-rotate(320deg) saturate(2);
        }

        /* 轮播分页 */
        .swiper-pagination {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
        }
        .dot {
            width: 40px;
            height: 3px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .dot.active {
            background: var(--color-gold);
            width: 60px;
        }

        /* ========== 通用 Section ========== */
        section {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.9s ease, transform 0.9s ease;
            padding: 50px 5% 64px;
            width: 100%;
            border-bottom: 1px solid rgba(232,230,225,0.08);
            background: rgba(11, 10, 10, 0.7);
        }
        section.in-view {
            opacity: 1;
            transform: translateY(0);
        }
        .section-title {
            font-size: 3.5rem;
            font-family: var(--font-display);
            font-weight: 400;
            letter-spacing: 0.04em;
            margin-bottom: 1rem;
            text-align: center;
            color: var(--color-cream);
            margin-top: 0;
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        section.in-view .section-title {
            opacity: 1;
            transform: translateY(0);
        }
        .section-title p {
            font-size: 1.2rem;
            color: #ffffff;
            margin-top: 0.15rem;
            line-height: 1;
        }

        /* ========== 关于我们 ========== */
        #company {
            padding-top: 50px;
            padding-bottom: 80px;
            min-height: auto;
            background: linear-gradient(180deg, rgba(16,16,16,0.95) 0%, rgba(11,10,10,0.7) 100%);
        }
        .company-text {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem;
            min-height: 420px;
            font-size: 1.05rem;
            color: #EFE6DA;
        }
        .company-text p {
            line-height: 1.7;
            font-size: 30px;
            margin-bottom: 1rem;
            text-align: center;
            opacity: 0;
            transform: translateY(20px) scale(0.8);
            transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        #company.in-view .company-text p {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* ========== 游戏产品（含图片文案 + 内容中心） ========== */
        #games {
            padding: 70px 5% 80px;
            background: rgba(11, 10, 10, 0.7);
        }
        .featured-wrap {
            display: flex;
            align-items: flex-start;
            gap: 80px;
            max-width: 1200px;
            margin: 60px auto 60px;
        }
        .featured-img {
            flex: 0 0 600px;
        }
        .featured-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-text {
            flex: 1;
        }
        .featured-text h3 {
            font-size: 6rem;
            font-family: var(--font-display);
            font-weight: 400;
            color: var(--color-cream);
            margin-bottom: 20px;
            letter-spacing: 0.04em;
        }
        .featured-text p {
            font-size: 1.8rem;
            color: var(--color-cream-darker);
            line-height: 1.8;
            margin-bottom: 16px;
            text-indent: 2em;
        }
        /* ---- 分割线 ---- */
        .section-divider {
            text-align: center;
            margin: 10px auto;
            line-height: 0;
        }
        .section-divider img {
            max-width: 100%;
            height: auto;
        }

        /* ---- 内容中心（子板块标题） ---- */
        .sub-section-title {
            font-size: 3rem;
            font-family: var(--font-display);
            font-weight: 400;
            color: var(--color-cream);
            text-align: center;
            letter-spacing: 0.04em;
            margin-bottom: 28px;
        }
        /* ---- 最新资讯 ---- */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            max-width: 1500px;
            margin: 0 auto;
        }
        .news-card {
            border-radius: var(--radius-md);
            overflow: hidden;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(232,230,225,0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-6px);
            border-color: rgba(214, 161, 90, 0.3);
            box-shadow: 0 12px 32px rgba(0,0,0,0.4);
        }
        .news-img {
            width: 100%;
            overflow: hidden;
        }
        .news-img img {
            width: 100%;
            height: auto;
            object-fit: contain;
            transition: transform 0.4s ease;
        }
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        .news-info {
            padding: 20px 22px 26px;
            background: #fff;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-info h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #222;
            margin-bottom: 10px;
        }
        .news-info p {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
        }

        /* ========== 内容中心 左侧大图 + 右侧缩略图 ========== */
        .showcase-wrapper {
            display: flex;
            gap: 36px;
            max-width: 1500px;
            margin: 0 auto;
            align-items: stretch;
        }

        /* ---- 左侧视频播放区 ---- */
        .showcase-main {
            flex: 1;
            min-width: 0;
            overflow: hidden;
            position: relative;
        }
        .showcase-video {
            width: 100%;
            height: 100%;
            min-height: 760px;
            object-fit: contain;
            display: block;
        }

        /* ---- 右侧缩略图（竖排） ---- */
        .game-thumbnails {
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex-shrink: 0;
            width: 200px;
            justify-content: center;
        }
        .thumb-card {
            flex: 0 0 auto;
            width: 100%;
            height: 130px;
            border-radius: var(--radius-md);
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }
        .thumb-card:hover {
            border-color: rgba(214, 161, 90, 0.5);
            transform: translateX(-4px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .thumb-card.active {
            border-color: var(--color-gold);
            box-shadow: 0 0 16px rgba(214, 161, 90, 0.3);
        }
        .thumb-img {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* ========== 加入我们 ========== */
        #team {
            padding: 50px 0 0;
            margin-bottom: 0;
        }
        #team .section-title { color: #ffffff; }
        #team .section-title p { color: #ffffff; }

        .recruit-box {
            max-width: 100vw;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            margin-top: 30px;
            margin-bottom: 0;
            min-height: 560px;
            background: rgba(78, 111, 119, 0.95);
            border-radius: 0;
            border: none;
            overflow: clip;
            display: flex;
            align-items: stretch;
            justify-content: center;
            position: relative;
            box-shadow: none;
        }
        .recruit-img {
            flex: 0 0 48%;
            min-height: 100%;
            height: auto;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        }
        .recruit-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.4), transparent);
            z-index: 1;
        }
        .recruit-img-bg {
            width: 100%;
            height: 100%;
            background-image: url('../images/bg4.webp');
            background-size: cover;
            background-position: center;
        }
        .recruit-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 80px;
            z-index: 2;
            min-height: 100%;
        }
        .recruit-content h3,
        .recruit-content h4 {
            font-size: 2.4rem;
            font-family: var(--font-weiruan);
            color: transparent;
            background: linear-gradient(135deg, #FFE890 0%, #FFC82E 45%, #FF9100 100%);
            -webkit-background-clip: text;
            background-clip: text;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        .recruit-content h4 { font-size: 2rem; }
        .recruit-content p {
            font-size: 1.5rem;
            font-family: var(--font-weiruan);
            color: #D1C5B5;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        .recruit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            min-width: 160px;
            max-width: 200px;
            background: #fff;
            color: #111;
            font-weight: 600;
            font-size: 1.2rem;
            border-radius: var(--radius-full);
            text-decoration: none;
            transition: 0.25s;
            white-space: nowrap;
        }
        .recruit-btn:hover {
            background: var(--color-gold);
            color: #fff;
        }

        /* ========== 联系我们 ========== */
        #contact {
            padding: 50px 5%;
            border-bottom: 1px solid rgba(232,230,225,0.08);
            background: rgba(11, 10, 10, 0.7);
            /* backdrop-filter 在 iOS Safari 上会创建合成层，导致滚动到此区域时触摸被拦截 */
        }
        .contact-full-bg {
            width: 100%;
            min-height: 120px;
            background-image: url("../images/bg5.webp");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            border-radius: 50px;
            overflow: hidden;
        }
        .contact-full-bg::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.68);
            z-index: 1;
        }
        .contact-bg-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            max-width: 1280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .contact-title-main {
            font-size: 3.5rem;
            font-weight: 400;
            letter-spacing: 0.04em;
            color: var(--color-cream);
            margin-bottom: 2rem;
        }
        .social-icon-row {
            display: flex;
            gap: 48px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 0;
        }
        .social-icon-block {
            width: 72px;
            height: 72px;
            background: #22262c;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .social-icon-row a {
            display: inline-flex;
            text-decoration: none;
            outline: none;
            border: none;
        }
        .social-icon-block {
            border: 1px solid transparent;
        }
        .social-icon-block:hover {
            transform: translateY(-6px);
            border-color: var(--color-gold);
        }
        .social-icon-row a:hover,
        .social-icon-row a:focus {
            outline: none;
            border: none;
        }
        .social-icon-row a:hover .social-icon-block {
            border-color: var(--color-gold);
        }
        .social-icon-block img {
            width: 46px;
            height: 46px;
            object-fit: contain;
            filter: brightness(100);
        }
        .social-icon-row a:first-of-type .social-icon-block img {
            width: 40px;
            height: 40px;
        }

        /* ========== 微信弹窗 ========== */
        .qrcode-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        .qrcode-modal.active { display: flex; }
        .qrcode-card {
            background: rgba(20, 18, 17, 0.95);
            backdrop-filter: blur(12px);
            border-radius: var(--radius-lg);
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(214, 161, 90, 0.5);
            max-width: 320px;
            width: 90%;
            cursor: default;
            animation: fadeInUp 0.3s ease;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .qrcode-card img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
            background: #fff;
            padding: 8px;
        }
        .email-display {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        #emailAddress {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--color-gold-light);
        }
        .qrcode-card h4 {
            font-size: 1.2rem;
            color: #F0E2D0;
            margin-bottom: 0.3rem;
        }
        .qrcode-card p {
            font-size: 0.8rem;
            color: var(--color-muted);
        }
        .close-btn {
            margin-top: 1rem;
            color: var(--color-gold);
            font-size: 0.8rem;
            cursor: pointer;
        }

        /* ========== 页脚 ========== */
        footer {
            background: #000000;
            padding: 40px 5% 30px;
            width: 100%;
            border-top: 1px solid rgba(200, 143, 74, 0.25);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-main {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 1.5rem;
        }
        .footer-brand {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            min-width: 0;
        }
        .footer-copy-brand {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .footer-copy-brand span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-cream-darker);
        }
        .footer-logo {
            width: 200px;
            height: auto;
            object-fit: contain;
            padding: 8px;
        }
        .copyright-text {
            font-size: 0.7rem;
            color: var(--color-muted-dark);
        }
        .footer-links {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .footer-links a {
            color: var(--color-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--color-gold-light); }
        .footer-links .footer-sep {
            color: var(--color-muted-dark);
            font-size: 0.85rem;
            line-height: 1;
        }
        .license {
            font-size: 0.7rem;
            text-align: center;
            color: #8A7B68;
            border-top: 1px solid rgba(200, 143, 74, 0.2);
            padding-top: 1.2rem;
            margin-top: 0;
        }
        .license a {
            color: #8A7B68;
            font-size: 0.7rem;
            text-decoration: none;
        }
        .license a:hover {
            color: #8A7B68;
            text-decoration: none;
        }

        /* ========== 特效 ========== */

        /* 滚动进度条 */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), #fff);
            z-index: 9999;
            box-shadow: 0 0 12px rgba(214, 161, 90, 0.4);
            transition: width 0.1s linear;
        }

        /* 鼠标跟随光晕 */
        .mouse-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9998;
        }
        @media (hover: none) {
            .mouse-glow { display: none; }
        }

        /* 标题底部装饰线（滚动进入时展开） */
        .section-title::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            margin: 10px auto 0;
            background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold-light), var(--color-gold), transparent);
            border-radius: 2px;
            transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }
        section.in-view .section-title::after {
            width: 120px;
        }

        /* Hero Logo 浮动 */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
        }
        .centered-logo {
            animation: float 5s ease-in-out infinite;
        }

        /* 按钮光泽划过 */
        .recruit-btn {
            position: relative;
            overflow: hidden;
        }
        .recruit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }
        .recruit-btn:hover::before {
            left: 100%;
        }

        /* 社交图标悬停光晕 */
        .social-icon-block {
            position: relative;
        }
        .social-icon-block::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: calc(var(--radius-md) + 4px);
            background: radial-gradient(circle at center, rgba(214,161,90,0.25) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        .social-icon-block:hover::after {
            opacity: 1;
        }

        /* 减少动效偏好 */
        @media (prefers-reduced-motion: reduce) {
            .centered-logo { animation: none; }
            .section-title::after { transition: none; }
            .recruit-btn::before { transition: none; }
        }

        /* ================================================================
           ========== 响应式 / 媒体查询（按断点合并） ==========
           ================================================================ */

        /* --- 断点: ≤1080px (含 iPad 紧凑导航) --- */
        @media (max-width: 1080px) {
            .navbar {
                flex-direction: row;
                align-items: center;
                flex-wrap: nowrap;
                gap: 4px;
                padding: 10px 3%;
                justify-content: flex-start;
            }
            .logo-container {
                justify-content: center;
                flex-shrink: 0;
            }
            .logo-img { height: 30px; }
            .nav-links {
                margin-left: auto;
                gap: 0.6rem;
                flex-shrink: 1;
                min-width: 0;
            }
            .nav-links a {
                font-size: 0.8rem;
                padding: 2px 0;
                white-space: nowrap;
            }
            section { padding: 60px 4% 48px; }
            .section-title { font-size: 2rem; }
        }

        /* --- 断点: ≤980px (仅文字及通用微调) --- */
        @media (max-width: 980px) {
            #company {
                padding-top: 88px;
                padding-bottom: 96px;
            }
            .company-text {
                padding: 0 0.35rem;
                min-height: auto;
                max-width: 980px;
            }
            .company-text p {
                font-size: 1.08rem;
                line-height: 1.8;
                text-align: center;
                margin-bottom: 0.9rem;
                letter-spacing: 0.01em;
            }
        }

        /* --- 断点: ≤820px (iPad 竖屏以下切换汉堡菜单) --- */
        @media (max-width: 820px) {
            .navbar {
                flex-wrap: wrap;
                justify-content: space-between;
                padding: 14px 5%;
            }
            .menu-toggle { display: flex; }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                margin-left: 0;
                padding-top: 8px;
                border-top: 1px solid rgba(232, 230, 225, 0.12);
            }
            .nav-links.open { display: flex; }
            .nav-links a {
                width: 100%;
                padding: 10px 0;
                font-size: 1rem;
            }
            .company-text p {
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
            .recruit-content {
                padding: 40px 32px;
            }
            .recruit-content p {
                font-size: 1.25rem;
            }
        }

        /* --- 断点: ≤800px --- */
        @media (max-width: 800px) {
            #games { padding: 50px 5% 60px; }
            .featured-wrap { gap: 50px; margin-bottom: 40px; }
            .featured-img { flex: 0 0 400px; }
            .featured-text h3 { font-size: 2.6rem; }
            .featured-text p { font-size: 1rem; }
            .sub-section-title { font-size: 2.2rem; padding-top: 16px; }
            .news-grid { gap: 16px; }
            .showcase-wrapper { gap: 20px; }
            .game-thumbnails { width: 110px; gap: 20px; }
        }

        /* --- 断点: ≤768px --- */
        @media (max-width: 768px) {
            .contact-title-main { font-size: 2rem; }
            .social-icon-row { gap: 14px; justify-content: center; }
            .social-icon-block { width: 56px; height: 56px; }
            .social-icon-block img { width: 32px; height: 32px; }
        }

        /* --- iPad 竖屏适配 (768px–1024px) --- */
        @media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
            .hero-swiper { height: 90vh; }
            .centered-logo {
                width: min(500px, 70vw);
                max-height: 200px;
            }
            .slide-content-centered h2 {
                font-size: clamp(2.8rem, 5.5vw, 4rem);
            }
            .slide-content-centered p {
                font-size: 1.1rem;
            }
            .showcase-wrapper { display: block; }
            .showcase-main { display: block; width: 100%; }
            .showcase-video { width: 100%; height: auto; min-height: 380px; object-fit: cover; background: #000; }
            .game-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; width: 100%; margin-top: 16px; }
            .thumb-card { width: 100%; height: 90px; border-width: 2px; }
            .company-text {
                padding: 2rem 2rem;
                max-width: 90%;
            }
            .company-text p {
                font-size: 1.4rem;
                max-width: 700px;
                margin: 0 auto 1rem;
            }
            #company {
                padding-top: 100px;
                padding-bottom: 80px;
                min-height: auto;
            }
            .recruit-box { min-height: 440px; }
            .recruit-content { padding: 48px 40px; }
            .recruit-content h3 { font-size: 2rem; }
            .recruit-content h4 { font-size: 1.8rem; }
            .recruit-content p { font-size: 1.3rem; }
            .contact-title-main { font-size: 2.4rem; }
            .section-title { font-size: 2.4rem; }
            .footer-logo { width: 160px; }
        }
        @media (min-width: 1024px) and (max-width: 1194px) and (orientation: landscape) {
            /* iPad 横屏微调 (1024–1194 涵盖 Pro 12.9"/11"/Air) */
            .centered-logo {
                width: min(520px, 50vw);
                max-height: 220px;
            }
            .showcase-wrapper { display: block; }
            .showcase-main { display: block; width: 100%; }
            .showcase-video { width: 100%; height: auto; min-height: 400px; object-fit: cover; background: #000; }
            .game-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; width: 100%; margin-top: 18px; }
            .thumb-card { width: 100%; height: 100px; border-width: 2px; }
            .company-text {
                padding: 3rem;
                max-width: 85%;
            }
            .company-text p {
                font-size: 1.5rem;
            }
        }

        /* --- 断点: ≤700px (移动端核心适配) --- */
        @media (max-width: 700px) {
            /* 关于我们 */
            #company {
                padding-top: 40px !important;
                padding-bottom: 48px;
            }
            .company-text {
                padding: 0 0.85rem 0.35rem;
                min-height: auto;
                max-width: 100%;
            }
            .company-text p {
                font-size: 1.5rem;
                font-family: var(--font-weiruan);
                font-weight: 200;
                letter-spacing: 1px;
                line-height: 1.7;
                text-align: left;
                text-align-last: left;
                width: 100%;
                max-width: 320px;
                margin: 0 auto 160px;
                display: block;
            }

            /* Hero */
            .hero-swiper {
                height: 100svh;
                min-height: 520px;
            }
            .logo-img { height: 36px; }
            .centered-logo {
                max-width: 70%;
                max-height: 170px;
                margin-bottom: 0.1rem;
            }
            .slide-content-centered h2 {
                margin-bottom: 0.6rem;
                line-height: 1.5;
            }
            .slide-content-centered p {
                font-size: 0.95rem;
                line-height: 1.5;
                margin-top: 0.2rem;
                padding: 0.08rem 0.7rem;
            }
            .slide-bg-2 .slide-content-centered {
                margin-top: -30px;
            }
            .slide-bg-3 .slide-content-centered {
                margin-top: -25px;
            }
            .slide-bg-2 .slide-content-centered p {
                margin-top: 0.4rem;
            }
            .detail-link {
                margin-top: 0.15rem;
                padding: 0 5px;
                gap: 2.5px;
            }
            .detail-text { font-size: 0.92rem; }

            /* 新增板块（移动端） */
            #games { padding: 30px 5% 36px; opacity: 1 !important; transform: none !important; }
            .featured-wrap { flex-direction: row; gap: 16px; margin-bottom: 16px; }
            .featured-img { flex: 0 0 45%; max-width: 45%; }
            .featured-img img { max-width: 100%; max-height: 200px; object-fit: contain; }
            .featured-text { max-height: 200px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
            .featured-text h3 { font-size: 2rem; }
            .featured-text p { font-size: 1rem; text-indent: 2em; }
            .featured-text br { display: none; }
            .content-center .sub-section-title,
            .latest-news .sub-section-title { font-size: 1.8rem; padding-top: 0; margin: 25px 0 !important; }
            .section-divider { margin: 6px auto; }
            .news-grid { grid-template-columns: 1fr; gap: 12px; }
            .news-img { aspect-ratio: 4 / 3; max-height: 180px; }
            .news-img img { object-position: center top; }
            .news-card:nth-child(1) .news-img img { height: 100% !important; object-fit: cover !important; object-position: center 75% !important; }
            .news-card:nth-child(3) .news-img img { height: 100% !important; object-fit: cover !important; object-position: center 50% !important; }
            .news-info { padding: 10px 12px 14px; }
            .news-info h4 { font-size: 1.1rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
            .news-info p { font-size: 0.85rem; }
            .showcase-wrapper {
                display: block;
                width: 100%;
            }
            .showcase-main {
                display: block;
                width: 100%;
            }
            .showcase-video {
                display: block;
                width: 100%;
                height: auto;
                min-height: 200px;
                object-fit: cover;
                background: #000;
            }
            .game-thumbnails {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 6px;
                width: 100%;
                margin-top: 10px;
            }
            .thumb-card {
                width: 100%;
                height: 55px;
                border-width: 2px;
            }
            .thumb-img {
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }
            .thumb-card.active { border-color: var(--color-gold); }

            /* 加入我们 */
            #team {
                padding-top: 40px;
                background: linear-gradient(rgba(5,7,10,0.55),rgba(5,7,10,0.55)),url('../images/bg7.webp') center/cover no-repeat !important;
            }
            .recruit-box {
                flex-direction: column;
                min-height: auto;
                background: transparent !important;
            }
            .recruit-box,
            .recruit-content {
                background: transparent !important;
                box-shadow: none !important;
            }
            .recruit-box,
            .recruit-img,
            .recruit-img-bg,
            .recruit-content {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                filter: none !important;
                opacity: 1 !important;
            }
            .recruit-img {
                clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
                height: 300px;
                background: transparent !important;
            }
            .recruit-img-bg { background: transparent !important; }
            .recruit-content {
                padding: 32px 18px;
                padding-top: 0px !important;
                padding-bottom: 50px !important;
                text-align: center;
                align-items: center;
                min-height: auto;
                justify-content: flex-start;
            }
            .recruit-content h3,
            .recruit-content h4 {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
                font-weight: 500;
            }
            .recruit-content h3 { font-size: 2rem; }
            .recruit-content h4 {
                font-size: 1.7rem;
                line-height: 1.5;
                letter-spacing: 0.04em;
            }
            .recruit-content p {
                font-size: 1.2rem;
                color: #FFF2CC;
                font-family: var(--font-weiruan);
                font-weight: 200;
                letter-spacing: 1px;
                line-height: 1.7;
                text-align: left;
                text-align-last: left;
                width: 100%;
                max-width: 320px;
                margin: 10px auto 16px;
                display: block;
                filter: none !important;
            }
            .recruit-btn {
                margin: 30px auto;
                padding: 8px 18px;
                font-size: 1rem;
                min-width: 60px;
            }

            /* 页脚 */
            .footer-main { align-items: flex-start; }
            .footer-brand { justify-content: flex-start; }
            .footer-info { width: 100%; }
            .footer-logo {
                width: 70%;
                max-width: 180px;
                margin-left: -6px;
                margin-bottom: -12px;
            }
            .detail-link { padding: 8px 22px; gap: 8px; }
            .detail-text { font-size: 1rem; }
            .detail-icon { width: 20px; height: 20px; }
            .social-icon-block { width: 44px; height: 44px; }
            .social-icon-block img { width: 24px; height: 24px; }
            .social-icon-row { gap: 10px; }
            .social-icon-row a:first-of-type .social-icon-block img { width: 18px; height: 18px; }
            .social-icon-row a:nth-of-type(2) .social-icon-block img { width: 30px; height: 30px; }
        }

        /* --- 断点: ≤400px (极小屏) --- */
        @media (max-width: 400px) {
            .navbar { padding: 10px 4%; }
            .logo-img { height: 30px; }
            .centered-logo {
                max-width: 88%;
                max-height: 140px;
            }
            .slide-content-centered h2 {
                font-size: clamp(1.6rem, 8vw, 2.2rem);
            }
            .slide-content-centered p {
                font-size: 0.85rem;
                padding: 0.05rem 0.5rem;
            }
            .detail-text { font-size: 0.85rem; }
            .detail-icon { width: 16px; height: 16px; }
            .company-text p { font-size: 1.2rem; max-width: 280px; }
            .recruit-content h3 { font-size: 1.6rem; }
            .recruit-content h4 { font-size: 1.4rem; }
            .recruit-content p { font-size: 1rem; max-width: 280px; }
            .contact-title-main { font-size: 1.6rem; }
            .social-icon-block { width: 46px; height: 46px; }
            .social-icon-block img { width: 26px; height: 26px; }
            .footer-logo { width: 60%; max-width: 140px; }
            .game-thumbnails { gap: 4px; }
            .thumb-card { height: 48px; border-width: 1.5px; }
            .section-title { font-size: 1.6rem; }
            .social-icon-block { width: 40px; height: 40px; }
            .social-icon-block img { width: 22px; height: 22px; }
            .social-icon-row { gap: 10px; }
            .license, .license a { font-size: 0.6rem; }
            .qrcode-card { padding: 1.2rem; }
            .qrcode-card img { width: 160px; height: 160px; }
            .recruit-btn { font-size: 0.9rem; padding: 6px 14px; min-width: 50px; }
            #games { padding: 30px 5% 36px; }
            .featured-wrap { gap: 16px; margin-bottom: 20px; }
            .featured-img { flex: none; }
            .featured-text h3 { font-size: 1.5rem; }
            .featured-text p { font-size: 0.9rem; }
            .sub-section-title { font-size: 1.5rem; padding-top: 10px; }
            .news-grid { gap: 12px; }
            .news-info { padding: 12px 14px 16px; }
        }
