* {
    margin: 0;
    padding: 0;
}

.wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 960px;
    position: relative;
}

.bg {
    width: 100%;
    display: block;
}

.header {
    position: absolute;
    top: 1%;
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

.header img {
    width: 55%;
    display: block;
    cursor: pointer;
}

.header .game {
    display: flex;
    list-style: none;
    margin-top: 20px;
    font-size: 48px;
}

.header .game li {
    flex: 1;
    text-align: center;
    line-height: 2;
    color: #fff;
}

.section {
    position: relative;
}

.section .section-bg {
    width: 100%;
}

.section .btns {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.section .btn-sub {
    top: 69%;
}

.section .btns a {
    width: 46%;
    display: block;
    cursor: pointer;
}

.section .btns a img {
    width: 100%;
}

.activity img {
    width: 100%;
    border-radius: 5%;
}

.header>span {
    color: white;
    font-size: 7.5vw;
    margin-top: 1%;
    text-align: center;
    width: 100%;
}

.flex-down {
    position: absolute;
    top: 6%;
    display: flex;
    flex-direction: column;
    width: 95%;
    left: 50%;
    transform: translate(-50%);
}

/* 闪动文字动画效果 */
.text {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    animation: blink 1.5s infinite;
    /* background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(255, 165, 0, 0.1)); */
    border-radius: 5px;
}

@keyframes blink {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 鼠标悬停效果 */
.text:hover {
    animation: blink 0.8s infinite;
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}