.page1 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}





/* 主标题 */
.main-title {
    position: absolute;
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    text-align: center;
    background: url(../img/p1_text.png) no-repeat center center;
    background-size: 100% 100%;
    width: 75%;
    height: 15vh;
}

.title-line1,
.title-line2 {
    font-size: 36px;
    font-weight: bold;
    color: #00e5ff;
    text-shadow: 
        0 0 10px rgba(0, 229, 255, 0.8),
        0 0 20px rgba(0, 229, 255, 0.6),
        0 0 30px rgba(0, 229, 255, 0.4);
    letter-spacing: 4px;
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

.title-line2 {
    font-size: 42px;
    margin-bottom: 0;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px rgba(0, 229, 255, 0.8),
            0 0 20px rgba(0, 229, 255, 0.6),
            0 0 30px rgba(0, 229, 255, 0.4);
    }
    to {
        text-shadow: 
            0 0 20px rgba(0, 229, 255, 1),
            0 0 30px rgba(0, 229, 255, 0.8),
            0 0 40px rgba(0, 229, 255, 0.6),
            0 0 50px rgba(0, 229, 255, 0.4);
    }
}

/* 浮动元宝 */
.yuanbao-container {
    position: absolute;
    top: 42vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 150;
    animation: float 3s ease-in-out infinite;
    z-index: -1;
    
}

.yuanbao-img {
    width: 30vw;
    height: 30vw;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.8));
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes sparkle {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 229, 255, 1)) drop-shadow(0 0 40px rgba(0, 229, 255, 0.6));
    }
}

/* 光束效果 */
.light-beams {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 400px;
    pointer-events: none;
    perspective: 500px;
}

.beam {
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, 
        rgba(0, 229, 255, 1) 0%,
        rgba(0, 229, 255, 0.9) 20%,
        rgba(0, 229, 255, 0.7) 50%,
        rgba(0, 229, 255, 0.4) 80%,
        rgba(0, 229, 255, 0.1) 100%);
    border-radius: 3px;
    box-shadow: 
        0 0 10px rgba(0, 229, 255, 0.8),
        0 0 20px rgba(0, 229, 255, 0.5);
    animation: beamPulse 2s ease-in-out infinite;
    transform-origin: top center;
}

.beam-1 {
    left: 15%;
    height: 50%;
    transform: rotate(-8deg);
    animation-delay: 0s;
}

.beam-2 {
    left: 30%;
    height: 70%;
    transform: rotate(-4deg);
    animation-delay: 0.3s;
}

.beam-3 {
    left: 50%;
    height: 90%;
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 0.6s;
}

.beam-4 {
    left: 70%;
    height: 60%;
    transform: rotate(6deg);
    animation-delay: 0.9s;
}

@keyframes beamPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* 底部数字地面图案 */
.digital-ground {
    position: fixed;
    bottom: 3.5vh;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0.8;
    overflow: hidden;
}

.ground-dot {
    width: 10px;
    height: 10px;
    background: #00e5ff;
    border-radius: 50%;
    box-shadow: 
        0 0 8px rgba(0, 229, 255, 1),
        0 0 16px rgba(0, 229, 255, 0.6);
    animation: dotPulse 1.5s ease-in-out infinite;
    position: relative;
}

.ground-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: innerGlow 1s ease-in-out infinite;
}

.ground-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.ground-dot:nth-child(3) {
    animation-delay: 1s;
}

.ground-line {
    position: absolute;
    width: 300px;
    height: 2px;
    background: linear-gradient(to right, 
        transparent 0%,
        rgba(0, 229, 255, 0.3) 30%,
        rgba(0, 229, 255, 0.8) 50%,
        rgba(0, 229, 255, 0.3) 70%,
        transparent 100%);
    animation: lineFlow 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

@keyframes innerGlow {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes lineFlow {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.2);
    }
}

/* 行动按钮 */
.action-btn {
    position: fixed;
    bottom: 20vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: 40%;
    height: 7vh;
    background: url(../img/p1_btn.png) no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .action-btn:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 215, 0, 0.5);
} */

.action-btn:active {
    transform: translateX(-50%) scale(0.98);
}

/* 付费信息 */
.payment-info {
    position: absolute;
    bottom: 15vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    font-size: 5vw;
    color: #fff;
    text-align: center;
    opacity: 0.8;
    letter-spacing: 1px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 10px; */
}

/* 响应式调整 */
@media (max-width: 480px) {

    .title-line1 {
        font-size: 28px;
    }
    
    .title-line2 {
        font-size: 32px;
    }
    
    .yuanbao-img {
        width: 100px;
        height: 100px;
    }
/*     
    .action-btn {
        width: 45%;
        height: 70px;
    } */
    
    .btn-text {
        font-size: 18px;
    }
}
