/* ===================================================================
   EVER777 V2 - 全新设计版本
   现代炫酷风格：霓虹蓝绿色 + 动态背景 + 玻璃态效果
=================================================================== */

/* ========= 全局基础变量 ========= */
:root {
    /* 主色调 - 霓虹蓝绿色系 */
    --primary-neon: #00ffd5;              /* 主霓虹色 */
    --secondary-neon: #00d4ff;            /* 次霓虹色 */
    --accent-purple: #b400ff;             /* 紫色强调 */
    --accent-pink: #ff00d4;                /* 粉色强调 */
    
    /* 背景色 */
    --bg-dark: #0a0a1a;                    /* 深色背景 */
    --bg-card: rgba(10, 20, 40, 0.6);     /* 卡片背景 */
    --bg-glass: rgba(255, 255, 255, 0.05); /* 玻璃态背景 */
    
    /* 文字颜色 */
    --text-primary: #ffffff;
    --text-secondary: #ffffff;  /* 改为白色 */
    --text-neon: #00ffd5;
    
    /* 边框和发光 */
    --border-neon: rgba(0, 255, 213, 0.3);
    --glow-neon: rgba(0, 255, 213, 0.5);
    --glow-strong: rgba(0, 255, 213, 0.8);
}

/* ========= 页面基础样式 ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: "Source Sans Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
}

/* ========= 动态背景特效 ========= */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 213, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(180, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #1a0a2a 50%, #0a1a2a 100%);
    background-size: 100% 100%;
    z-index: -2;
    animation: bgShift 20s ease-in-out infinite;
    /* GPU加速优化 */
    transform: translateZ(0);
    will-change: opacity;
    backface-visibility: hidden;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 213, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 213, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    /* GPU加速优化 */
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes bgShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes gridMove {
    0% { transform: translateZ(0) translate(0, 0); }
    100% { transform: translateZ(0) translate(50px, 50px); }
}

/* ========= 自定义滚动条 ========= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 26, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-neon) 0%, var(--secondary-neon) 100%);
    border-radius: 5px;
    box-shadow: 0 0 10px var(--glow-neon);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-neon) 0%, var(--primary-neon) 100%);
    box-shadow: 0 0 15px var(--glow-strong);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-neon) rgba(10, 10, 26, 0.5);
}

/* ========= 主容器 ========= */
#my-page-wrapper {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

/* ========= HERO 区域 - 全新设计 ========= */
.hero-section {
    position: relative;
    padding: 100px 20px 80px;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 213, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-aurora {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-neon), transparent, var(--accent-purple), transparent);
    opacity: 0.1;
    animation: rotateAurora 30s linear infinite;
    z-index: 0;
}

@keyframes rotateAurora {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-logo {
    width: var(--logo-size, 200px);
    height: var(--logo-size, 200px);
    object-fit: cover;
    box-shadow:
        rgba(0, 240, 255, 0.6) 0px 0px 25px,
        rgba(0, 240, 255, 0.4) 0px 0px 45px,
        rgba(0, 240, 255, 0.25) 0px 0px 70px;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 100%;
    transition: 0.3s;
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--secondary-neon) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-neon);
    letter-spacing: 5px;
    animation: titleShine 3s ease-in-out infinite;
    position: relative;
}

.hero-title::after {
    content: "EVER777";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shineMove 3s linear infinite;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

@keyframes shineMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-sub {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-neon);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--glow-neon);
    font-weight: 600;
}

.hero-desc {
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-link-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-link-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--bg-glass);
    border: 2px solid var(--border-neon);
    border-radius: 30px;
    color: var(--text-neon);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 213, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-link-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 213, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--glow-strong);
    border-color: var(--primary-neon);
}

.hero-link-btn:hover::before {
    left: 100%;
}

/* ========= 动态横条 - 全新设计 ========= */
.blue-divider {
    position: relative;
    width: 92vw;
    max-width: 92vw;
    height: 4px;
    margin: 40px auto;
    margin-left: calc(50% - 46vw);
    margin-right: calc(50% - 46vw);
    border-radius: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--primary-neon) 20%,
        var(--secondary-neon) 50%,
        var(--primary-neon) 80%,
        transparent 100%
    );
    overflow: visible;
    box-shadow:
        0 0 20px var(--glow-neon),
        0 0 40px var(--glow-neon),
        0 0 60px rgba(0, 255, 213, 0.3);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { 
        opacity: 0.8;
        box-shadow: 
            0 0 20px var(--glow-neon),
            0 0 40px var(--glow-neon),
            0 0 60px rgba(0, 255, 213, 0.3);
    }
    50% { 
        opacity: 1;
        box-shadow: 
            0 0 30px var(--glow-strong),
            0 0 60px var(--glow-strong),
            0 0 90px rgba(0, 255, 213, 0.5);
    }
}

.blue-divider::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 50%;
    height: 8px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.8) 60%,
        transparent 100%
    );
    filter: blur(4px);  /* 减少模糊值，降低性能开销 */
    animation: ledRun 2s linear infinite;
    /* GPU加速优化 */
    transform: translateZ(0) translateX(-50%);
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes ledRun {
    0% { transform: translateZ(0) translateX(-50%); }
    100% { transform: translateZ(0) translateX(150%); }
}

/* ========= 内容区块 - 玻璃态卡片设计 ========= */
.section-dark {
    position: relative;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--glow-neon);
    position: relative;
}

.section-title .ever777-text,
.featured-title .ever777-text,
.info-title .ever777-text {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 5%, #FFD700 5%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-left {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon);
    border-radius: 20px;
    padding: 40px 35px;  /* 增加左右内边距，确保文字不被盖住 */
    margin-bottom: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 213, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;  /* 改为visible，确保文字不被裁剪 */
    min-height: fit-content;  /* 确保高度自适应内容 */
}

.card-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    animation: borderShine 3s linear infinite;
}

@keyframes borderShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.card-left:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px var(--glow-neon);
    border-color: var(--primary-neon);
}

/* ========= 链接样式 - 霓虹效果 ========= */
.clean-links-under {
    margin-top: 30px;
    padding-left: 0;
    list-style: none;
}

.clean-links-under li {
    margin: 15px 0;
    white-space: nowrap;
}

.clean-links-under li a {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    text-shadow:
        0 0 10px var(--glow-neon),
        0 0 20px var(--glow-neon),
        0 0 30px rgba(0, 255, 213, 0.5);
    animation: linkGlow 2s ease-in-out infinite;
}

@keyframes linkGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px var(--glow-neon),
            0 0 20px var(--glow-neon),
            0 0 30px rgba(0, 255, 213, 0.5);
    }
    50% { 
        text-shadow: 
            0 0 15px var(--glow-strong),
            0 0 30px var(--glow-strong),
            0 0 45px rgba(0, 255, 213, 0.8);
    }
}

.clean-links-under li a::before {
    content: "→";
    margin-right: 10px;
    color: var(--primary-neon);
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

.clean-links-under li a:hover {
    color: var(--primary-neon);
    transform: translateX(10px);
}

.clean-links-under .desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 30px;
    white-space: normal;
}

/* ========= 按钮样式 ========= */
.feature-btn, .vip-btn, .spin-support-btn {
    display: block;
    padding: 8px 15px;
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--secondary-neon) 100%);
    border: none;
    border-radius: 15px;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 255, 213, 0.4);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.feature-btn::before, .vip-btn::before, .spin-support-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.feature-btn:hover, .vip-btn:hover, .spin-support-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 20px var(--glow-strong);
}

.feature-btn:hover::before, .vip-btn:hover::before, .spin-support-btn:hover::before {
    left: 100%;
}

/* ========= 卡片网格布局 ========= */
.featured-title, .special-title, .vip-title, .vip-selected-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card, .feature-card-1, .special-card, .vip-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 320px;  /* 统一最小高度，确保所有卡片一样高 */
    height: auto;
}

.feature-card::before, .feature-card-1::before, .special-card::before, .vip-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 213, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover, .feature-card-1:hover, .special-card:hover, .vip-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--primary-neon);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.3),
        0 0 20px var(--glow-neon);
}

.feature-card:hover::before, .feature-card-1:hover::before, .special-card:hover::before, .vip-card:hover::before {
    opacity: 1;
}

.feature-card img, .feature-card-1 img, .special-card img, .vip-card img {
    width: 100%;
    height: 180px;  /* 固定高度，确保所有图标一样大 */
    object-fit: cover;     /* 填充但不变形，保持比例 */
    border-radius: 8px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    display: block;
    background: rgba(0, 0, 0, 0.2);  /* 背景色，防止空白 */
}

.feature-card:hover img, .special-card:hover img, .vip-card:hover img {
    transform: scale(1.03);
}

.feature-card h3, .feature-card-1 h3, .special-card h3, .vip-card h3 {
    color: var(--text-neon);  /* 统一使用霓虹色 */
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.feature-card p, .feature-card-1 p, .special-card p, .vip-card p {
    color: var(--text-secondary);  /* 统一使用次要文字颜色 */
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;
    text-align: center;
}

/* ========= Info Box - 玻璃态设计 ========= */
.info-box {
    position: relative;
    margin: 40px auto;
    padding: 50px 40px;
    max-width: 1200px;
    border-radius: 25px;
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-neon);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 213, 0.1);
    overflow: hidden;  /* 保持 hidden，让羽化效果在框内 */
    /* 优化性能，减少重绘 */
    transform: translateZ(0);  /* 启用GPU加速 */
    will-change: auto;
}

.info-box::before {
    content: "";
    position: absolute;
    top: 0;  /* 保持在框内，不超出 */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-neon), var(--accent-purple), var(--primary-neon));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.15;
    /* 优化性能：移除filter: blur，改用box-shadow实现羽化效果，避免性能问题 */
    box-shadow: 
        inset 0 0 20px rgba(0, 200, 255, 0.4),   /* 内层羽化 */
        inset 0 0 40px rgba(0, 200, 255, 0.3),   /* 中层羽化 */
        inset 0 0 60px rgba(0, 200, 255, 0.2);   /* 外层羽化 */
    /* GPU加速优化 - 只优化transform，移除filter优化 */
    transform: translateZ(0);
    will-change: transform;  /* 只优化transform，避免filter导致的性能问题 */
    backface-visibility: hidden;  /* 防止闪烁 */
    isolation: isolate;  /* 创建新的层叠上下文，优化渲染 */
}


.info-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.info-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.spin-support-block {
    background: linear-gradient(135deg, rgba(0, 255, 213, 0.1) 0%, rgba(180, 0, 255, 0.1) 100%);
    border: 1px solid var(--border-neon);
    border-radius: 20px;
    padding: 40px 30px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 213, 0.2);
}

.support-line1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-neon);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--glow-neon);
}

.support-line2 {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ========= 响应式设计 ========= */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 60px 15px 40px;
    }
    
    .hero-brand-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .card-left {
        padding: 25px;
    }
    
    .info-box {
        padding: 30px 20px;
    }
    
    .blue-divider {
        width: calc(100vw - 30px);
        margin-left: calc(50% - 50vw + 15px);
        margin-right: calc(50% - 50vw + 15px);
    }
    
    /* 八瓣圆形布局响应式 */
    .scroller-2 {
        width: 350px;
        height: 350px;
    }
    
    .scroller-2-item {
        width: 70px;
        height: 70px;
        margin-left: -35px;
        margin-top: -35px;
    }
    
    /* 更新响应式中的位置和动画 */
    .scroller-2-item:nth-child(1) {
        transform: translate(0, -140px);
        animation: item1RotateOpacityMobile 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(2) {
        transform: translate(99px, -99px);
        animation: item2RotateOpacityMobile 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(3) {
        transform: translate(140px, 0);
        animation: item3RotateOpacityMobile 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(4) {
        transform: translate(99px, 99px);
        animation: item4RotateOpacityMobile 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(5) {
        transform: translate(0, 140px);
        animation: item5RotateOpacityMobile 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(6) {
        transform: translate(-99px, 99px);
        animation: item6RotateOpacityMobile 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(7) {
        transform: translate(-140px, 0);
        animation: item7RotateOpacityMobile 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(8) {
        transform: translate(-99px, -99px);
        animation: item8RotateOpacityMobile 40s linear infinite;
    }
    
    /* 响应式动画（使用较小的半径） */
    @keyframes item1RotateOpacityMobile {
        0% { transform: translate(0, -140px) rotate(0deg); opacity: 1; }
        12.5% { transform: translate(0, -140px) rotate(-45deg); opacity: 1; }
        25% { transform: translate(0, -140px) rotate(-90deg); opacity: 0.5; }
        37.5% { transform: translate(0, -140px) rotate(-135deg); opacity: 0.3; }
        100% { transform: translate(0, -140px) rotate(-360deg); opacity: 0.2; }
    }
    
    @keyframes item2RotateOpacityMobile {
        0% { transform: translate(99px, -99px) rotate(0deg); opacity: 0.2; }
        12.5% { transform: translate(99px, -99px) rotate(-45deg); opacity: 0.5; }
        25% { transform: translate(99px, -99px) rotate(-90deg); opacity: 1; }
        37.5% { transform: translate(99px, -99px) rotate(-135deg); opacity: 0.5; }
        50% { transform: translate(99px, -99px) rotate(-180deg); opacity: 0.3; }
        100% { transform: translate(99px, -99px) rotate(-360deg); opacity: 0.2; }
    }
    
    @keyframes item3RotateOpacityMobile {
        0% { transform: translate(140px, 0) rotate(0deg); opacity: 0.2; }
        25% { transform: translate(140px, 0) rotate(-90deg); opacity: 0.5; }
        37.5% { transform: translate(140px, 0) rotate(-135deg); opacity: 1; }
        50% { transform: translate(140px, 0) rotate(-180deg); opacity: 0.5; }
        62.5% { transform: translate(140px, 0) rotate(-225deg); opacity: 0.3; }
        100% { transform: translate(140px, 0) rotate(-360deg); opacity: 0.2; }
    }
    
    @keyframes item4RotateOpacityMobile {
        0% { transform: translate(99px, 99px) rotate(0deg); opacity: 0.2; }
        37.5% { transform: translate(99px, 99px) rotate(-135deg); opacity: 0.5; }
        50% { transform: translate(99px, 99px) rotate(-180deg); opacity: 1; }
        62.5% { transform: translate(99px, 99px) rotate(-225deg); opacity: 0.5; }
        75% { transform: translate(99px, 99px) rotate(-270deg); opacity: 0.3; }
        100% { transform: translate(99px, 99px) rotate(-360deg); opacity: 0.2; }
    }
    
    @keyframes item5RotateOpacityMobile {
        0% { transform: translate(0, 140px) rotate(0deg); opacity: 0.2; }
        50% { transform: translate(0, 140px) rotate(-180deg); opacity: 0.5; }
        62.5% { transform: translate(0, 140px) rotate(-225deg); opacity: 1; }
        75% { transform: translate(0, 140px) rotate(-270deg); opacity: 0.5; }
        87.5% { transform: translate(0, 140px) rotate(-315deg); opacity: 0.3; }
        100% { transform: translate(0, 140px) rotate(-360deg); opacity: 0.2; }
    }
    
    @keyframes item6RotateOpacityMobile {
        0% { transform: translate(-99px, 99px) rotate(0deg); opacity: 0.2; }
        62.5% { transform: translate(-99px, 99px) rotate(-225deg); opacity: 0.5; }
        75% { transform: translate(-99px, 99px) rotate(-270deg); opacity: 1; }
        87.5% { transform: translate(-99px, 99px) rotate(-315deg); opacity: 0.5; }
        100% { transform: translate(-99px, 99px) rotate(-360deg); opacity: 0.3; }
    }
    
    @keyframes item7RotateOpacityMobile {
        0% { transform: translate(-140px, 0) rotate(0deg); opacity: 0.2; }
        75% { transform: translate(-140px, 0) rotate(-270deg); opacity: 0.5; }
        87.5% { transform: translate(-140px, 0) rotate(-315deg); opacity: 1; }
        100% { transform: translate(-140px, 0) rotate(-360deg); opacity: 0.5; }
    }
    
    @keyframes item8RotateOpacityMobile {
        0% { transform: translate(-99px, -99px) rotate(0deg); opacity: 0.3; }
        87.5% { transform: translate(-99px, -99px) rotate(-315deg); opacity: 0.5; }
        100% { transform: translate(-99px, -99px) rotate(-360deg); opacity: 1; }
    }
    
    .scroller-2-item:hover {
        transform: scale(1.3) !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 48px;
    }
    
    .card-left {
        padding: 20px;
    }
    
    .blue-divider {
        width: calc(100vw - 20px);
        margin-left: calc(50% - 50vw + 10px);
        margin-right: calc(50% - 50vw + 10px);
    }
    
    /* 八瓣圆形布局小屏幕响应式 */
    .scroller-2 {
        width: 300px;
        height: 300px;
    }
    
    .scroller-2-item {
        width: 60px;
        height: 60px;
        margin-left: -30px;
        margin-top: -30px;
    }
    
    /* 更新手机端的位置和动画 */
    .scroller-2-item:nth-child(1) {
        transform: translate(0, -120px);
        animation: item1RotateOpacitySmall 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(2) {
        transform: translate(85px, -85px);
        animation: item2RotateOpacitySmall 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(3) {
        transform: translate(120px, 0);
        animation: item3RotateOpacitySmall 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(4) {
        transform: translate(85px, 85px);
        animation: item4RotateOpacitySmall 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(5) {
        transform: translate(0, 120px);
        animation: item5RotateOpacitySmall 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(6) {
        transform: translate(-85px, 85px);
        animation: item6RotateOpacitySmall 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(7) {
        transform: translate(-120px, 0);
        animation: item7RotateOpacitySmall 40s linear infinite;
    }
    
    .scroller-2-item:nth-child(8) {
        transform: translate(-85px, -85px);
        animation: item8RotateOpacitySmall 40s linear infinite;
    }
    
    /* 手机端动画（使用更小的半径） */
    @keyframes item1RotateOpacitySmall {
        0% { transform: translate(0, -120px) rotate(0deg); opacity: 1; }
        12.5% { transform: translate(0, -120px) rotate(-45deg); opacity: 1; }
        25% { transform: translate(0, -120px) rotate(-90deg); opacity: 0.5; }
        37.5% { transform: translate(0, -120px) rotate(-135deg); opacity: 0.3; }
        100% { transform: translate(0, -120px) rotate(-360deg); opacity: 0.2; }
    }
    
    @keyframes item2RotateOpacitySmall {
        0% { transform: translate(85px, -85px) rotate(0deg); opacity: 0.2; }
        12.5% { transform: translate(85px, -85px) rotate(-45deg); opacity: 0.5; }
        25% { transform: translate(85px, -85px) rotate(-90deg); opacity: 1; }
        37.5% { transform: translate(85px, -85px) rotate(-135deg); opacity: 0.5; }
        50% { transform: translate(85px, -85px) rotate(-180deg); opacity: 0.3; }
        100% { transform: translate(85px, -85px) rotate(-360deg); opacity: 0.2; }
    }
    
    @keyframes item3RotateOpacitySmall {
        0% { transform: translate(120px, 0) rotate(0deg); opacity: 0.2; }
        25% { transform: translate(120px, 0) rotate(-90deg); opacity: 0.5; }
        37.5% { transform: translate(120px, 0) rotate(-135deg); opacity: 1; }
        50% { transform: translate(120px, 0) rotate(-180deg); opacity: 0.5; }
        62.5% { transform: translate(120px, 0) rotate(-225deg); opacity: 0.3; }
        100% { transform: translate(120px, 0) rotate(-360deg); opacity: 0.2; }
    }
    
    @keyframes item4RotateOpacitySmall {
        0% { transform: translate(85px, 85px) rotate(0deg); opacity: 0.2; }
        37.5% { transform: translate(85px, 85px) rotate(-135deg); opacity: 0.5; }
        50% { transform: translate(85px, 85px) rotate(-180deg); opacity: 1; }
        62.5% { transform: translate(85px, 85px) rotate(-225deg); opacity: 0.5; }
        75% { transform: translate(85px, 85px) rotate(-270deg); opacity: 0.3; }
        100% { transform: translate(85px, 85px) rotate(-360deg); opacity: 0.2; }
    }
    
    @keyframes item5RotateOpacitySmall {
        0% { transform: translate(0, 120px) rotate(0deg); opacity: 0.2; }
        50% { transform: translate(0, 120px) rotate(-180deg); opacity: 0.5; }
        62.5% { transform: translate(0, 120px) rotate(-225deg); opacity: 1; }
        75% { transform: translate(0, 120px) rotate(-270deg); opacity: 0.5; }
        87.5% { transform: translate(0, 120px) rotate(-315deg); opacity: 0.3; }
        100% { transform: translate(0, 120px) rotate(-360deg); opacity: 0.2; }
    }
    
    @keyframes item6RotateOpacitySmall {
        0% { transform: translate(-85px, 85px) rotate(0deg); opacity: 0.2; }
        62.5% { transform: translate(-85px, 85px) rotate(-225deg); opacity: 0.5; }
        75% { transform: translate(-85px, 85px) rotate(-270deg); opacity: 1; }
        87.5% { transform: translate(-85px, 85px) rotate(-315deg); opacity: 0.5; }
        100% { transform: translate(-85px, 85px) rotate(-360deg); opacity: 0.3; }
    }
    
    @keyframes item7RotateOpacitySmall {
        0% { transform: translate(-120px, 0) rotate(0deg); opacity: 0.2; }
        75% { transform: translate(-120px, 0) rotate(-270deg); opacity: 0.5; }
        87.5% { transform: translate(-120px, 0) rotate(-315deg); opacity: 1; }
        100% { transform: translate(-120px, 0) rotate(-360deg); opacity: 0.5; }
    }
    
    @keyframes item8RotateOpacitySmall {
        0% { transform: translate(-85px, -85px) rotate(0deg); opacity: 0.3; }
        87.5% { transform: translate(-85px, -85px) rotate(-315deg); opacity: 0.5; }
        100% { transform: translate(-85px, -85px) rotate(-360deg); opacity: 1; }
    }
    
    .scroller-2-item:hover {
        transform: scale(1.3) !important;
    }
}

/* ========= 滚动动画 ========= */
.scroller-item {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 150, 255, 0.3);  /* 基本边框 */
    border-radius: 20px;
    padding: 12px 15px;  /* 增加左右内边距 */
    margin: 8px;  /* 减少外边距 */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;  /* 改为水平布局 */
    align-items: center;  /* 垂直居中 */
    justify-content: flex-start;  /* 图标靠左 */
    gap: 15px;  /* 图标和文字之间的间距 */
    min-width: 0;  /* 允许缩小 */
    font-size: 12px;  /* 减小文字大小 */
    color: var(--text-neon);
    text-shadow: 0 0 8px var(--glow-neon);
    font-weight: 600;
    /* 基本阴影，无向外羽化 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  /* 底部阴影 */
    overflow: hidden;  /* 隐藏溢出内容 */
    position: relative;
}

.scroller-item img {
    width: 80px;  /* 缩小图片尺寸 */
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;  /* 图标不缩小 */
    margin: 0;  /* 移除所有margin */
    order: -1;  /* 确保图标在最左边 */
    background-color: rgba(0, 0, 0, 1);  /* 使用纯黑色背景完全遮盖白色边角 */
    /* 使用多层内阴影遮盖边角的白色斑点 */
    box-shadow: 
        inset 0 0 0 3px rgba(0, 0, 0, 1),     /* 最内层纯黑边框完全遮盖白色 */
        inset 0 0 15px rgba(0, 0, 0, 0.9),     /* 内阴影进一步遮盖 */
        inset 0 0 25px rgba(0, 0, 0, 0.7),     /* 更外层内阴影 */
        0 0 0 1px rgba(0, 150, 255, 0.3);     /* 外层发光边框 */
    box-sizing: border-box;
    position: relative;
    /* 使用滤镜去除白色并增强对比度 */
    filter: contrast(1.2) brightness(0.9) saturate(1.1);
    /* 裁剪图片边缘，确保圆角完美 */
    clip-path: circle(50%);
}

/* 文字居中显示 */
.scroller-item span {
    flex: 1;
    text-align: center;  /* 文字居中 */
    font-size: 12px;
    color: var(--text-neon);
    text-shadow: 0 0 8px var(--glow-neon);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;  /* 文字在剩余空间中居中 */
}


.scroller-item:hover {
    transform: scale(1.05);
    border-color: rgba(0, 200, 255, 0.6);  /* 悬停时增强边框颜色 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);  /* 悬停时增强底部阴影 */
}


/* ========= 补充样式 ========= */
.two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;  /* 左边框更宽，右边框更窄 */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 968px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

/* ========= SECTION 2: 蓝色框和黄色框布局（左右结构） ========= */
.section-dark-2 {
    position: relative;
    padding: 30px 20px;  /* 减少上下内边距，控制高度 */
    margin-bottom: 40px;
}

.two-col-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;  /* 左边框更宽，右边框更窄 */
    gap: 20px;  /* 减少间距，使两个框更紧凑 */
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;  /* 顶部对齐 */
}

@media screen and (max-width: 968px) {
    .two-col-2 {
        grid-template-columns: 1fr;
    }
}

/* 蓝色框：文字介绍（左侧） */
.card-left-2 {
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.3) 0%, rgba(0, 50, 150, 0.2) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 150, 255, 0.5);
    border-radius: 20px;
    padding: 80px 25px;  /* 增加上下内边距，加高一倍 */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 150, 255, 0.2);
    position: relative;
    overflow: visible;  /* 改为visible，确保文字不被裁剪 */
    height: fit-content;  /* 保持自然高度 */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-left-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.8), transparent);
    animation: borderShine 3s linear infinite;
}

.card-left-2 h2 {
    font-size: clamp(18px, 2vw, 24px);  /* 进一步缩小字体 */
    font-weight: 900;
    color: var(--text-neon);
    margin-bottom: 10px;  /* 减少下边距 */
    text-shadow: 0 0 15px var(--glow-neon);
}

.card-left-2 p {
    font-size: 11px;  /* 缩小字体 */
    line-height: 1.5;  /* 减少行高 */
    color: var(--text-secondary);
    word-wrap: break-word;  /* 确保长文字自动换行 */
    overflow-wrap: break-word;  /* 确保长文字自动换行 */
    margin-bottom: 0;  /* 移除下边距 */
}

.card-left-2 p span {
    display: block;
    margin-top: 6px;  /* 减少上边距 */
    white-space: normal;  /* 允许文字换行 */
    font-size: 11px;  /* 确保span内的文字也缩小 */
}

/* 黄色框：图标轮转（右侧，黄色框只是表示位置） */
.card-right-2 {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-neon);
    border-radius: 20px;
    padding: 20px 15px;  /* 减少内边距，控制高度 */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px var(--glow-neon);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;  /* 内容居中 */
    /* 高度将通过JavaScript动态设置，与左侧框一致 */
}

.card-right-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    animation: borderShine 3s linear infinite;
}

.card-right-2 h3 {
    font-size: clamp(18px, 2vw, 24px);  /* 减小字体大小 */
    font-weight: 900;
    color: var(--text-neon);
    margin-bottom: 15px;  /* 减少下边距 */
    text-align: center;
    text-shadow: 0 0 15px var(--glow-neon);
    width: 100%;
}

/* 向上滚动的卡片容器 */
.bonus-scroller {
    position: relative;
    overflow: hidden;
    flex: 1;  /* 填充剩余空间，与左侧高度一致 */
    width: 100%;
    min-height: 0;  /* 允许flex收缩 */
    border-radius: 10px;
}

.bonus-scroller-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: bonusScrollUp 15s linear infinite;  /* 向上滚动动画 */
    /* GPU加速优化 */
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes bonusScrollUp {
    0% { transform: translateZ(0) translateY(0); }
    100% { transform: translateZ(0) translateY(-50%); }  /* 滚动到一半（3个卡片的高度） */
}

.bonus-scroller:hover .bonus-scroller-inner {
    animation-play-state: paused;  /* 悬停时暂停 */
}

.bonus-card-item {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: none;  /* 移除边框，使用阴影代替 */
    border-radius: 20px;
    padding: 12px 15px;
    margin: 0;  /* 移除外边距，由gap控制间距 */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;  /* 图标靠左 */
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 0;  /* 允许缩小 */
    font-size: 12px;  /* 与scroller-item一致的字体大小 */
    color: var(--text-neon);
    text-shadow: 0 0 8px var(--glow-neon);
    font-weight: 600;
    flex-shrink: 0;  /* 防止卡片被压缩 */
    /* 基本边框和阴影，无向外羽化 */
    border: 1px solid rgba(0, 150, 255, 0.3);  /* 基本边框 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  /* 底部阴影 */
    overflow: hidden;  /* 隐藏溢出内容 */
    position: relative;
}

.bonus-card-item:hover {
    transform: scale(1.05);  /* 与scroller-item一致的特效 */
    border-color: rgba(0, 200, 255, 0.6);  /* 悬停时增强边框颜色 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);  /* 悬停时增强底部阴影 */
}

.bonus-card-item img {
    width: 80px;  /* 与scroller-item一致的图标尺寸 */
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;  /* 图标不缩小 */
    margin: 0;
    order: -1;  /* 确保图标在最左边 */
    background-color: rgba(0, 0, 0, 1);  /* 使用纯黑色背景完全遮盖白色边角 */
    /* 使用多层内阴影遮盖边角的白色斑点 */
    box-shadow: 
        inset 0 0 0 3px rgba(0, 0, 0, 1),     /* 最内层纯黑边框完全遮盖白色 */
        inset 0 0 15px rgba(0, 0, 0, 0.9),     /* 内阴影进一步遮盖 */
        inset 0 0 25px rgba(0, 0, 0, 0.7),     /* 更外层内阴影 */
        0 0 0 1px rgba(0, 150, 255, 0.3);     /* 外层发光边框 */
    box-sizing: border-box;
    position: relative;
    /* 使用滤镜去除白色并增强对比度 */
    filter: contrast(1.2) brightness(0.9) saturate(1.1);
    /* 裁剪图片边缘，确保圆角完美 */
    clip-path: circle(50%);
}

.bonus-card-item span {
    flex: 1;
    text-align: center;  /* 文字居中 */
    font-size: 12px;
    color: var(--text-neon);
    text-shadow: 0 0 8px var(--glow-neon);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;  /* 文字在剩余空间中居中 */
}

.card-left-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 213, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.card-left:hover .card-left-glow {
    opacity: 1;
}

.card-left-inner {
    position: relative;
    z-index: 1;
}

.card-left-inner h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--text-neon);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--glow-neon);
}

.card-left-inner p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    word-wrap: break-word;  /* 确保长文字自动换行 */
    overflow-wrap: break-word;  /* 确保长文字自动换行 */
    white-space: normal;  /* 允许文字换行 */
}

.play-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--secondary-neon) 100%);
    border: none;
    border-radius: 30px;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 255, 213, 0.6);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.play-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.play-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 35px var(--glow-strong);
}

.play-btn:hover::before {
    left: 100%;
}

.card-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;  /* 内容居中 */
    padding: 20px;  /* 减少内边距 */
}

.card-right h3 {
    font-size: clamp(18px, 2vw, 24px);  /* 减小字体大小 */
    font-weight: 900;
    color: var(--text-neon);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px var(--glow-neon);
    width: 100%;
}

.scroller {
    position: relative;
    overflow: hidden;
    height: 350px;  /* 缩小高度 */
    border-radius: 15px;
    width: 100%;
    max-width: 300px;  /* 限制最大宽度 */
}

.scroller-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: scrollUp 20s linear infinite;
    /* GPU加速优化 */
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes scrollUp {
    0% { transform: translateZ(0) translateY(0); }
    100% { transform: translateZ(0) translateY(-50%); }
}

.scroller:hover .scroller-inner {
    animation-play-state: paused;
}

.featured-wrap, .special-wrap, .vip-wrap {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

/* Special Features 和 VIP Selected 的容器样式 */
.special-slider, .vip-selected-container {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.vip-selected-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

.special-title {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.featured-row, .special-row, .vip-row, .special-slider, .vip-selected-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);  /* 固定5列横向排列 */
    gap: 15px;
    width: 100%;
}

/* 确保卡片横向排列，不换行 */
.featured-row > a, .special-row > a, .vip-row > a, 
.special-slider > a, .vip-selected-container > a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.featured-row > a > *, .special-row > a > *, .vip-row > a > *, 
.special-slider > a > *, .vip-selected-container > a > * {
    width: 100%;
}

/* 大屏幕：保持5列横向 */
@media screen and (min-width: 1200px) {
    .featured-row, .special-row, .vip-row, .special-slider, .vip-selected-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

/* 中等屏幕：4列横向 */
@media screen and (min-width: 900px) and (max-width: 1199px) {
    .featured-row, .special-row, .vip-row, .special-slider, .vip-selected-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

/* 小屏幕：3列横向 */
@media screen and (min-width: 600px) and (max-width: 899px) {
    .featured-row, .special-row, .vip-row, .special-slider, .vip-selected-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* 手机：2列横向 */
@media screen and (max-width: 599px) {
    .featured-row, .special-row, .vip-row, .special-slider, .vip-selected-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.list-paddingleft-2 {
    padding-left: 0;
}

.support-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.support-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.support-icon {
    font-size: 40px;
    filter: drop-shadow(0 0 10px var(--glow-neon));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.info-desc strong {
    color: var(--text-neon);
    font-weight: 700;
}

.info-desc br {
    margin-bottom: 10px;
}

/* ========= VIP Benefits Cards ========= */
.vip-benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.vip-benefit-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.vip-benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-neon);
}

.vip-benefit-card h3 {
    color: #ffd700;  /* 金色标题 */
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vip-benefit-card p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ========= Winners Today ========= */
.winners-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

.winners-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.winners-container {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon);
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.winners-scroller {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: winnersScroll 30s linear infinite;
    /* GPU加速优化 */
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.winners-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 213, 0.2);
}

.winners-username {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.winners-amount {
    color: #00ff00;  /* 绿色金额 */
    font-size: 16px;
    font-weight: 700;
}

@keyframes winnersScroll {
    0% { transform: translateZ(0) translateY(0); }
    100% { transform: translateZ(0) translateY(-50%); }
}

/* ========= Jackpot Meter ========= */
.jackpot-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

.jackpot-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.jackpot-container {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.jackpot-amount {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--glow-neon);
}

.jackpot-progress-bar {
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 213, 0.3);
    position: relative;
}

/* 前65%固定显示，使用渐变的基础部分 */
.jackpot-progress-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 65%;
    height: 100%;
    /* 使用页面一致的霓虹蓝绿色系渐变的前65%部分 */
    background: linear-gradient(90deg, 
        rgba(0, 255, 213, 0.8) 0%,      /* 霓虹青色开始 */
        rgba(0, 255, 213, 1) 30%,       /* 更亮的青色 */
        rgba(0, 212, 255, 1) 60%,      /* 亮蓝色 */
        rgba(0, 150, 255, 1) 100%       /* 深蓝色 */
    );
    border-radius: 15px 0 0 15px;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 255, 213, 0.5), inset 0 0 10px rgba(0, 255, 213, 0.3);
}

/* 65%之后的部分，根据实际进度动态显示 */
.jackpot-progress-fill {
    height: 100%;
    position: absolute;
    left: 65%;  /* 从65%位置开始 */
    top: 0;
    /* 使用页面一致的霓虹蓝绿色系渐变的后35%部分 */
    background: linear-gradient(90deg, 
        rgba(0, 150, 255, 1) 0%,       /* 深蓝色（接续前65%） */
        rgba(100, 0, 255, 1) 50%,      /* 蓝紫色 */
        rgba(180, 0, 255, 1) 100%      /* 紫色峰值 */
    );
    background-size: 100% 100%;
    border-radius: 0 15px 15px 0;
    transition: width 0.3s ease;
    width: 0%;  /* 初始宽度为0，根据实际进度动态变化 */
    box-shadow: 0 0 10px rgba(0, 255, 213, 0.5), inset 0 0 10px rgba(0, 255, 213, 0.3);
    z-index: 2;
    min-width: 0;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .vip-selected-section,
    .winners-section,
    .jackpot-section {
        padding: 0 20px;
        margin: 30px auto;
    }
    
    .vip-benefits-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .winners-container {
        max-width: 100%;
    }
    
    .jackpot-container {
        padding: 20px;
    }
}

/* EVER777 BONUSES & MISSIONS STYLES */
.ever777-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 顶部部分 */
.ever777-header {
    text-align: center;
    margin-bottom: 40px;
}

.ever777-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 5%, #FFD700 5%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 20px;
}

.ever777-category-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(0, 255, 213, 0.15) 0%, rgba(180, 0, 255, 0.15) 100%);
    border: 1px solid rgba(0, 255, 213, 0.4);
    border-radius: 30px;
    color: #00ffd5;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 213, 0.6);
    box-shadow: 
        0 0 20px rgba(0, 255, 213, 0.2),
        inset 0 0 20px rgba(0, 255, 213, 0.1);
    animation: categoryGlow 3s ease-in-out infinite;
}

@keyframes categoryGlow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(0, 255, 213, 0.2),
            inset 0 0 20px rgba(0, 255, 213, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(0, 255, 213, 0.4),
            inset 0 0 30px rgba(0, 255, 213, 0.2);
    }
}

.ever777-description {
    color: #ffffff;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ever777-action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ever777-play-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 30px;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-decoration: none;
    text-align: center;
}

.ever777-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}


.ever777-highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-neon);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 213, 0.3);
}

.highlight-card h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.highlight-value {
    color: #00ff88;
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    -webkit-text-stroke: 0.5px #000000;
    text-stroke: 0.5px #000000;
}

/* 任务表格 */
.ever777-missions {
    margin: 40px 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-neon);
    border-radius: 20px;
    padding: 30px;
    overflow-x: auto;
}

.missions-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
}

.missions-table thead {
    background: rgba(0, 255, 213, 0.1);
}

.missions-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    border-bottom: 2px solid rgba(0, 255, 213, 0.3);
}

.missions-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.mission-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-highest {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.4);
}

.status-hot {
    background: rgba(255, 0, 150, 0.2);
    color: #ff0096;
    border: 1px solid rgba(255, 0, 150, 0.4);
}

.status-limited {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

/* 联盟计划 */
.ever777-affiliate {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-neon);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.ever777-affiliate::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 213, 0.1) 0%, rgba(180, 0, 255, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.ever777-affiliate p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ever777-affiliate-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #00ff88 0%, #b400ff 100%);
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.ever777-affiliate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .ever777-highlight-cards {
        grid-template-columns: 1fr;
    }
    
    .missions-table {
        font-size: 12px;
    }
    
    .missions-table th,
    .missions-table td {
        padding: 10px;
    }
    
    .ever777-action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ever777-play-btn {
        width: 100%;
        max-width: 300px;
    }
}
