body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: #FF9933; color: white; padding: 20px; text-align: center; position: relative; }
        .logo { font-size: 2.5em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 20px; margin: 15px 0; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu { display: none; position: absolute; top: 20px; right: 20px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            .mobile-menu { display: block; }
            .show-menu { display: flex; }
        }
        h1 { color: #138808; border-bottom: 3px solid #FF9933; padding-bottom: 10px; }
        h2 { color: #FF9933; margin-top: 30px; }
        h3 { color: #138808; }
        .download-btn, .login-btn { 
            display: inline-block; 
            padding: 12px 30px; 
            margin: 15px 0; 
            background: #138808; 
            color: white; 
            text-decoration: none; 
            border-radius: 5px; 
            font-weight: bold; 
        }
        .image-container { text-align: center; margin: 25px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        .game-stats { background: #f5f5f5; padding: 15px; border-radius: 8px; margin: 20px 0; }
        footer { background: #333; color: white; text-align: center; padding: 20px; margin-top: 40px; }
        .tag { display: inline-block; background: #FF9933; color: white; padding: 5px 10px; margin: 5px; border-radius: 20px; }
