/* Extreme Skiing 游戏样式 */
.game-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.game-frame {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.game-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.game-controls button {
    background: linear-gradient(135deg, #7f7fd5 0%, #86a8e7 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.game-controls button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.game-controls button i {
    margin-right: 8px;
}

.game-description {
    margin-top: 40px;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.game-description h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.game-description h3 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: #444;
}

.game-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.game-description ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.game-description li {
    margin-bottom: 10px;
    color: #555;
}

.game-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #f39c12;
}

.rating-count {
    color: #777;
    font-size: 14px;
}

/* 滑雪游戏特殊样式 */
.skiing-header {
    background: linear-gradient(135deg, #7f7fd5 0%, #86a8e7 50%, #91eae4 100%);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.skiing-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 雪景效果 */
.snow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 60%),
        url('assets/snow-texture.png');
    animation: snow-fall 20s linear infinite;
    opacity: 0.3;
}

@keyframes snow-fall {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 0 0, 100% 100%;
    }
}

/* 响应式样式 */
@media (max-width: 768px) {
    .game-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .game-controls button {
        width: 100%;
        max-width: 300px;
    }
    
    .skiing-features {
        grid-template-columns: 1fr;
    }
} 