/* Soccer Star 游戏样式 */
.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-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

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

.game-controls button {
    background: linear-gradient(135deg, #1e5799 0%, #207cca 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;
}

/* 足球游戏特殊样式 */
.soccer-header {
    background: linear-gradient(135deg, #1e5799 0%, #207cca 100%);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.soccer-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;
}

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

    .game-frame iframe {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .game-frame iframe {
        height: 350px;
    }
} 