/* Island Explorer 游戏特定样式 */
.game-page {
    background: linear-gradient(135deg, #87CEEB 0%, #3498DB 100%);
}

.game-header {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    position: relative;
    overflow: hidden;
}

.game-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('../../../assets/images/island-explorer/wave.svg') repeat-x;
    background-size: contain;
    opacity: 0.8;
}

.game-rating .stars {
    color: #FFD700;
}

.game-frame {
    background-color: #f5f7fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

#game-iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.game-controls button {
    background-color: #3498DB;
    transition: all 0.3s ease;
}

.game-controls button:hover {
    background-color: #2980B9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.game-description h2,
.game-description h3 {
    color: #3498DB;
    position: relative;
    padding-bottom: 10px;
}

.game-description h2::after,
.game-description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498DB, #2980B9);
    border-radius: 3px;
}

.feature-list li::before {
    content: '⚓';
    color: #3498DB;
}

.social-share .share-buttons a {
    background-color: #3498DB;
}

.social-share .share-buttons a:hover {
    background-color: #2980B9;
}

.comment-form button {
    background-color: #3498DB;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.play-btn {
    background-color: #3498DB;
}

.play-btn:hover {
    background-color: #2980B9;
}

@media (max-width: 768px) {
    #game-iframe {
        height: 400px;
    }
    
    .game-description h2 {
        font-size: 24px;
    }
    
    .game-description h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #game-iframe {
        height: 300px;
    }
    
    .game-controls {
        flex-direction: column;
    }
    
    .game-controls button {
        width: 100%;
        margin-bottom: 10px;
    }
} 