/* 游戏介绍页面专用样式 */

/* 游戏介绍区域 */
.game-introduce {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.game-introduce-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.game-introduce-header h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.game-introduce-content {
    padding: 40px;
}

/* 游戏操作按钮区域 */
.game-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.game-action-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 150px;
}

.game-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.game-action-btn:active {
    transform: translateY(-1px);
}

.game-action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 游戏信息区域 */
.game-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.game-title {
    margin-bottom: 30px;
}

.game-title h3 {
    font-size: 36px;
    color: #2c3e50;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.game-title h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 2px;
}

.game-description {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #3498db;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.game-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin: 0;
    text-align: justify;
    text-indent: 2em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .game-introduce-header {
        padding: 20px;
    }
    
    .game-introduce-header h2 {
        font-size: 24px;
    }
    
    .game-introduce-content {
        padding: 20px;
    }
    
    .game-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .game-action-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .game-title h3 {
        font-size: 28px;
    }
    
    .game-description {
        padding: 20px;
    }
    
    .game-description p {
        font-size: 14px;
        text-indent: 1em;
    }
}

@media (max-width: 480px) {
    .game-introduce-header {
        padding: 15px;
    }
    
    .game-introduce-header h2 {
        font-size: 20px;
    }
    
    .game-introduce-content {
        padding: 15px;
    }
    
    .game-title h3 {
        font-size: 24px;
    }
    
    .game-description {
        padding: 15px;
    }
    
    .game-description p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* 页面加载动画 */
.game-introduce {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-actions {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.game-info {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}
