/* 主内容区 - 游戏介绍 */
.game-intro {
    padding: 40px 20px;
    background: rgba(0, 20, 60, 0.7);
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.5);
}

.game-intro h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00b4ff;
}

.intro-section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.intro-section img {
    width: 400px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 180, 255, 0.3);
}

.intro-section .text {
    flex: 1;
}

.intro-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #00b4ff;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #e1f5fe;
}

/* 动画效果 */
@keyframes glow {
    0% {
        text-shadow: 0 0 10px #00b4ff;
    }

    100% {
        text-shadow: 0 0 20px #00b4ff, 0 0 30px #0288d1;
    }
}