/** Shopify CDN: Minification failed

Line 872:10 Expected "}" to go with "{"

**/

 
 * {
         margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        :root {
            --primary-black: #000000;
            --accent-yellow: #FFD100;
            --light-gray: #f5f5f5;
            --dark-gray: #000000;
            --transition: all 0.3s ease;
        }

            .explorer-program{
            background-color: var(--primary-black);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }


        .container2 {
            background-color: var(--primary-black);
            color: white;
             line-height: 1.6;
            overflow-x: hidden;
            max-width: 1440px !important;
            margin: 0 auto;
            padding: 0 2rem;
            
        }

            .container1 {
            background-color: #0a0a0a;
            color: white;
             line-height: 1.6;
            overflow-x: hidden;
            max-width: 980px !important;
            margin: 0 auto;
            padding: 0 2rem;
            
        }

        /* 通用动画类 */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* 1. 全屏Banner模块 - 核心重构 */
        .hero-banner {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 0;
        }

        /* 媒体卡片 - 交叉倾斜样式 */
        .banner-media {
            position: absolute;
            width: 25%;
            height: 60%;
            border-radius: 8px;
            overflow: hidden;
            z-index: 1;
            filter: brightness(0.7);
            transition: var(--transition);
        }

        /* 上方媒体卡片（左倾斜） */
        .banner-media.top {
            top: 15%;
            left: 15%;
            transform: rotate(-8deg);
        }

        /* 下方媒体卡片（右倾斜） */
        .banner-media.bottom {
            bottom: 10%;
            right: 15%;
            transform: rotate(12deg);
            z-index: 0; /* 层级低于上方卡片 */
        }

        .banner-media:hover {
            filter: brightness(0.9);
            transform: scale(1.02) rotate(var(--rotate, -8deg));
            box-shadow: 0 0 30px rgba(255, 209, 0, 0.3);
        }
        .banner-media.bottom:hover {
            --rotate: 12deg;
        }

        .banner-media video, .banner-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 文字内容层 - 匹配参考图样式 */
        .banner-content {
            text-align: center;
            padding: 0 2rem;
            z-index: 999; /* 文字层级高于视频 */
            max-width: 800px;
            /* 增加文字背景遮罩，提升可读性 */
            
            padding: 3rem;
            border-radius: 8px;
            
        }

        .banner-content h1 {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #ff4b14;
        }

        .banner-content h1 span {
            color: var(--accent-color);
        }

        .banner-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--light-gray);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .banner-content .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: #e04010;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
			box-shadow: 0 10px 20px rgba(255, 75, 20, 0.2);
			
        }

        .banner-content .btn:hover {
            background-color: #e04010;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 75, 20, 0.2);
        }

        /* 装饰文字：Create / Share Earn! */
        .decor-text {
            position: absolute;
            color: var(--accent-yellow);
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            font-style: italic;
        }

        .decor-text.create {
            top: -30px;
            right: 20%;
        }

        .decor-text.share {
            bottom: 80px;
            left: 15%;
        }

        .banner-content h1 {
            font-size: 5rem;
            font-weight: 800;
            margin-bottom: 3rem;
            line-height: 1.1;
            text-transform: uppercase;
        }

        /* 按钮组 - 竖向排列，匹配参考图 */
        .banner-buttons {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
        }

        .banner-content .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: #FF4B14;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
        }

        .banner-content .btn:hover {
            background-color: #e04010;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 75, 20, 0.2);
        }

        /* 黄色Apply Now按钮 */
        .btn-primary {
            background-color: var(--accent-yellow);
            color: var(--primary-black);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 209, 0, 0.4);
        }

        /* 白色Check Status按钮 */
        .btn-secondary {
            background-color: white;
            color: var(--primary-black);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }

/* 8个视频 - 整合重复样式，修复语法错误 */
.video-gallery-shopify {
  background: #000;
  box-sizing: border-box;
}

.video-grid-shopify {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  contain: layout paint; /* Shopify性能优化：避免重排 */
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* 合并重复的.video-card-shopify样式，修复box-shadow语法错误 */
.video-card-shopify {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16; /* 强制9:16竖屏比例 */
  background-color:rgb(255, 255, 255);
  border: 2px solidrgb(43, 43, 43);
  /* 修复：0 0 30pxrgb(...) 少空格导致样式失效 */
  box-shadow: 0 0 5px rgb(255, 255, 255), 
              0 0 10px rgb(255, 255, 255);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateY(0);
  /* 硬件加速 */
  transform: translateZ(0);
  will-change: transform;
}

/* 运动风格悬停效果 */
.video-card-shopify:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 25px rgb(249, 249, 249), 
              0 0 50px rgba(255, 255, 255, 0.3),
              inset 0 0 10px rgba(255, 255, 255, 0.3);
  border-color:rgb(255, 255, 255);
  animation: glowPulse 2s infinite alternate; /* 呼吸灯效果 */
}

/* 发光呼吸动画 */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 
                0 0 30px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3), 
                0 0 50px rgba(255, 255, 255, 0.3),
                inset 0 0 15px rgba(255, 255, 255, 0.3);
  }
}

/* 响应式适配 */
@media (max-width: 1024px) {
  .video-grid-shopify {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .video-grid-shopify {
    grid-template-columns: 1fr;
    gap: 0.8rem; /* 移动端减少渲染压力 */
  }
}

/* 封面图 - Shopify懒加载优化 */
.video-thumb-shopify {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 1px; /* 避免布局抖动 */
}

/* 播放按钮 */
.play-btn-shopify {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: rgba(255,75,20,0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-btn-shopify::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  margin-left: 2px;
}

/* 轻量级弹窗 - 无多余动画 */
.video-modal-shopify {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.98);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.video-modal-shopify.active {
  display: flex;
}

.modal-close-shopify {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video-wrapper {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9/16;
}

.modal-video-shopify {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 8px;
  preload: none; /* Shopify视频优化：禁用预加载 */
}

/* 2. 招募类型导航模块 - 核心优化适配问题 */
        .recruitment-section {
            padding: 2rem 0;
            background-color: #000000;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-top:3rem;
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            color: #ffffff;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #FF4B14;
            margin: 1rem auto 0;
        }

        /* 导航栏滚动容器 - 核心优化 */
        .tabs-scroll-container {
            display: flex;
            justify-content: center;    /* 水平居中 */
            align-items: center;
            overflow-x: auto;
            white-space: nowrap;
            padding: 0.5rem 0;
            margin-bottom: 2rem;
            /* 仅隐藏大屏电脑（>1200px）滚动条，中小屏显示滚动条提示 */
            scrollbar-width: thin;
            scrollbar-color: #ff4b14 transparent;
        }

        /* 大屏电脑（>1200px）隐藏滚动条，中小屏显示 */
        @media (min-width: 1201px) {
            .tabs-scroll-container {
                -ms-overflow-style: none;
                scrollbar-width: none;
            }
            .tabs-scroll-container::-webkit-scrollbar {
                display: none;
            }
        }

        /* 显示Chrome/Safari滚动条（768-1200px + 手机端） */
        @media (max-width: 1200px) {
            .tabs-scroll-container::-webkit-scrollbar {
                height: 6px; /* 横向滚动条高度 */
            }
            .tabs-scroll-container::-webkit-scrollbar-track {
                background: transparent;
            }
            .tabs-scroll-container::-webkit-scrollbar-thumb {
                background-color: var(--accent-yellow);
                border-radius: 3px;
            }
        }

        /* 768-1200px（平板/小屏电脑）：强制横向滚动 + 优化按钮尺寸 */
        @media (min-width: 769px) and (max-width: 1200px) {
            .tabs-scroll-container {
                overflow-x: auto !important; /* 强制横向滚动，避免显示不全 */
            }
            .tab-btn {
                padding: 0.8rem 1.5rem; /* 减小按钮内边距 */
                font-size: 0.9rem; /* 减小字体 */
                margin: 0 0.3rem; /* 减小按钮间距 */
            }
        }

        /* 手机端（<768px）：纵向滚动 + 显示滚动条 + 3个半按钮提示 */
        @media (max-width: 768px) {
            .tabs-scroll-container {
                position: relative; 
                top: 0;
                padding-top: 260px !important; 
                flex-direction: column;
                overflow-y: auto;
                overflow-x: hidden;
                max-height: 180px; /* 调整高度，刚好显示3个完整+1个半按钮 */
                gap: 0.8rem;
                
                border: 1px solid var(--dark-gray);
                border-radius: 8px;
                /* 手机端纵向滚动条样式 */
                scrollbar-width: thin;
                scrollbar-color: #ff4b14 transparent;
            }
            /* 手机端纵向滚动条 */
            .tabs-scroll-container::-webkit-scrollbar {
            
                width: 6px; /* 纵向滚动条宽度 */
                height: auto;
            }
            /* 调整按钮高度，让容器能显示3个半 */
            .tab-btn {
                padding: 0.9rem 3rem;
                margin: 0;
                width: 100%;
                height: 50px; /* 固定按钮高度，精准控制显示数量 */
                display: flex;
                align-items: center;
                justify-content: center;
            }

        }

        /* Tab按钮基础样式 */
        .tab-btn {
            padding: 1rem 1rem;
            background-color: #333333;
            border: none;
            color: white;
            border-radius: 4px;
            font-size:0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin: 0 0.5rem;
            flex-shrink: 0; /* 防止按钮压缩 */
        }

        .tab-btn.active {
            background-color: #FF4B14;
            color: ffffff;
			
        }

        .tab-btn:hover:not(.active) {
            background-color: #FF4B14;
        }

        .tab-content {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .tab-content.active {
            display: grid;
            opacity: 1;
            transform: translateY(0);
        }

        .tab-media {
            border-radius: 8px;
            overflow: hidden;
            height: 400px;
        }

        .tab-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tab-details h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #FF4B14;
        }

        .tab-details .requirements {
            margin-bottom: 1rem;
        }

        .tab-details .requirements h4, .tab-details .rewards h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--dark-gray);
            padding-bottom: 0.5rem;
            color: #ffffff;
        }

        .tab-details ul {
            list-style: none;
            margin-left: 1rem;
        }

        .tab-details li {
            margin-bottom: 0.8rem;
            position: relative;
        }

        .tab-details li::before {
            content: '•';
            color: #FF4B14;
            position: absolute;
            left: -1rem;
        }

    

       /* 4. 项目流程模块 */
        .process-section {
            padding:  0;
        }

        .container3 {
            background-color: var(--primary-black);
           
             line-height: 1.6;
            overflow-x: hidden;
            max-width: 1440px !important;
            margin: 0 auto;
            padding: 0 2rem;
            overflow-y: hidden;
            
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .process-step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -1rem;
            width: 2rem;
            height: 2px;
            background-color: #ff4b14;
            transform: translateY(-50%);
            display: none;
        }

        @media (min-width: 768px) {
            .process-step::after {
                display: block;
            }
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background-color: #ff4b14;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: var(--transition);
            color: var(--primary-black);
        }

        .process-step:hover .step-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 20px rgba(255, 209, 0, 0.4);
        }

        .process-step h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color:#ffffff;
        }

        .process-step p {
            color: var(--light-gray);
        }


        /* 5. FAQ模块（保留原有样式） */
        .faq-section {
            padding: 1rem 0;
            background-color: #000000;
            max-width: 1000px !important;
            margin: 0 auto;


        }

        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--dark-gray);
        }

        .faq-question {
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .faq-answer {
            padding: 0 0 1.5rem;
            max-height: 0;
            overflow: visible !important;
            transition: max-height 0.3s ease;
            color: var(--light-gray);
            margin-bottom:10px;
        }

       /* .faq-answer.active {
            max-height: 500px;
        }

        .faq-icon {
            color: #ff4b14;
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .faq-icon.active {
            transform: rotate(180deg);
        }*/

        /* 响应式适配 - 核心匹配参考图手机端样式 */
        @media (max-width: 1200px) {
            .banner-content h1 {
                font-size: 3.5rem;
            }
            .banner-media {
                width: 45%;
                height: 60%;
            }

            /* 视频网格：平板端改为2列 */
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            /* 手机端Banner完全匹配参考图 */
            .hero-banner {
                height: 100vh;
                padding: 1rem 0;
            }

            .faq-question {
            padding: 0 6px;
            }

            .faq-answer {
            
            max-height: 500px;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0;
            color: #e0e0e0;
            line-height: 1.7; /* 移动端加大行高，提升可读性 */
            font-size: clamp(0.9rem, 3.5vw, 1rem);
            padding-left: 5px;
            padding-right:5px;
        }

            /* 手机端媒体卡片尺寸/位置微调 */
            .banner-media {
                width: 60%;
                height: 55%;
            }
            .banner-media.top {
                top: 0%;
                left: 15%;
                transform: rotate(-6deg);
            }
            .banner-media.bottom {
                bottom: 0%;
                right:15%;
                transform: rotate(8deg);
            }

            /* 手机端文字样式适配 */
           .banner-content {
                order: 2;
                margin: 2rem 0;
                padding: 2rem;
            }
            .banner-content h1 {
                font-size: 2.5rem;
            }
            /* 装饰文字位置微调 */
            .decor-text {
                font-size: 1.2rem;
            }
            .decor-text.create {
                top: -20px;
                right: 10%;
            }
            .decor-text.share {
                bottom: 60px;
                left: 8%;
            }

            /* 手机端按钮适配 */
            .banner-content .btn {
			background-color: #e04010;
                padding: 1rem 3rem;
                max-width: 280px;
                font-size: 1rem;
            }

            /* 其余模块响应式不变 */
            .tab-content {
                grid-template-columns: 1fr;
            }
            .tab-media {
                height: 300px;
            }
            .process-steps {
                flex-direction: column;
            }
            .process-step::after {
                display: none;
            }

            /* 视频模块手机端适配 */
            .video-section-title {
                font-size: 2rem;
            }
            .video-grid {
                grid-template-columns: 1fr; /* 手机端单列 */
                gap: 1.5rem;
            }
            .video-card {
                max-width: 300px;
                margin: 0 auto;
            }
            .modal-content {
                max-width: 90%;
            }
        }

        /* 超小屏适配（iPhone SE/小屏手机） */
        @media (max-width: 480px) {
            .banner-content h1 {
                font-size: 2.5rem;
            }
            .banner-media {
                width: 70%;
                height: 45%;
            }
            .decor-text {
                font-size: 1rem;
            }
            .banner-content .btn {
                max-width: 240px;
                padding: 0.8rem 2rem;
            }

  /*FAQ */