/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/

/* 游戏预览容器样式 */
.game-preview-container {
    margin-bottom: 30px;
    text-align: center;
}

/* 游戏预览图片容器 */
.game-preview-image {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.game-preview-image:hover {
    transform: translateY(-5px);
}

/* 游戏缩略图 */
.game-thumbnail {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* 游戏覆盖层 */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.game-preview-image:hover .game-overlay {
    opacity: 1;
}

/* 播放按钮 */
.play-button {
    color: white;
    text-align: center;
    cursor: pointer;
}

.play-button i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
    color: #ff6b6b;
}

.play-button span {
    font-size: 16px;
    font-weight: bold;
    display: block;
}

/* 游戏操作按钮区域 */
.game-actions {
    margin-top: 20px;
}

.game-actions .btn {
    margin: 0 10px;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-play-game {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    font-weight: bold;
}

.btn-play-game:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
    color: white;
    text-decoration: none;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .game-actions .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
    
    .play-button i {
        font-size: 36px;
    }
    
    .play-button span {
        font-size: 14px;
    }
}